diff options
author | Wookey <wookey@wookware.org> | 2014-09-11 07:40:58 +0100 |
---|---|---|
committer | Wookey <wookey@wookware.org> | 2014-09-11 07:40:58 +0100 |
commit | af07161f05d5ae175ed8b70345df417ce4961344 (patch) | |
tree | 6fd38a16c49a3303b09c6d2e7a9e5ef994ecb08e /media/CodeMirror-0.62/sparqltest.html | |
parent | 5ff759db93e0aee948fa86716b7d1ca282df8ad7 (diff) | |
download | troggle-af07161f05d5ae175ed8b70345df417ce4961344.tar.gz troggle-af07161f05d5ae175ed8b70345df417ce4961344.tar.bz2 troggle-af07161f05d5ae175ed8b70345df417ce4961344.zip |
remove internal copies of jquery, jquiery-forms, jquery-ui+themes,
django-feincms and codemirror
Diffstat (limited to 'media/CodeMirror-0.62/sparqltest.html')
-rw-r--r-- | media/CodeMirror-0.62/sparqltest.html | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/media/CodeMirror-0.62/sparqltest.html b/media/CodeMirror-0.62/sparqltest.html deleted file mode 100644 index 5d65c93..0000000 --- a/media/CodeMirror-0.62/sparqltest.html +++ /dev/null @@ -1,41 +0,0 @@ -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <script src="js/codemirror.js" type="text/javascript"></script> - <title>CodeMirror: Sparql demonstration</title> - <link rel="stylesheet" type="text/css" href="css/docs.css"/> - </head> - <body style="padding: 20px;"> - -<p>Demonstration of <a href="index.html">CodeMirror</a>'s Sparql -highlighter.</p> - -<div class="border"> -<textarea id="code" cols="120" rows="30"> -PREFIX a: <http://www.w3.org/2000/10/annotation-ns#> -PREFIX dc: <http://purl.org/dc/elements/1.1/> -PREFIX foaf: <http://xmlns.com/foaf/0.1/> - -# Comment! - -SELECT ?given ?family -WHERE { - ?annot a:annotates <http://www.w3.org/TR/rdf-sparql-query/> . - ?annot dc:creator ?c . - OPTIONAL {?c foaf:given ?given ; - foaf:family ?family } . - FILTER isBlank(?c) -} -</textarea> -</div> - -<script type="text/javascript"> - var editor = CodeMirror.fromTextArea('code', { - height: "250px", - parserfile: "parsesparql.js", - stylesheet: "css/sparqlcolors.css", - path: "js/" - }); -</script> - - </body> -</html> |