Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/sparql
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: SPARQL mode</title>
[2] Fix | Delete
<meta charset="utf-8"/>
[3] Fix | Delete
<link rel=stylesheet href="../../doc/docs.css">
[4] Fix | Delete
[5] Fix | Delete
<link rel="stylesheet" href="../../lib/codemirror.css">
[6] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[7] Fix | Delete
<script src="../../addon/edit/matchbrackets.js"></script>
[8] Fix | Delete
<script src="sparql.js"></script>
[9] Fix | Delete
<style>.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
[10] Fix | Delete
<div id=nav>
[11] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
[12] Fix | Delete
[13] Fix | Delete
<ul>
[14] Fix | Delete
<li><a href="../../index.html">Home</a>
[15] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[16] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[17] Fix | Delete
</ul>
[18] Fix | Delete
<ul>
[19] Fix | Delete
<li><a href="../index.html">Language modes</a>
[20] Fix | Delete
<li><a class=active href="#">SPARQL</a>
[21] Fix | Delete
</ul>
[22] Fix | Delete
</div>
[23] Fix | Delete
[24] Fix | Delete
<article>
[25] Fix | Delete
<h2>SPARQL mode</h2>
[26] Fix | Delete
<form><textarea id="code" name="code">
[27] Fix | Delete
PREFIX a: &lt;http://www.w3.org/2000/10/annotation-ns#>
[28] Fix | Delete
PREFIX dc: &lt;http://purl.org/dc/elements/1.1/>
[29] Fix | Delete
PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/>
[30] Fix | Delete
PREFIX rdfs: &lt;http://www.w3.org/2000/01/rdf-schema#>
[31] Fix | Delete
[32] Fix | Delete
# Comment!
[33] Fix | Delete
[34] Fix | Delete
SELECT ?given ?family
[35] Fix | Delete
WHERE {
[36] Fix | Delete
{
[37] Fix | Delete
?annot a:annotates &lt;http://www.w3.org/TR/rdf-sparql-query/> .
[38] Fix | Delete
?annot dc:creator ?c .
[39] Fix | Delete
OPTIONAL {?c foaf:givenName ?given ;
[40] Fix | Delete
foaf:familyName ?family }
[41] Fix | Delete
} UNION {
[42] Fix | Delete
?c !foaf:knows/foaf:knows? ?thing.
[43] Fix | Delete
?thing rdfs
[44] Fix | Delete
} MINUS {
[45] Fix | Delete
?thing rdfs:label "剛柔流"@jp
[46] Fix | Delete
}
[47] Fix | Delete
FILTER isBlank(?c)
[48] Fix | Delete
}
[49] Fix | Delete
</textarea></form>
[50] Fix | Delete
<script>
[51] Fix | Delete
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
[52] Fix | Delete
mode: "application/sparql-query",
[53] Fix | Delete
matchBrackets: true
[54] Fix | Delete
});
[55] Fix | Delete
</script>
[56] Fix | Delete
[57] Fix | Delete
<p><strong>MIME types defined:</strong> <code>application/sparql-query</code>.</p>
[58] Fix | Delete
[59] Fix | Delete
</article>
[60] Fix | Delete
[61] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function