Repository: jena Updated Branches: refs/heads/master 4c19d1262 -> 636b67ec9
Add JSON-LD, N-Triples to "Content Type" dropdown This closes #20 Project: http://git-wip-us.apache.org/repos/asf/jena/repo Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/636b67ec Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/636b67ec Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/636b67ec Branch: refs/heads/master Commit: 636b67ec99d34f16e8e2acaeacc46553de49076b Parents: 4c19d12 Author: Andy Seaborne <[email protected]> Authored: Thu Feb 5 11:28:45 2015 +0000 Committer: Andy Seaborne <[email protected]> Committed: Thu Feb 5 11:28:45 2015 +0000 ---------------------------------------------------------------------- .../src/main/webapp/dataset.html | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/jena/blob/636b67ec/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html ---------------------------------------------------------------------- diff --git a/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html b/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html index 486789b..77d4835 100644 --- a/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html +++ b/jena-fuseki2/jena-fuseki-core/src/main/webapp/dataset.html @@ -16,9 +16,6 @@ <link href="css/codemirror.min.css" rel="stylesheet"> <link href="css/yasqe.min.css" rel="stylesheet"> <link href="css/yasr.min.css" rel="stylesheet"> - - - <!--[if lt IE 9]> <script src="js/lib/html5shiv.js"></script> @@ -116,9 +113,9 @@ <div class="col-md-12 well"> <div class="query-chrome" style="margin-top:0px; display:inline-block;vertical-align: top;width:40%;"> <div class="form-group"> - <label for="sparqlEndpoint">SPARQL endpoint</label> - <input type="text" class="form-control" id="sparqlEndpoint" /> - </div> + <label for="sparqlEndpoint">SPARQL endpoint</label> + <input type="text" class="form-control" id="sparqlEndpoint" /> + </div> </div> <div class="query-chrome" style="margin-top:0px; display:inline-block; vertical-align: top;width:28%"> <div class="form-group"> @@ -135,9 +132,11 @@ <div class="form-group"> <label for="graphContentType">Content Type (Graph)</label> <select id="graphContentType" class="form-control"> - <option value="text/turtle">Turtle</option> - <option value="application/rdf+xml">XML</option> - </select> + <option value="text/turtle">Turtle</option> + <option value="application/ld+json">JSON-LD</option> + <option value="application/n-triples">N-Triples</option> + <option value="application/rdf+xml">XML</option> + </select> </div> </div> </div> @@ -242,4 +241,4 @@ </div> <script data-main="js/app/main.dataset.js" src="js/lib/require.js"></script> </body> -</html> \ No newline at end of file +</html>
