This is an automated email from the ASF dual-hosted git repository. andy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/jena.git
commit 2fad0f749b0090b764079b6df4eadda3d0b67695 Author: Andy Seaborne <[email protected]> AuthorDate: Sat Apr 27 15:17:35 2024 +0100 Add RDF/XML to data validation choices --- .../sparqler/pages/data-validator.html | 32 ++++++++-------------- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/jena-fuseki2/jena-fuseki-main/sparqler/pages/data-validator.html b/jena-fuseki2/jena-fuseki-main/sparqler/pages/data-validator.html index e0d4084eaf..1d261f238e 100755 --- a/jena-fuseki2/jena-fuseki-main/sparqler/pages/data-validator.html +++ b/jena-fuseki2/jena-fuseki-main/sparqler/pages/data-validator.html @@ -25,35 +25,25 @@ <form action="$/validate/data" method="post" accept-charset="UTF-8" > <textarea name="data" cols="70" rows="30"> # Prefixes for Turtle or TriG - these can be edited or removed. -@base <http://example.org/base/> . -@prefix : <http://example.org/> . -@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -@prefix owl: <http://www.w3.org/2002/07/owl#> . - +BASE <http://example.org/base/> +PREFIX : <http://example.org/> +PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> +PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> +PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> +PREFIX owl: <http://www.w3.org/2002/07/owl#> +PREFIX sh: <http://www.w3.org/ns/shacl#> </textarea> <br/> Input syntax: +<p> <input type="radio" name="languageSyntax" value="Turtle" checked="checked"/>Turtle <input type="radio" name="languageSyntax" value="TriG"/>TriG <input type="radio" name="languageSyntax" value="N-Triples"/>N-Triples <input type="radio" name="languageSyntax" value="N-Quads"/>N-Quad - <br/> - <!-- -Output syntax: - <input type="checkbox" name="outputFormat" value="sparql" checked="checked"/>SPARQL - <input type="checkbox" name="outputFormat" value="algebra"/>SPARQL algebra - <input type="checkbox" name="outputFormat" value="quads"/>SPARQL algebra (quads) - <br/> - - Line numbers: - <input type="radio" name="linenumbers" value="true" checked="checked"/>Yes - <input type="radio" name="linenumbers" value="false"/>No - <br/> - --> - <input type="submit" value="Validate RDF Data" /> +<input type="radio" name="languageSyntax" value="RDF/XML"/>RDF-XML +</p> +<input type="submit" value="Validate RDF Data"/> </form> <hr/> Parsing provided by <a href="http://jena.apache.org/documentation/io/">Jena/RIOT</a>.
