├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── cargo-audit.yml │ ├── gh-pages.yml │ └── rust.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── README.md ├── book ├── .gitignore ├── book.toml └── src │ ├── SUMMARY.md │ ├── additional.css │ ├── crate_core.md │ ├── crate_io.md │ ├── crate_iri.md │ ├── crate_iri_specs.md │ ├── crate_memgraph.md │ ├── crate_names.md │ ├── crate_ontology.md │ ├── crate_query.md │ ├── crate_skos.md │ ├── crates.md │ ├── custom.js │ ├── examples.md │ ├── img │ ├── core-data-model.png │ ├── crates.png │ ├── figures.graffle │ ├── figures.png │ ├── primer-annotations.png │ ├── primer-bnode.png │ ├── primer-data-model.png │ ├── primer-datatype.png │ ├── primer-er-example.png │ ├── primer-linkage.png │ ├── primer-multiples.png │ ├── primer-nodes.png │ ├── primer-props.png │ ├── primer-reify-after.png │ ├── primer-reify-before.png │ ├── primer-seq.png │ ├── primer-spo.png │ ├── primer-statement.png │ ├── sw-cube-14.png │ └── sw-cube.png │ ├── intro_primer.md │ ├── introduction.md │ ├── overview.md │ ├── references.md │ ├── sparql.js │ └── turtle.js ├── pull_request_template.md ├── rdftk_cli ├── Cargo.toml ├── README.md ├── examples │ ├── example.nt │ └── example.ttl └── src │ ├── commands │ ├── draw.rs │ ├── mod.rs │ ├── namespaces.rs │ ├── queries.rs │ └── representations.rs │ └── main.rs ├── rdftk_core ├── Cargo.toml ├── README.md ├── doc │ └── rdf-graph.svg ├── src │ ├── error.rs │ ├── lib.rs │ ├── model │ │ ├── data_set.rs │ │ ├── features.rs │ │ ├── formulae.rs │ │ ├── graph.rs │ │ ├── literal.rs │ │ ├── mod.rs │ │ ├── resource.rs │ │ ├── statement.rs │ │ └── statement │ │ │ ├── bnode.rs │ │ │ ├── collection.rs │ │ │ ├── object.rs │ │ │ └── subject.rs │ └── simple │ │ └── indexed.rs └── tests │ ├── data_sets.rs │ ├── graphs.rs │ ├── literals.rs │ ├── prefix_mappings.rs │ ├── qnames.rs │ ├── resources.rs │ ├── skolemize.rs │ └── statements.rs ├── rdftk_io ├── Cargo.toml ├── README.md ├── src │ ├── common │ │ ├── common.pest │ │ ├── indenter.rs │ │ ├── mod.rs │ │ └── parser │ │ │ ├── mod.rs │ │ │ ├── n3.rs │ │ │ ├── nquads.rs │ │ │ ├── ntriples.rs │ │ │ ├── trig.rs │ │ │ └── turtle.rs │ ├── dot │ │ ├── mod.rs │ │ └── writer.rs │ ├── json │ │ ├── mod.rs │ │ ├── reader.rs │ │ ├── syntax.rs │ │ └── writer.rs │ ├── json_ld │ │ ├── mod.rs │ │ ├── reader.rs │ │ └── writer.rs │ ├── lib.rs │ ├── n3 │ │ ├── mod.rs │ │ ├── reader.rs │ │ └── writer.rs │ ├── nq │ │ ├── mod.rs │ │ ├── reader.rs │ │ └── writer.rs │ ├── nt │ │ ├── mod.rs │ │ ├── reader.rs │ │ └── writer.rs │ ├── trig │ │ ├── mod.rs │ │ ├── reader.rs │ │ └── writer.rs │ ├── turtle │ │ ├── mod.rs │ │ ├── reader.rs │ │ └── writer.rs │ └── xml │ │ ├── mod.rs │ │ ├── reader.rs │ │ ├── syntax.rs │ │ └── writer.rs └── tests │ ├── common │ └── mod.rs │ ├── logging.rs │ ├── read_json.rs │ ├── read_nq.rs │ ├── read_nt.rs │ ├── read_turtle.rs │ ├── read_xml.rs │ ├── w3c │ ├── LICENSE │ ├── README.md │ ├── nq │ │ ├── README │ │ ├── comment_following_triple.nq │ │ ├── langtagged_string.nq │ │ ├── lantag_with_subtag.nq │ │ ├── literal.nq │ │ ├── literal_all_controls.nq │ │ ├── literal_all_punctuation.nq │ │ ├── literal_ascii_boundaries.nq │ │ ├── literal_false.nq │ │ ├── literal_true.nq │ │ ├── literal_with_2_dquotes.nq │ │ ├── literal_with_2_squotes.nq │ │ ├── literal_with_BACKSPACE.nq │ │ ├── literal_with_CARRIAGE_RETURN.nq │ │ ├── literal_with_CHARACTER_TABULATION.nq │ │ ├── literal_with_FORM_FEED.nq │ │ ├── literal_with_LINE_FEED.nq │ │ ├── literal_with_REVERSE_SOLIDUS.nq │ │ ├── literal_with_REVERSE_SOLIDUS2.nq │ │ ├── literal_with_UTF8_boundaries.nq │ │ ├── literal_with_dquote.nq │ │ ├── literal_with_numeric_escape4.nq │ │ ├── literal_with_numeric_escape8.nq │ │ ├── literal_with_squote.nq │ │ ├── manifest.ttl │ │ ├── minimal_whitespace.nq │ │ ├── nq-syntax-bad-literal-01.nq │ │ ├── nq-syntax-bad-literal-02.nq │ │ ├── nq-syntax-bad-literal-03.nq │ │ ├── nq-syntax-bad-quint-01.nq │ │ ├── nq-syntax-bad-uri-01.nq │ │ ├── nq-syntax-bnode-01.nq │ │ ├── nq-syntax-bnode-02.nq │ │ ├── nq-syntax-bnode-03.nq │ │ ├── nq-syntax-bnode-04.nq │ │ ├── nq-syntax-bnode-05.nq │ │ ├── nq-syntax-bnode-06.nq │ │ ├── nq-syntax-uri-01.nq │ │ ├── nq-syntax-uri-02.nq │ │ ├── nq-syntax-uri-03.nq │ │ ├── nq-syntax-uri-04.nq │ │ ├── nq-syntax-uri-05.nq │ │ ├── nq-syntax-uri-06.nq │ │ ├── nt-syntax-bad-base-01.nq │ │ ├── nt-syntax-bad-esc-01.nq │ │ ├── nt-syntax-bad-esc-02.nq │ │ ├── nt-syntax-bad-esc-03.nq │ │ ├── nt-syntax-bad-lang-01.nq │ │ ├── nt-syntax-bad-num-01.nq │ │ ├── nt-syntax-bad-num-02.nq │ │ ├── nt-syntax-bad-num-03.nq │ │ ├── nt-syntax-bad-prefix-01.nq │ │ ├── nt-syntax-bad-string-01.nq │ │ ├── nt-syntax-bad-string-02.nq │ │ ├── nt-syntax-bad-string-03.nq │ │ ├── nt-syntax-bad-string-04.nq │ │ ├── nt-syntax-bad-string-05.nq │ │ ├── nt-syntax-bad-string-06.nq │ │ ├── nt-syntax-bad-string-07.nq │ │ ├── nt-syntax-bad-struct-01.nq │ │ ├── nt-syntax-bad-struct-02.nq │ │ ├── nt-syntax-bad-uri-01.nq │ │ ├── nt-syntax-bad-uri-02.nq │ │ ├── nt-syntax-bad-uri-03.nq │ │ ├── nt-syntax-bad-uri-04.nq │ │ ├── nt-syntax-bad-uri-05.nq │ │ ├── nt-syntax-bad-uri-06.nq │ │ ├── nt-syntax-bad-uri-07.nq │ │ ├── nt-syntax-bad-uri-08.nq │ │ ├── nt-syntax-bad-uri-09.nq │ │ ├── nt-syntax-bnode-01.nq │ │ ├── nt-syntax-bnode-02.nq │ │ ├── nt-syntax-bnode-03.nq │ │ ├── nt-syntax-datatypes-01.nq │ │ ├── nt-syntax-datatypes-02.nq │ │ ├── nt-syntax-file-01.nq │ │ ├── nt-syntax-file-02.nq │ │ ├── nt-syntax-file-03.nq │ │ ├── nt-syntax-str-esc-01.nq │ │ ├── nt-syntax-str-esc-02.nq │ │ ├── nt-syntax-str-esc-03.nq │ │ ├── nt-syntax-string-01.nq │ │ ├── nt-syntax-string-02.nq │ │ ├── nt-syntax-string-03.nq │ │ ├── nt-syntax-subm-01.nq │ │ ├── nt-syntax-uri-01.nq │ │ ├── nt-syntax-uri-02.nq │ │ ├── nt-syntax-uri-03.nq │ │ └── nt-syntax-uri-04.nq │ ├── nt │ │ ├── README │ │ ├── comment_following_triple.nt │ │ ├── langtagged_string.nt │ │ ├── lantag_with_subtag.nt │ │ ├── literal.nt │ │ ├── literal_all_controls.nt │ │ ├── literal_all_punctuation.nt │ │ ├── literal_ascii_boundaries.nt │ │ ├── literal_false.nt │ │ ├── literal_true.nt │ │ ├── literal_with_2_dquotes.nt │ │ ├── literal_with_2_squotes.nt │ │ ├── literal_with_BACKSPACE.nt │ │ ├── literal_with_CARRIAGE_RETURN.nt │ │ ├── literal_with_CHARACTER_TABULATION.nt │ │ ├── literal_with_FORM_FEED.nt │ │ ├── literal_with_LINE_FEED.nt │ │ ├── literal_with_REVERSE_SOLIDUS.nt │ │ ├── literal_with_REVERSE_SOLIDUS2.nt │ │ ├── literal_with_UTF8_boundaries.nt │ │ ├── literal_with_dquote.nt │ │ ├── literal_with_numeric_escape4.nt │ │ ├── literal_with_numeric_escape8.nt │ │ ├── literal_with_squote.nt │ │ ├── manifest.ttl │ │ ├── minimal_whitespace.nt │ │ ├── nt-syntax-bad-base-01.nt │ │ ├── nt-syntax-bad-esc-01.nt │ │ ├── nt-syntax-bad-esc-02.nt │ │ ├── nt-syntax-bad-esc-03.nt │ │ ├── nt-syntax-bad-lang-01.nt │ │ ├── nt-syntax-bad-num-01.nt │ │ ├── nt-syntax-bad-num-02.nt │ │ ├── nt-syntax-bad-num-03.nt │ │ ├── nt-syntax-bad-prefix-01.nt │ │ ├── nt-syntax-bad-string-01.nt │ │ ├── nt-syntax-bad-string-02.nt │ │ ├── nt-syntax-bad-string-03.nt │ │ ├── nt-syntax-bad-string-04.nt │ │ ├── nt-syntax-bad-string-05.nt │ │ ├── nt-syntax-bad-string-06.nt │ │ ├── nt-syntax-bad-string-07.nt │ │ ├── nt-syntax-bad-struct-01.nt │ │ ├── nt-syntax-bad-struct-02.nt │ │ ├── nt-syntax-bad-uri-01.nt │ │ ├── nt-syntax-bad-uri-02.nt │ │ ├── nt-syntax-bad-uri-03.nt │ │ ├── nt-syntax-bad-uri-04.nt │ │ ├── nt-syntax-bad-uri-05.nt │ │ ├── nt-syntax-bad-uri-06.nt │ │ ├── nt-syntax-bad-uri-07.nt │ │ ├── nt-syntax-bad-uri-08.nt │ │ ├── nt-syntax-bad-uri-09.nt │ │ ├── nt-syntax-bnode-01.nt │ │ ├── nt-syntax-bnode-02.nt │ │ ├── nt-syntax-bnode-03.nt │ │ ├── nt-syntax-datatypes-01.nt │ │ ├── nt-syntax-datatypes-02.nt │ │ ├── nt-syntax-file-01.nt │ │ ├── nt-syntax-file-02.nt │ │ ├── nt-syntax-file-03.nt │ │ ├── nt-syntax-str-esc-01.nt │ │ ├── nt-syntax-str-esc-02.nt │ │ ├── nt-syntax-str-esc-03.nt │ │ ├── nt-syntax-string-01.nt │ │ ├── nt-syntax-string-02.nt │ │ ├── nt-syntax-string-03.nt │ │ ├── nt-syntax-subm-01.nt │ │ ├── nt-syntax-uri-01.nt │ │ ├── nt-syntax-uri-02.nt │ │ ├── nt-syntax-uri-03.nt │ │ └── nt-syntax-uri-04.nt │ ├── trig │ │ ├── HYPHEN_MINUS_in_localName.nq │ │ ├── HYPHEN_MINUS_in_localName.trig │ │ ├── IRIREF_datatype.nq │ │ ├── IRIREF_datatype.trig │ │ ├── IRI_spo.nq │ │ ├── IRI_subject.trig │ │ ├── IRI_with_all_punctuation.nq │ │ ├── IRI_with_all_punctuation.trig │ │ ├── IRI_with_eight_digit_numeric_escape.trig │ │ ├── IRI_with_four_digit_numeric_escape.trig │ │ ├── LICENSE │ │ ├── LITERAL1.nq │ │ ├── LITERAL1.trig │ │ ├── LITERAL1_all_controls.nq │ │ ├── LITERAL1_all_controls.trig │ │ ├── LITERAL1_all_punctuation.nq │ │ ├── LITERAL1_all_punctuation.trig │ │ ├── LITERAL1_ascii_boundaries.nq │ │ ├── LITERAL1_ascii_boundaries.trig │ │ ├── LITERAL1_with_UTF8_boundaries.trig │ │ ├── LITERAL2.trig │ │ ├── LITERAL2_ascii_boundaries.nq │ │ ├── LITERAL2_ascii_boundaries.trig │ │ ├── LITERAL2_with_UTF8_boundaries.trig │ │ ├── LITERAL_LONG1.trig │ │ ├── LITERAL_LONG1_ascii_boundaries.nq │ │ ├── LITERAL_LONG1_ascii_boundaries.trig │ │ ├── LITERAL_LONG1_with_1_squote.nq │ │ ├── LITERAL_LONG1_with_1_squote.trig │ │ ├── LITERAL_LONG1_with_2_squotes.nq │ │ ├── LITERAL_LONG1_with_2_squotes.trig │ │ ├── LITERAL_LONG1_with_UTF8_boundaries.trig │ │ ├── LITERAL_LONG2.trig │ │ ├── LITERAL_LONG2_ascii_boundaries.nq │ │ ├── LITERAL_LONG2_ascii_boundaries.trig │ │ ├── LITERAL_LONG2_with_1_squote.nq │ │ ├── LITERAL_LONG2_with_1_squote.trig │ │ ├── LITERAL_LONG2_with_2_squotes.nq │ │ ├── LITERAL_LONG2_with_2_squotes.trig │ │ ├── LITERAL_LONG2_with_REVERSE_SOLIDUS.nq │ │ ├── LITERAL_LONG2_with_REVERSE_SOLIDUS.trig │ │ ├── LITERAL_LONG2_with_UTF8_boundaries.trig │ │ ├── LITERAL_with_UTF8_boundaries.nq │ │ ├── README │ │ ├── SPARQL_style_base.trig │ │ ├── SPARQL_style_prefix.trig │ │ ├── alternating_bnode_graphs.nq │ │ ├── alternating_bnode_graphs.trig │ │ ├── alternating_iri_graphs.nq │ │ ├── alternating_iri_graphs.trig │ │ ├── anonymous_blank_node_graph.trig │ │ ├── anonymous_blank_node_object.nq │ │ ├── anonymous_blank_node_object.trig │ │ ├── anonymous_blank_node_subject.nq │ │ ├── anonymous_blank_node_subject.trig │ │ ├── bareword_a_predicate.nq │ │ ├── bareword_a_predicate.trig │ │ ├── bareword_decimal.nq │ │ ├── bareword_decimal.trig │ │ ├── bareword_double.nq │ │ ├── bareword_double.trig │ │ ├── bareword_integer.trig │ │ ├── blankNodePropertyList_as_object.nq │ │ ├── blankNodePropertyList_as_object.trig │ │ ├── blankNodePropertyList_as_subject.nq │ │ ├── blankNodePropertyList_as_subject.trig │ │ ├── blankNodePropertyList_containing_collection.nq │ │ ├── blankNodePropertyList_containing_collection.trig │ │ ├── blankNodePropertyList_with_multiple_triples.nq │ │ ├── blankNodePropertyList_with_multiple_triples.trig │ │ ├── collection_object.nq │ │ ├── collection_object.trig │ │ ├── collection_subject.nq │ │ ├── collection_subject.trig │ │ ├── comment_following_PNAME_NS.nq │ │ ├── comment_following_PNAME_NS.trig │ │ ├── comment_following_localName.trig │ │ ├── default_namespace_IRI.trig │ │ ├── double_lower_case_e.nq │ │ ├── double_lower_case_e.trig │ │ ├── empty_collection.nq │ │ ├── empty_collection.trig │ │ ├── first.nq │ │ ├── first.trig │ │ ├── labeled_blank_node_graph.nq │ │ ├── labeled_blank_node_graph.trig │ │ ├── labeled_blank_node_object.nq │ │ ├── labeled_blank_node_object.trig │ │ ├── labeled_blank_node_subject.nq │ │ ├── labeled_blank_node_subject.trig │ │ ├── labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.trig │ │ ├── labeled_blank_node_with_leading_digit.trig │ │ ├── labeled_blank_node_with_leading_underscore.trig │ │ ├── labeled_blank_node_with_non_leading_extras.trig │ │ ├── langtagged_LONG.trig │ │ ├── langtagged_LONG_with_subtag.nq │ │ ├── langtagged_LONG_with_subtag.trig │ │ ├── langtagged_non_LONG.nq │ │ ├── langtagged_non_LONG.trig │ │ ├── lantag_with_subtag.nq │ │ ├── lantag_with_subtag.trig │ │ ├── last.nq │ │ ├── last.trig │ │ ├── literal_false.nq │ │ ├── literal_false.trig │ │ ├── literal_true.nq │ │ ├── literal_true.trig │ │ ├── literal_with_BACKSPACE.nq │ │ ├── literal_with_BACKSPACE.trig │ │ ├── literal_with_CARRIAGE_RETURN.nq │ │ ├── literal_with_CARRIAGE_RETURN.trig │ │ ├── literal_with_CHARACTER_TABULATION.nq │ │ ├── literal_with_CHARACTER_TABULATION.trig │ │ ├── literal_with_FORM_FEED.nq │ │ ├── literal_with_FORM_FEED.trig │ │ ├── literal_with_LINE_FEED.nq │ │ ├── literal_with_LINE_FEED.trig │ │ ├── literal_with_REVERSE_SOLIDUS.nq │ │ ├── literal_with_REVERSE_SOLIDUS.trig │ │ ├── literal_with_escaped_BACKSPACE.trig │ │ ├── literal_with_escaped_CARRIAGE_RETURN.trig │ │ ├── literal_with_escaped_CHARACTER_TABULATION.trig │ │ ├── literal_with_escaped_FORM_FEED.trig │ │ ├── literal_with_escaped_LINE_FEED.trig │ │ ├── literal_with_numeric_escape4.nq │ │ ├── literal_with_numeric_escape4.trig │ │ ├── literal_with_numeric_escape8.trig │ │ ├── localName_with_PN_CHARS_BASE_character_boundaries.nq │ │ ├── localName_with_PN_CHARS_BASE_character_boundaries.trig │ │ ├── localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.nq │ │ ├── localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.trig │ │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.nq │ │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.trig │ │ ├── localName_with_leading_digit.nq │ │ ├── localName_with_leading_digit.trig │ │ ├── localName_with_leading_underscore.nq │ │ ├── localName_with_leading_underscore.trig │ │ ├── localName_with_nfc_PN_CHARS_BASE_character_boundaries.nq │ │ ├── localName_with_nfc_PN_CHARS_BASE_character_boundaries.trig │ │ ├── localName_with_non_leading_extras.nq │ │ ├── localName_with_non_leading_extras.trig │ │ ├── localname_with_COLON.nq │ │ ├── localname_with_COLON.trig │ │ ├── manifest.ttl │ │ ├── negative_numeric.nq │ │ ├── negative_numeric.trig │ │ ├── nested_blankNodePropertyLists.nq │ │ ├── nested_blankNodePropertyLists.trig │ │ ├── nested_collection.nq │ │ ├── nested_collection.trig │ │ ├── number_sign_following_PNAME_NS.nq │ │ ├── number_sign_following_PNAME_NS.trig │ │ ├── number_sign_following_localName.nq │ │ ├── number_sign_following_localName.trig │ │ ├── numeric_with_leading_0.nq │ │ ├── numeric_with_leading_0.trig │ │ ├── objectList_with_two_objects.nq │ │ ├── objectList_with_two_objects.trig │ │ ├── old_style_base.trig │ │ ├── old_style_prefix.trig │ │ ├── percent_escaped_localName.nq │ │ ├── percent_escaped_localName.trig │ │ ├── positive_numeric.nq │ │ ├── positive_numeric.trig │ │ ├── predicateObjectList_with_two_objectLists.nq │ │ ├── predicateObjectList_with_two_objectLists.trig │ │ ├── prefix_only_IRI.trig │ │ ├── prefix_reassigned_and_used.nq │ │ ├── prefix_reassigned_and_used.trig │ │ ├── prefix_with_PN_CHARS_BASE_character_boundaries.trig │ │ ├── prefix_with_non_leading_extras.trig │ │ ├── prefixed_IRI_object.trig │ │ ├── prefixed_IRI_predicate.trig │ │ ├── prefixed_name_datatype.trig │ │ ├── repeated_semis_at_end.trig │ │ ├── repeated_semis_not_at_end.nq │ │ ├── repeated_semis_not_at_end.trig │ │ ├── reserved_escaped_localName.nq │ │ ├── reserved_escaped_localName.trig │ │ ├── sole_blankNodePropertyList.nq │ │ ├── sole_blankNodePropertyList.trig │ │ ├── trig-bnodeplist-graph-bad-01.trig │ │ ├── trig-collection-graph-bad-01.trig │ │ ├── trig-collection-graph-bad-02.trig │ │ ├── trig-eval-bad-01.trig │ │ ├── trig-eval-bad-02.trig │ │ ├── trig-eval-bad-03.trig │ │ ├── trig-eval-bad-04.trig │ │ ├── trig-eval-struct-01.nq │ │ ├── trig-eval-struct-01.trig │ │ ├── trig-eval-struct-02.nq │ │ ├── trig-eval-struct-02.trig │ │ ├── trig-graph-bad-01.trig │ │ ├── trig-graph-bad-02.trig │ │ ├── trig-graph-bad-03.trig │ │ ├── trig-graph-bad-04.trig │ │ ├── trig-graph-bad-05.trig │ │ ├── trig-graph-bad-06.trig │ │ ├── trig-graph-bad-07.trig │ │ ├── trig-graph-bad-08.trig │ │ ├── trig-graph-bad-09.trig │ │ ├── trig-graph-bad-10.trig │ │ ├── trig-graph-bad-11.trig │ │ ├── trig-kw-graph-01.trig │ │ ├── trig-kw-graph-02.trig │ │ ├── trig-kw-graph-03.trig │ │ ├── trig-kw-graph-04.trig │ │ ├── trig-kw-graph-05.trig │ │ ├── trig-kw-graph-06.trig │ │ ├── trig-kw-graph-07.trig │ │ ├── trig-kw-graph-08.trig │ │ ├── trig-kw-graph-09.trig │ │ ├── trig-kw-graph-10.trig │ │ ├── trig-subm-01.nq │ │ ├── trig-subm-01.trig │ │ ├── trig-subm-02.nq │ │ ├── trig-subm-02.trig │ │ ├── trig-subm-03.nq │ │ ├── trig-subm-03.trig │ │ ├── trig-subm-04.nq │ │ ├── trig-subm-04.trig │ │ ├── trig-subm-05.nq │ │ ├── trig-subm-05.trig │ │ ├── trig-subm-06.nq │ │ ├── trig-subm-06.trig │ │ ├── trig-subm-07.nq │ │ ├── trig-subm-07.trig │ │ ├── trig-subm-08.nq │ │ ├── trig-subm-08.trig │ │ ├── trig-subm-09.nq │ │ ├── trig-subm-09.trig │ │ ├── trig-subm-10.nq │ │ ├── trig-subm-10.trig │ │ ├── trig-subm-11.nq │ │ ├── trig-subm-11.trig │ │ ├── trig-subm-12.nq │ │ ├── trig-subm-12.trig │ │ ├── trig-subm-13.nq │ │ ├── trig-subm-13.trig │ │ ├── trig-subm-14.nq │ │ ├── trig-subm-14.trig │ │ ├── trig-subm-15.nq │ │ ├── trig-subm-15.trig │ │ ├── trig-subm-16.nq │ │ ├── trig-subm-16.trig │ │ ├── trig-subm-17.nq │ │ ├── trig-subm-17.trig │ │ ├── trig-subm-18.nq │ │ ├── trig-subm-18.trig │ │ ├── trig-subm-19.nq │ │ ├── trig-subm-19.trig │ │ ├── trig-subm-20.nq │ │ ├── trig-subm-20.trig │ │ ├── trig-subm-21.nq │ │ ├── trig-subm-21.trig │ │ ├── trig-subm-22.nq │ │ ├── trig-subm-22.trig │ │ ├── trig-subm-23.nq │ │ ├── trig-subm-23.trig │ │ ├── trig-subm-24.nq │ │ ├── trig-subm-24.trig │ │ ├── trig-subm-25.nq │ │ ├── trig-subm-25.trig │ │ ├── trig-subm-26.nq │ │ ├── trig-subm-26.trig │ │ ├── trig-subm-27.nq │ │ ├── trig-subm-27.trig │ │ ├── trig-syntax-bad-LITERAL2_with_langtag_and_datatype.trig │ │ ├── trig-syntax-bad-base-01.trig │ │ ├── trig-syntax-bad-base-02.trig │ │ ├── trig-syntax-bad-base-03.trig │ │ ├── trig-syntax-bad-base-04.trig │ │ ├── trig-syntax-bad-base-05.trig │ │ ├── trig-syntax-bad-blank-label-dot-end.trig │ │ ├── trig-syntax-bad-esc-01.trig │ │ ├── trig-syntax-bad-esc-02.trig │ │ ├── trig-syntax-bad-esc-03.trig │ │ ├── trig-syntax-bad-esc-04.trig │ │ ├── trig-syntax-bad-kw-01.trig │ │ ├── trig-syntax-bad-kw-02.trig │ │ ├── trig-syntax-bad-kw-03.trig │ │ ├── trig-syntax-bad-kw-04.trig │ │ ├── trig-syntax-bad-kw-05.trig │ │ ├── trig-syntax-bad-lang-01.trig │ │ ├── trig-syntax-bad-list-01.trig │ │ ├── trig-syntax-bad-list-02.trig │ │ ├── trig-syntax-bad-list-03.trig │ │ ├── trig-syntax-bad-list-04.trig │ │ ├── trig-syntax-bad-ln-dash-start.trig │ │ ├── trig-syntax-bad-ln-escape-start.trig │ │ ├── trig-syntax-bad-ln-escape.trig │ │ ├── trig-syntax-bad-missing-ns-dot-end.trig │ │ ├── trig-syntax-bad-missing-ns-dot-start.trig │ │ ├── trig-syntax-bad-n3-extras-01.trig │ │ ├── trig-syntax-bad-n3-extras-02.trig │ │ ├── trig-syntax-bad-n3-extras-03.trig │ │ ├── trig-syntax-bad-n3-extras-04.trig │ │ ├── trig-syntax-bad-n3-extras-05.trig │ │ ├── trig-syntax-bad-n3-extras-06.trig │ │ ├── trig-syntax-bad-n3-extras-07.trig │ │ ├── trig-syntax-bad-n3-extras-08.trig │ │ ├── trig-syntax-bad-n3-extras-09.trig │ │ ├── trig-syntax-bad-n3-extras-10.trig │ │ ├── trig-syntax-bad-n3-extras-11.trig │ │ ├── trig-syntax-bad-n3-extras-12.trig │ │ ├── trig-syntax-bad-n3-extras-13.trig │ │ ├── trig-syntax-bad-ns-dot-end.trig │ │ ├── trig-syntax-bad-ns-dot-start.trig │ │ ├── trig-syntax-bad-num-01.trig │ │ ├── trig-syntax-bad-num-02.trig │ │ ├── trig-syntax-bad-num-03.trig │ │ ├── trig-syntax-bad-num-04.trig │ │ ├── trig-syntax-bad-num-05.trig │ │ ├── trig-syntax-bad-number-dot-in-anon.trig │ │ ├── trig-syntax-bad-pname-01.trig │ │ ├── trig-syntax-bad-pname-02.trig │ │ ├── trig-syntax-bad-pname-03.trig │ │ ├── trig-syntax-bad-prefix-01.trig │ │ ├── trig-syntax-bad-prefix-02.trig │ │ ├── trig-syntax-bad-prefix-03.trig │ │ ├── trig-syntax-bad-prefix-04.trig │ │ ├── trig-syntax-bad-prefix-05.trig │ │ ├── trig-syntax-bad-prefix-06.trig │ │ ├── trig-syntax-bad-prefix-07.trig │ │ ├── trig-syntax-bad-string-01.trig │ │ ├── trig-syntax-bad-string-02.trig │ │ ├── trig-syntax-bad-string-03.trig │ │ ├── trig-syntax-bad-string-04.trig │ │ ├── trig-syntax-bad-string-05.trig │ │ ├── trig-syntax-bad-string-06.trig │ │ ├── trig-syntax-bad-string-07.trig │ │ ├── trig-syntax-bad-struct-02.trig │ │ ├── trig-syntax-bad-struct-03.trig │ │ ├── trig-syntax-bad-struct-04.trig │ │ ├── trig-syntax-bad-struct-05.trig │ │ ├── trig-syntax-bad-struct-06.trig │ │ ├── trig-syntax-bad-struct-07.trig │ │ ├── trig-syntax-bad-struct-09.trig │ │ ├── trig-syntax-bad-struct-10.trig │ │ ├── trig-syntax-bad-struct-12.trig │ │ ├── trig-syntax-bad-struct-13.trig │ │ ├── trig-syntax-bad-struct-14.trig │ │ ├── trig-syntax-bad-struct-15.trig │ │ ├── trig-syntax-bad-struct-16.trig │ │ ├── trig-syntax-bad-struct-17.trig │ │ ├── trig-syntax-bad-uri-01.trig │ │ ├── trig-syntax-bad-uri-02.trig │ │ ├── trig-syntax-bad-uri-03.trig │ │ ├── trig-syntax-bad-uri-04.trig │ │ ├── trig-syntax-bad-uri-05.trig │ │ ├── trig-syntax-base-01.trig │ │ ├── trig-syntax-base-02.trig │ │ ├── trig-syntax-base-03.trig │ │ ├── trig-syntax-base-04.trig │ │ ├── trig-syntax-blank-label.trig │ │ ├── trig-syntax-bnode-01.trig │ │ ├── trig-syntax-bnode-02.trig │ │ ├── trig-syntax-bnode-03.trig │ │ ├── trig-syntax-bnode-04.trig │ │ ├── trig-syntax-bnode-05.trig │ │ ├── trig-syntax-bnode-06.trig │ │ ├── trig-syntax-bnode-07.trig │ │ ├── trig-syntax-bnode-08.trig │ │ ├── trig-syntax-bnode-09.trig │ │ ├── trig-syntax-bnode-10.trig │ │ ├── trig-syntax-datatypes-01.trig │ │ ├── trig-syntax-datatypes-02.trig │ │ ├── trig-syntax-file-01.trig │ │ ├── trig-syntax-file-02.trig │ │ ├── trig-syntax-file-03.trig │ │ ├── trig-syntax-kw-01.trig │ │ ├── trig-syntax-kw-02.trig │ │ ├── trig-syntax-kw-03.trig │ │ ├── trig-syntax-lists-01.trig │ │ ├── trig-syntax-lists-02.trig │ │ ├── trig-syntax-lists-03.trig │ │ ├── trig-syntax-lists-04.trig │ │ ├── trig-syntax-lists-05.trig │ │ ├── trig-syntax-ln-colons.trig │ │ ├── trig-syntax-ln-dots.trig │ │ ├── trig-syntax-minimal-whitespace-01.trig │ │ ├── trig-syntax-ns-dots.trig │ │ ├── trig-syntax-number-01.trig │ │ ├── trig-syntax-number-02.trig │ │ ├── trig-syntax-number-03.trig │ │ ├── trig-syntax-number-04.trig │ │ ├── trig-syntax-number-05.trig │ │ ├── trig-syntax-number-06.trig │ │ ├── trig-syntax-number-07.trig │ │ ├── trig-syntax-number-08.trig │ │ ├── trig-syntax-number-09.trig │ │ ├── trig-syntax-number-10.trig │ │ ├── trig-syntax-number-11.trig │ │ ├── trig-syntax-pname-esc-01.trig │ │ ├── trig-syntax-pname-esc-02.trig │ │ ├── trig-syntax-pname-esc-03.trig │ │ ├── trig-syntax-prefix-01.trig │ │ ├── trig-syntax-prefix-02.trig │ │ ├── trig-syntax-prefix-03.trig │ │ ├── trig-syntax-prefix-04.trig │ │ ├── trig-syntax-prefix-05.trig │ │ ├── trig-syntax-prefix-06.trig │ │ ├── trig-syntax-prefix-07.trig │ │ ├── trig-syntax-prefix-08.trig │ │ ├── trig-syntax-prefix-09.trig │ │ ├── trig-syntax-str-esc-01.trig │ │ ├── trig-syntax-str-esc-02.trig │ │ ├── trig-syntax-str-esc-03.trig │ │ ├── trig-syntax-string-01.trig │ │ ├── trig-syntax-string-02.trig │ │ ├── trig-syntax-string-03.trig │ │ ├── trig-syntax-string-04.trig │ │ ├── trig-syntax-string-05.trig │ │ ├── trig-syntax-string-06.trig │ │ ├── trig-syntax-string-07.trig │ │ ├── trig-syntax-string-08.trig │ │ ├── trig-syntax-string-09.trig │ │ ├── trig-syntax-string-10.trig │ │ ├── trig-syntax-string-11.trig │ │ ├── trig-syntax-struct-01.trig │ │ ├── trig-syntax-struct-02.trig │ │ ├── trig-syntax-struct-03.trig │ │ ├── trig-syntax-struct-04.trig │ │ ├── trig-syntax-struct-05.trig │ │ ├── trig-syntax-struct-06.trig │ │ ├── trig-syntax-struct-07.trig │ │ ├── trig-syntax-uri-01.trig │ │ ├── trig-syntax-uri-02.trig │ │ ├── trig-syntax-uri-03.trig │ │ ├── trig-syntax-uri-04.trig │ │ ├── trig-turtle-01.trig │ │ ├── trig-turtle-02.trig │ │ ├── trig-turtle-03.trig │ │ ├── trig-turtle-04.trig │ │ ├── trig-turtle-05.trig │ │ ├── trig-turtle-06.trig │ │ ├── trig-turtle-bad-01.trig │ │ ├── trig-turtle-bad-02.trig │ │ ├── two_LITERAL_LONG2s.nq │ │ ├── two_LITERAL_LONG2s.trig │ │ ├── underscore_in_localName.nq │ │ └── underscore_in_localName.trig │ ├── turtle │ │ ├── HYPHEN_MINUS_in_localName.nt │ │ ├── HYPHEN_MINUS_in_localName.ttl │ │ ├── IRIREF_datatype.nt │ │ ├── IRIREF_datatype.ttl │ │ ├── IRI_spo.nt │ │ ├── IRI_subject.ttl │ │ ├── IRI_with_all_punctuation.nt │ │ ├── IRI_with_all_punctuation.ttl │ │ ├── IRI_with_eight_digit_numeric_escape.ttl │ │ ├── IRI_with_four_digit_numeric_escape.ttl │ │ ├── LICENSE │ │ ├── LITERAL1.nt │ │ ├── LITERAL1.ttl │ │ ├── LITERAL1_all_controls.nt │ │ ├── LITERAL1_all_controls.ttl │ │ ├── LITERAL1_all_punctuation.nt │ │ ├── LITERAL1_all_punctuation.ttl │ │ ├── LITERAL1_ascii_boundaries.nt │ │ ├── LITERAL1_ascii_boundaries.ttl │ │ ├── LITERAL1_with_UTF8_boundaries.ttl │ │ ├── LITERAL2.ttl │ │ ├── LITERAL2_ascii_boundaries.nt │ │ ├── LITERAL2_ascii_boundaries.ttl │ │ ├── LITERAL2_with_UTF8_boundaries.ttl │ │ ├── LITERAL_LONG1.ttl │ │ ├── LITERAL_LONG1_ascii_boundaries.nt │ │ ├── LITERAL_LONG1_ascii_boundaries.ttl │ │ ├── LITERAL_LONG1_with_1_squote.nt │ │ ├── LITERAL_LONG1_with_1_squote.ttl │ │ ├── LITERAL_LONG1_with_2_squotes.nt │ │ ├── LITERAL_LONG1_with_2_squotes.ttl │ │ ├── LITERAL_LONG1_with_UTF8_boundaries.ttl │ │ ├── LITERAL_LONG2.ttl │ │ ├── LITERAL_LONG2_ascii_boundaries.nt │ │ ├── LITERAL_LONG2_ascii_boundaries.ttl │ │ ├── LITERAL_LONG2_with_1_squote.nt │ │ ├── LITERAL_LONG2_with_1_squote.ttl │ │ ├── LITERAL_LONG2_with_2_squotes.nt │ │ ├── LITERAL_LONG2_with_2_squotes.ttl │ │ ├── LITERAL_LONG2_with_REVERSE_SOLIDUS.nt │ │ ├── LITERAL_LONG2_with_REVERSE_SOLIDUS.ttl │ │ ├── LITERAL_LONG2_with_UTF8_boundaries.ttl │ │ ├── LITERAL_with_UTF8_boundaries.nt │ │ ├── README │ │ ├── SPARQL_style_base.ttl │ │ ├── SPARQL_style_prefix.ttl │ │ ├── anonymous_blank_node_object.ttl │ │ ├── anonymous_blank_node_subject.ttl │ │ ├── bareword_a_predicate.nt │ │ ├── bareword_a_predicate.ttl │ │ ├── bareword_decimal.nt │ │ ├── bareword_decimal.ttl │ │ ├── bareword_double.nt │ │ ├── bareword_double.ttl │ │ ├── bareword_integer.ttl │ │ ├── blankNodePropertyList_as_object.nt │ │ ├── blankNodePropertyList_as_object.ttl │ │ ├── blankNodePropertyList_as_subject.nt │ │ ├── blankNodePropertyList_as_subject.ttl │ │ ├── blankNodePropertyList_containing_collection.nt │ │ ├── blankNodePropertyList_containing_collection.ttl │ │ ├── blankNodePropertyList_with_multiple_triples.nt │ │ ├── blankNodePropertyList_with_multiple_triples.ttl │ │ ├── collection_object.nt │ │ ├── collection_object.ttl │ │ ├── collection_subject.nt │ │ ├── collection_subject.ttl │ │ ├── comment_following_PNAME_NS.nt │ │ ├── comment_following_PNAME_NS.ttl │ │ ├── comment_following_localName.ttl │ │ ├── default_namespace_IRI.ttl │ │ ├── double_lower_case_e.nt │ │ ├── double_lower_case_e.ttl │ │ ├── empty_collection.nt │ │ ├── empty_collection.ttl │ │ ├── first.nt │ │ ├── first.ttl │ │ ├── labeled_blank_node_object.nt │ │ ├── labeled_blank_node_object.ttl │ │ ├── labeled_blank_node_subject.nt │ │ ├── labeled_blank_node_subject.ttl │ │ ├── labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.ttl │ │ ├── labeled_blank_node_with_leading_digit.ttl │ │ ├── labeled_blank_node_with_leading_underscore.ttl │ │ ├── labeled_blank_node_with_non_leading_extras.ttl │ │ ├── langtagged_LONG.ttl │ │ ├── langtagged_LONG_with_subtag.nt │ │ ├── langtagged_LONG_with_subtag.ttl │ │ ├── langtagged_non_LONG.nt │ │ ├── langtagged_non_LONG.ttl │ │ ├── lantag_with_subtag.nt │ │ ├── lantag_with_subtag.ttl │ │ ├── last.nt │ │ ├── last.ttl │ │ ├── literal_false.nt │ │ ├── literal_false.ttl │ │ ├── literal_true.nt │ │ ├── literal_true.ttl │ │ ├── literal_with_BACKSPACE.nt │ │ ├── literal_with_BACKSPACE.ttl │ │ ├── literal_with_CARRIAGE_RETURN.nt │ │ ├── literal_with_CARRIAGE_RETURN.ttl │ │ ├── literal_with_CHARACTER_TABULATION.nt │ │ ├── literal_with_CHARACTER_TABULATION.ttl │ │ ├── literal_with_FORM_FEED.nt │ │ ├── literal_with_FORM_FEED.ttl │ │ ├── literal_with_LINE_FEED.nt │ │ ├── literal_with_LINE_FEED.ttl │ │ ├── literal_with_REVERSE_SOLIDUS.nt │ │ ├── literal_with_REVERSE_SOLIDUS.ttl │ │ ├── literal_with_escaped_BACKSPACE.ttl │ │ ├── literal_with_escaped_CARRIAGE_RETURN.ttl │ │ ├── literal_with_escaped_CHARACTER_TABULATION.ttl │ │ ├── literal_with_escaped_FORM_FEED.ttl │ │ ├── literal_with_escaped_LINE_FEED.ttl │ │ ├── literal_with_numeric_escape4.nt │ │ ├── literal_with_numeric_escape4.ttl │ │ ├── literal_with_numeric_escape8.ttl │ │ ├── localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.nt │ │ ├── localName_with_assigned_nfc_PN_CHARS_BASE_character_boundaries.ttl │ │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.nt │ │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_character_boundaries.ttl │ │ ├── localName_with_leading_digit.nt │ │ ├── localName_with_leading_digit.ttl │ │ ├── localName_with_leading_underscore.nt │ │ ├── localName_with_leading_underscore.ttl │ │ ├── localName_with_nfc_PN_CHARS_BASE_character_boundaries.nt │ │ ├── localName_with_nfc_PN_CHARS_BASE_character_boundaries.ttl │ │ ├── localName_with_non_leading_extras.nt │ │ ├── localName_with_non_leading_extras.ttl │ │ ├── localname_with_COLON.nt │ │ ├── localname_with_COLON.ttl │ │ ├── manifest.ttl │ │ ├── negative_numeric.nt │ │ ├── negative_numeric.ttl │ │ ├── nested_blankNodePropertyLists.nt │ │ ├── nested_blankNodePropertyLists.ttl │ │ ├── nested_collection.nt │ │ ├── nested_collection.ttl │ │ ├── number_sign_following_PNAME_NS.nt │ │ ├── number_sign_following_PNAME_NS.ttl │ │ ├── number_sign_following_localName.nt │ │ ├── number_sign_following_localName.ttl │ │ ├── numeric_with_leading_0.nt │ │ ├── numeric_with_leading_0.ttl │ │ ├── objectList_with_two_objects.nt │ │ ├── objectList_with_two_objects.ttl │ │ ├── old_style_base.ttl │ │ ├── old_style_prefix.ttl │ │ ├── percent_escaped_localName.nt │ │ ├── percent_escaped_localName.ttl │ │ ├── positive_numeric.nt │ │ ├── positive_numeric.ttl │ │ ├── predicateObjectList_with_two_objectLists.nt │ │ ├── predicateObjectList_with_two_objectLists.ttl │ │ ├── prefix_only_IRI.ttl │ │ ├── prefix_reassigned_and_used.nt │ │ ├── prefix_reassigned_and_used.ttl │ │ ├── prefix_with_PN_CHARS_BASE_character_boundaries.ttl │ │ ├── prefix_with_non_leading_extras.ttl │ │ ├── prefixed_IRI_object.ttl │ │ ├── prefixed_IRI_predicate.ttl │ │ ├── prefixed_name_datatype.ttl │ │ ├── repeated_semis_at_end.ttl │ │ ├── repeated_semis_not_at_end.nt │ │ ├── repeated_semis_not_at_end.ttl │ │ ├── reserved_escaped_localName.nt │ │ ├── reserved_escaped_localName.ttl │ │ ├── sole_blankNodePropertyList.ttl │ │ ├── turtle-eval-bad-01.ttl │ │ ├── turtle-eval-bad-02.ttl │ │ ├── turtle-eval-bad-03.ttl │ │ ├── turtle-eval-bad-04.ttl │ │ ├── turtle-eval-struct-01.nt │ │ ├── turtle-eval-struct-01.ttl │ │ ├── turtle-eval-struct-02.nt │ │ ├── turtle-eval-struct-02.ttl │ │ ├── turtle-subm-01.nt │ │ ├── turtle-subm-01.ttl │ │ ├── turtle-subm-02.nt │ │ ├── turtle-subm-02.ttl │ │ ├── turtle-subm-03.nt │ │ ├── turtle-subm-03.ttl │ │ ├── turtle-subm-04.nt │ │ ├── turtle-subm-04.ttl │ │ ├── turtle-subm-05.nt │ │ ├── turtle-subm-05.ttl │ │ ├── turtle-subm-06.nt │ │ ├── turtle-subm-06.ttl │ │ ├── turtle-subm-07.nt │ │ ├── turtle-subm-07.ttl │ │ ├── turtle-subm-08.nt │ │ ├── turtle-subm-08.ttl │ │ ├── turtle-subm-09.nt │ │ ├── turtle-subm-09.ttl │ │ ├── turtle-subm-10.nt │ │ ├── turtle-subm-10.ttl │ │ ├── turtle-subm-11.nt │ │ ├── turtle-subm-11.ttl │ │ ├── turtle-subm-12.nt │ │ ├── turtle-subm-12.ttl │ │ ├── turtle-subm-13.nt │ │ ├── turtle-subm-13.ttl │ │ ├── turtle-subm-14.nt │ │ ├── turtle-subm-14.ttl │ │ ├── turtle-subm-15.nt │ │ ├── turtle-subm-15.ttl │ │ ├── turtle-subm-16.nt │ │ ├── turtle-subm-16.ttl │ │ ├── turtle-subm-17.nt │ │ ├── turtle-subm-17.ttl │ │ ├── turtle-subm-18.nt │ │ ├── turtle-subm-18.ttl │ │ ├── turtle-subm-19.nt │ │ ├── turtle-subm-19.ttl │ │ ├── turtle-subm-20.nt │ │ ├── turtle-subm-20.ttl │ │ ├── turtle-subm-21.nt │ │ ├── turtle-subm-21.ttl │ │ ├── turtle-subm-22.nt │ │ ├── turtle-subm-22.ttl │ │ ├── turtle-subm-23.nt │ │ ├── turtle-subm-23.ttl │ │ ├── turtle-subm-24.nt │ │ ├── turtle-subm-24.ttl │ │ ├── turtle-subm-25.nt │ │ ├── turtle-subm-25.ttl │ │ ├── turtle-subm-26.nt │ │ ├── turtle-subm-26.ttl │ │ ├── turtle-subm-27.nt │ │ ├── turtle-subm-27.ttl │ │ ├── turtle-syntax-bad-LITERAL2_with_langtag_and_datatype.ttl │ │ ├── turtle-syntax-bad-base-01.ttl │ │ ├── turtle-syntax-bad-base-02.ttl │ │ ├── turtle-syntax-bad-base-03.ttl │ │ ├── turtle-syntax-bad-blank-label-dot-end.ttl │ │ ├── turtle-syntax-bad-esc-01.ttl │ │ ├── turtle-syntax-bad-esc-02.ttl │ │ ├── turtle-syntax-bad-esc-03.ttl │ │ ├── turtle-syntax-bad-esc-04.ttl │ │ ├── turtle-syntax-bad-kw-01.ttl │ │ ├── turtle-syntax-bad-kw-02.ttl │ │ ├── turtle-syntax-bad-kw-03.ttl │ │ ├── turtle-syntax-bad-kw-04.ttl │ │ ├── turtle-syntax-bad-kw-05.ttl │ │ ├── turtle-syntax-bad-lang-01.ttl │ │ ├── turtle-syntax-bad-ln-dash-start.ttl │ │ ├── turtle-syntax-bad-ln-escape-start.ttl │ │ ├── turtle-syntax-bad-ln-escape.ttl │ │ ├── turtle-syntax-bad-missing-ns-dot-end.ttl │ │ ├── turtle-syntax-bad-missing-ns-dot-start.ttl │ │ ├── turtle-syntax-bad-n3-extras-01.ttl │ │ ├── turtle-syntax-bad-n3-extras-02.ttl │ │ ├── turtle-syntax-bad-n3-extras-03.ttl │ │ ├── turtle-syntax-bad-n3-extras-04.ttl │ │ ├── turtle-syntax-bad-n3-extras-05.ttl │ │ ├── turtle-syntax-bad-n3-extras-06.ttl │ │ ├── turtle-syntax-bad-n3-extras-07.ttl │ │ ├── turtle-syntax-bad-n3-extras-08.ttl │ │ ├── turtle-syntax-bad-n3-extras-09.ttl │ │ ├── turtle-syntax-bad-n3-extras-10.ttl │ │ ├── turtle-syntax-bad-n3-extras-11.ttl │ │ ├── turtle-syntax-bad-n3-extras-12.ttl │ │ ├── turtle-syntax-bad-n3-extras-13.ttl │ │ ├── turtle-syntax-bad-ns-dot-end.ttl │ │ ├── turtle-syntax-bad-ns-dot-start.ttl │ │ ├── turtle-syntax-bad-num-01.ttl │ │ ├── turtle-syntax-bad-num-02.ttl │ │ ├── turtle-syntax-bad-num-03.ttl │ │ ├── turtle-syntax-bad-num-04.ttl │ │ ├── turtle-syntax-bad-num-05.ttl │ │ ├── turtle-syntax-bad-number-dot-in-anon.ttl │ │ ├── turtle-syntax-bad-pname-01.ttl │ │ ├── turtle-syntax-bad-pname-02.ttl │ │ ├── turtle-syntax-bad-pname-03.ttl │ │ ├── turtle-syntax-bad-prefix-01.ttl │ │ ├── turtle-syntax-bad-prefix-02.ttl │ │ ├── turtle-syntax-bad-prefix-03.ttl │ │ ├── turtle-syntax-bad-prefix-04.ttl │ │ ├── turtle-syntax-bad-prefix-05.ttl │ │ ├── turtle-syntax-bad-string-01.ttl │ │ ├── turtle-syntax-bad-string-02.ttl │ │ ├── turtle-syntax-bad-string-03.ttl │ │ ├── turtle-syntax-bad-string-04.ttl │ │ ├── turtle-syntax-bad-string-05.ttl │ │ ├── turtle-syntax-bad-string-06.ttl │ │ ├── turtle-syntax-bad-string-07.ttl │ │ ├── turtle-syntax-bad-struct-01.ttl │ │ ├── turtle-syntax-bad-struct-02.ttl │ │ ├── turtle-syntax-bad-struct-03.ttl │ │ ├── turtle-syntax-bad-struct-04.ttl │ │ ├── turtle-syntax-bad-struct-05.ttl │ │ ├── turtle-syntax-bad-struct-06.ttl │ │ ├── turtle-syntax-bad-struct-07.ttl │ │ ├── turtle-syntax-bad-struct-08.ttl │ │ ├── turtle-syntax-bad-struct-09.ttl │ │ ├── turtle-syntax-bad-struct-10.ttl │ │ ├── turtle-syntax-bad-struct-11.ttl │ │ ├── turtle-syntax-bad-struct-12.ttl │ │ ├── turtle-syntax-bad-struct-13.ttl │ │ ├── turtle-syntax-bad-struct-14.ttl │ │ ├── turtle-syntax-bad-struct-15.ttl │ │ ├── turtle-syntax-bad-struct-16.ttl │ │ ├── turtle-syntax-bad-struct-17.ttl │ │ ├── turtle-syntax-bad-uri-01.ttl │ │ ├── turtle-syntax-bad-uri-02.ttl │ │ ├── turtle-syntax-bad-uri-03.ttl │ │ ├── turtle-syntax-bad-uri-04.ttl │ │ ├── turtle-syntax-bad-uri-05.ttl │ │ ├── turtle-syntax-base-01.ttl │ │ ├── turtle-syntax-base-02.ttl │ │ ├── turtle-syntax-base-03.ttl │ │ ├── turtle-syntax-base-04.ttl │ │ ├── turtle-syntax-blank-label.ttl │ │ ├── turtle-syntax-bnode-01.ttl │ │ ├── turtle-syntax-bnode-02.ttl │ │ ├── turtle-syntax-bnode-03.ttl │ │ ├── turtle-syntax-bnode-04.ttl │ │ ├── turtle-syntax-bnode-05.ttl │ │ ├── turtle-syntax-bnode-06.ttl │ │ ├── turtle-syntax-bnode-07.ttl │ │ ├── turtle-syntax-bnode-08.ttl │ │ ├── turtle-syntax-bnode-09.ttl │ │ ├── turtle-syntax-bnode-10.ttl │ │ ├── turtle-syntax-datatypes-01.ttl │ │ ├── turtle-syntax-datatypes-02.ttl │ │ ├── turtle-syntax-file-01.ttl │ │ ├── turtle-syntax-file-02.ttl │ │ ├── turtle-syntax-file-03.ttl │ │ ├── turtle-syntax-kw-01.ttl │ │ ├── turtle-syntax-kw-02.ttl │ │ ├── turtle-syntax-kw-03.ttl │ │ ├── turtle-syntax-lists-01.ttl │ │ ├── turtle-syntax-lists-02.ttl │ │ ├── turtle-syntax-lists-03.ttl │ │ ├── turtle-syntax-lists-04.ttl │ │ ├── turtle-syntax-lists-05.ttl │ │ ├── turtle-syntax-ln-colons.ttl │ │ ├── turtle-syntax-ln-dots.ttl │ │ ├── turtle-syntax-ns-dots.ttl │ │ ├── turtle-syntax-number-01.ttl │ │ ├── turtle-syntax-number-02.ttl │ │ ├── turtle-syntax-number-03.ttl │ │ ├── turtle-syntax-number-04.ttl │ │ ├── turtle-syntax-number-05.ttl │ │ ├── turtle-syntax-number-06.ttl │ │ ├── turtle-syntax-number-07.ttl │ │ ├── turtle-syntax-number-08.ttl │ │ ├── turtle-syntax-number-09.ttl │ │ ├── turtle-syntax-number-10.ttl │ │ ├── turtle-syntax-number-11.ttl │ │ ├── turtle-syntax-pname-esc-01.ttl │ │ ├── turtle-syntax-pname-esc-02.ttl │ │ ├── turtle-syntax-pname-esc-03.ttl │ │ ├── turtle-syntax-prefix-01.ttl │ │ ├── turtle-syntax-prefix-02.ttl │ │ ├── turtle-syntax-prefix-03.ttl │ │ ├── turtle-syntax-prefix-04.ttl │ │ ├── turtle-syntax-prefix-05.ttl │ │ ├── turtle-syntax-prefix-06.ttl │ │ ├── turtle-syntax-prefix-07.ttl │ │ ├── turtle-syntax-prefix-08.ttl │ │ ├── turtle-syntax-prefix-09.ttl │ │ ├── turtle-syntax-str-esc-01.ttl │ │ ├── turtle-syntax-str-esc-02.ttl │ │ ├── turtle-syntax-str-esc-03.ttl │ │ ├── turtle-syntax-string-01.ttl │ │ ├── turtle-syntax-string-02.ttl │ │ ├── turtle-syntax-string-03.ttl │ │ ├── turtle-syntax-string-04.ttl │ │ ├── turtle-syntax-string-05.ttl │ │ ├── turtle-syntax-string-06.ttl │ │ ├── turtle-syntax-string-07.ttl │ │ ├── turtle-syntax-string-08.ttl │ │ ├── turtle-syntax-string-09.ttl │ │ ├── turtle-syntax-string-10.ttl │ │ ├── turtle-syntax-string-11.ttl │ │ ├── turtle-syntax-struct-01.ttl │ │ ├── turtle-syntax-struct-02.ttl │ │ ├── turtle-syntax-struct-03.ttl │ │ ├── turtle-syntax-struct-04.ttl │ │ ├── turtle-syntax-struct-05.ttl │ │ ├── turtle-syntax-uri-01.ttl │ │ ├── turtle-syntax-uri-02.ttl │ │ ├── turtle-syntax-uri-03.ttl │ │ ├── turtle-syntax-uri-04.ttl │ │ ├── two_LITERAL_LONG2s.nt │ │ ├── two_LITERAL_LONG2s.ttl │ │ ├── underscore_in_localName.nt │ │ └── underscore_in_localName.ttl │ └── xml │ │ ├── README │ │ ├── amp-in-url │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── convert-manifest.rb │ │ ├── datatypes │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ └── test002.rdf │ │ ├── manifest.ttl │ │ ├── rdf-charmod-literals │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdf-charmod-uris │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ └── test002.rdf │ │ ├── rdf-containers-syntax-vs-schema │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test006.nt │ │ ├── test006.rdf │ │ ├── test007.nt │ │ ├── test007.rdf │ │ ├── test008.nt │ │ └── test008.rdf │ │ ├── rdf-element-not-mandatory │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdf-ns-prefix-confusion │ │ ├── test0001.nt │ │ ├── test0001.rdf │ │ ├── test0003.nt │ │ ├── test0003.rdf │ │ ├── test0004.nt │ │ ├── test0004.rdf │ │ ├── test0005.nt │ │ ├── test0005.rdf │ │ ├── test0006.nt │ │ ├── test0006.rdf │ │ ├── test0009.nt │ │ ├── test0009.rdf │ │ ├── test0010.nt │ │ ├── test0010.rdf │ │ ├── test0011.nt │ │ ├── test0011.rdf │ │ ├── test0012.nt │ │ ├── test0012.rdf │ │ ├── test0013.nt │ │ ├── test0013.rdf │ │ ├── test0014.nt │ │ └── test0014.rdf │ │ ├── rdfms-abouteach │ │ ├── error001.rdf │ │ └── error002.rdf │ │ ├── rdfms-difference-between-ID-and-about │ │ ├── error1.rdf │ │ ├── test1.nt │ │ ├── test1.rdf │ │ ├── test2.nt │ │ ├── test2.rdf │ │ ├── test3.nt │ │ └── test3.rdf │ │ ├── rdfms-duplicate-member-props │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-empty-property-elements │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── error003.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ ├── test005.rdf │ │ ├── test006.nt │ │ ├── test006.rdf │ │ ├── test007.nt │ │ ├── test007.rdf │ │ ├── test008.nt │ │ ├── test008.rdf │ │ ├── test009.nt │ │ ├── test009.rdf │ │ ├── test010.nt │ │ ├── test010.rdf │ │ ├── test011.nt │ │ ├── test011.rdf │ │ ├── test012.nt │ │ ├── test012.rdf │ │ ├── test013.nt │ │ ├── test013.rdf │ │ ├── test014.nt │ │ ├── test014.rdf │ │ ├── test015.nt │ │ ├── test015.rdf │ │ ├── test016.nt │ │ ├── test016.rdf │ │ ├── test017.nt │ │ └── test017.rdf │ │ ├── rdfms-identity-anon-resources │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ └── test005.rdf │ │ ├── rdfms-not-id-and-resource-attr │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ └── test005.rdf │ │ ├── rdfms-para196 │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-rdf-id │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── error003.rdf │ │ ├── error004.rdf │ │ ├── error005.rdf │ │ ├── error006.rdf │ │ └── error007.rdf │ │ ├── rdfms-rdf-names-use │ │ ├── error-001.rdf │ │ ├── error-002.rdf │ │ ├── error-003.rdf │ │ ├── error-004.rdf │ │ ├── error-005.rdf │ │ ├── error-006.rdf │ │ ├── error-007.rdf │ │ ├── error-008.rdf │ │ ├── error-009.rdf │ │ ├── error-010.rdf │ │ ├── error-011.rdf │ │ ├── error-012.rdf │ │ ├── error-013.rdf │ │ ├── error-014.rdf │ │ ├── error-015.rdf │ │ ├── error-016.rdf │ │ ├── error-017.rdf │ │ ├── error-018.rdf │ │ ├── error-019.rdf │ │ ├── error-020.rdf │ │ ├── test-001.nt │ │ ├── test-001.rdf │ │ ├── test-002.nt │ │ ├── test-002.rdf │ │ ├── test-003.nt │ │ ├── test-003.rdf │ │ ├── test-004.nt │ │ ├── test-004.rdf │ │ ├── test-005.nt │ │ ├── test-005.rdf │ │ ├── test-006.nt │ │ ├── test-006.rdf │ │ ├── test-007.nt │ │ ├── test-007.rdf │ │ ├── test-008.nt │ │ ├── test-008.rdf │ │ ├── test-009.nt │ │ ├── test-009.rdf │ │ ├── test-010.nt │ │ ├── test-010.rdf │ │ ├── test-011.nt │ │ ├── test-011.rdf │ │ ├── test-012.nt │ │ ├── test-012.rdf │ │ ├── test-013.nt │ │ ├── test-013.rdf │ │ ├── test-014.nt │ │ ├── test-014.rdf │ │ ├── test-015.nt │ │ ├── test-015.rdf │ │ ├── test-016.nt │ │ ├── test-016.rdf │ │ ├── test-017.nt │ │ ├── test-017.rdf │ │ ├── test-018.nt │ │ ├── test-018.rdf │ │ ├── test-019.nt │ │ ├── test-019.rdf │ │ ├── test-020.nt │ │ ├── test-020.rdf │ │ ├── test-021.nt │ │ ├── test-021.rdf │ │ ├── test-022.nt │ │ ├── test-022.rdf │ │ ├── test-023.nt │ │ ├── test-023.rdf │ │ ├── test-024.nt │ │ ├── test-024.rdf │ │ ├── test-025.nt │ │ ├── test-025.rdf │ │ ├── test-026.nt │ │ ├── test-026.rdf │ │ ├── test-027.nt │ │ ├── test-027.rdf │ │ ├── test-028.nt │ │ ├── test-028.rdf │ │ ├── test-029.nt │ │ ├── test-029.rdf │ │ ├── test-030.nt │ │ ├── test-030.rdf │ │ ├── test-031.nt │ │ ├── test-031.rdf │ │ ├── test-032.nt │ │ ├── test-032.rdf │ │ ├── test-033.nt │ │ ├── test-033.rdf │ │ ├── test-034.nt │ │ ├── test-034.rdf │ │ ├── test-035.nt │ │ ├── test-035.rdf │ │ ├── test-036.nt │ │ ├── test-036.rdf │ │ ├── test-037.nt │ │ ├── test-037.rdf │ │ ├── warn-001.nt │ │ ├── warn-001.rdf │ │ ├── warn-002.nt │ │ ├── warn-002.rdf │ │ ├── warn-003.nt │ │ └── warn-003.rdf │ │ ├── rdfms-reification-required │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-seq-representation │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-syntax-incomplete │ │ ├── error001.rdf │ │ ├── error002.rdf │ │ ├── error003.rdf │ │ ├── error004.rdf │ │ ├── error005.rdf │ │ ├── error006.rdf │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ └── test004.rdf │ │ ├── rdfms-uri-substructure │ │ ├── test001.nt │ │ └── test001.rdf │ │ ├── rdfms-xml-literal-namespaces │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ └── test002.rdf │ │ ├── rdfms-xmllang │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test005.nt │ │ ├── test005.rdf │ │ ├── test006.nt │ │ └── test006.rdf │ │ ├── rdfs-domain-and-range │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ └── test002.rdf │ │ ├── unrecognised-xml-attributes │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ └── test002.rdf │ │ ├── xml-canon │ │ ├── test001.nt │ │ └── test001.rdf │ │ └── xmlbase │ │ ├── test001.nt │ │ ├── test001.rdf │ │ ├── test002.nt │ │ ├── test002.rdf │ │ ├── test003.nt │ │ ├── test003.rdf │ │ ├── test004.nt │ │ ├── test004.rdf │ │ ├── test006.nt │ │ ├── test006.rdf │ │ ├── test007.nt │ │ ├── test007.rdf │ │ ├── test008.nt │ │ ├── test008.rdf │ │ ├── test009.nt │ │ ├── test009.rdf │ │ ├── test010.nt │ │ ├── test010.rdf │ │ ├── test011.nt │ │ ├── test011.rdf │ │ ├── test013.nt │ │ ├── test013.rdf │ │ ├── test014.nt │ │ └── test014.rdf │ ├── w3c_nt.rs │ ├── write_dot.rs │ ├── write_json.rs │ ├── write_json_ld.rs │ ├── write_nq.rs │ ├── write_nt.rs │ ├── write_turtle.rs │ └── write_xml.rs ├── rdftk_iri ├── Cargo.toml ├── README.md └── src │ └── lib.rs ├── rdftk_names ├── Cargo.toml ├── README.md └── src │ ├── dc │ ├── dcam.rs │ ├── dcmi_type.rs │ ├── elements.rs │ ├── mod.rs │ └── terms.rs │ ├── foaf.rs │ ├── geo.rs │ ├── lib.rs │ ├── owl.rs │ ├── rdf.rs │ ├── rdfs.rs │ ├── skos.rs │ └── xsd.rs ├── rdftk_ontology ├── Cargo.toml ├── README.md └── src │ ├── lib.rs │ ├── macros.rs │ ├── owl │ └── mod.rs │ └── rdfs │ └── mod.rs ├── rdftk_query ├── Cargo.toml ├── README.md └── src │ ├── #lib.rs# │ ├── lib.rs │ ├── results.rs │ └── sparql │ ├── mod.rs │ ├── parser │ ├── #query.rs# │ ├── .#query.rs │ ├── common.rs │ ├── mod.rs │ ├── query.rs │ └── update.rs │ └── results │ ├── csv.rs │ ├── json.rs │ ├── mod.rs │ ├── tabular.rs │ └── xml.rs └── rdftk_skos ├── Cargo.toml ├── README.md ├── src ├── document.rs ├── lib.rs ├── model │ ├── collection.rs │ ├── concept.rs │ ├── mod.rs │ ├── properties.rs │ └── scheme.rs └── ns.rs └── tests ├── simple_thesaurus.md └── test_simple_thesaurus.rs /book/.gitignore: -------------------------------------------------------------------------------- 1 | publish 2 | -------------------------------------------------------------------------------- /book/src/crate_iri_specs.md: -------------------------------------------------------------------------------- 1 | # rdftk_iri_specs 2 | -------------------------------------------------------------------------------- /book/src/custom.js: -------------------------------------------------------------------------------- 1 | hljs.registerLanguage("sparql", hljsSparql); 2 | hljs.registerLanguage("turtle", hljsTurtle); 3 | hljs.initHighlightingOnLoad(); -------------------------------------------------------------------------------- /book/src/examples.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | -------------------------------------------------------------------------------- /book/src/img/core-data-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/core-data-model.png -------------------------------------------------------------------------------- /book/src/img/crates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/crates.png -------------------------------------------------------------------------------- /book/src/img/figures.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/figures.graffle -------------------------------------------------------------------------------- /book/src/img/figures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/figures.png -------------------------------------------------------------------------------- /book/src/img/primer-annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-annotations.png -------------------------------------------------------------------------------- /book/src/img/primer-bnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-bnode.png -------------------------------------------------------------------------------- /book/src/img/primer-data-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-data-model.png -------------------------------------------------------------------------------- /book/src/img/primer-datatype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-datatype.png -------------------------------------------------------------------------------- /book/src/img/primer-er-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-er-example.png -------------------------------------------------------------------------------- /book/src/img/primer-linkage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-linkage.png -------------------------------------------------------------------------------- /book/src/img/primer-multiples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-multiples.png -------------------------------------------------------------------------------- /book/src/img/primer-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-nodes.png -------------------------------------------------------------------------------- /book/src/img/primer-props.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-props.png -------------------------------------------------------------------------------- /book/src/img/primer-reify-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-reify-after.png -------------------------------------------------------------------------------- /book/src/img/primer-reify-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-reify-before.png -------------------------------------------------------------------------------- /book/src/img/primer-seq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-seq.png -------------------------------------------------------------------------------- /book/src/img/primer-spo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-spo.png -------------------------------------------------------------------------------- /book/src/img/primer-statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/primer-statement.png -------------------------------------------------------------------------------- /book/src/img/sw-cube-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/sw-cube-14.png -------------------------------------------------------------------------------- /book/src/img/sw-cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/book/src/img/sw-cube.png -------------------------------------------------------------------------------- /book/src/overview.md: -------------------------------------------------------------------------------- 1 | # Toolkit Overview 2 | -------------------------------------------------------------------------------- /book/src/references.md: -------------------------------------------------------------------------------- 1 | # References 2 | -------------------------------------------------------------------------------- /rdftk_core/tests/skolemize.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/README.md: -------------------------------------------------------------------------------- 1 | All folders here are copies of the corresponding test suites from 2 | [RDF 1.1 Test Cases](https://www.w3.org/TR/rdf11-testcases/). 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/langtagged_string.nq: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/lantag_with_subtag.nq: -------------------------------------------------------------------------------- 1 | "Cheers"@en-UK . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal.nq: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_all_punctuation.nq: -------------------------------------------------------------------------------- 1 | " !\"#$%&():;<=>?@[]^_`{|}~" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_ascii_boundaries.nq: -------------------------------------------------------------------------------- 1 | " &([]" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_false.nq: -------------------------------------------------------------------------------- 1 | "false"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_true.nq: -------------------------------------------------------------------------------- 1 | "true"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_2_dquotes.nq: -------------------------------------------------------------------------------- 1 | "x\"\"y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_2_squotes.nq: -------------------------------------------------------------------------------- 1 | "x''y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_BACKSPACE.nq: -------------------------------------------------------------------------------- 1 | "\b" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_CARRIAGE_RETURN.nq: -------------------------------------------------------------------------------- 1 | "\r" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_CHARACTER_TABULATION.nq: -------------------------------------------------------------------------------- 1 | "\t" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_FORM_FEED.nq: -------------------------------------------------------------------------------- 1 | "\f" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_LINE_FEED.nq: -------------------------------------------------------------------------------- 1 | "\n" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_REVERSE_SOLIDUS.nq: -------------------------------------------------------------------------------- 1 | "\\" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_REVERSE_SOLIDUS2.nq: -------------------------------------------------------------------------------- 1 | "test-\\" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_UTF8_boundaries.nq: -------------------------------------------------------------------------------- 1 | "€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_dquote.nq: -------------------------------------------------------------------------------- 1 | "x\"y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_numeric_escape4.nq: -------------------------------------------------------------------------------- 1 | "\u006F" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_numeric_escape8.nq: -------------------------------------------------------------------------------- 1 | "\U0000006F" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/literal_with_squote.nq: -------------------------------------------------------------------------------- 1 | "x'y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bad-literal-01.nq: -------------------------------------------------------------------------------- 1 | "o" . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bad-literal-02.nq: -------------------------------------------------------------------------------- 1 | "o"@en . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bad-literal-03.nq: -------------------------------------------------------------------------------- 1 | "o"^^ . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bad-quint-01.nq: -------------------------------------------------------------------------------- 1 | # N-Quads rejects a quint 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bad-uri-01.nq: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Quads 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bnode-01.nq: -------------------------------------------------------------------------------- 1 | _:g . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bnode-02.nq: -------------------------------------------------------------------------------- 1 | _:s _:g . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bnode-03.nq: -------------------------------------------------------------------------------- 1 | _:o _:g . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bnode-04.nq: -------------------------------------------------------------------------------- 1 | "o" _:g . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bnode-05.nq: -------------------------------------------------------------------------------- 1 | "o"@en _:g . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-bnode-06.nq: -------------------------------------------------------------------------------- 1 | "o"^^ _:g . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-uri-01.nq: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-uri-02.nq: -------------------------------------------------------------------------------- 1 | _:s . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-uri-03.nq: -------------------------------------------------------------------------------- 1 | _:o . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-uri-04.nq: -------------------------------------------------------------------------------- 1 | "o" . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-uri-05.nq: -------------------------------------------------------------------------------- 1 | "o"@en . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nq-syntax-uri-06.nq: -------------------------------------------------------------------------------- 1 | "o"^^ . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-base-01.nq: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-esc-01.nq: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "a\zb" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-esc-02.nq: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\uWXYZ" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-esc-03.nq: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\U0000WXYZ" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-lang-01.nq: -------------------------------------------------------------------------------- 1 | # Bad lang tag 2 | "string"@1 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-num-01.nq: -------------------------------------------------------------------------------- 1 | 1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-num-02.nq: -------------------------------------------------------------------------------- 1 | 1.0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-num-03.nq: -------------------------------------------------------------------------------- 1 | 1.0e0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-prefix-01.nq: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-string-01.nq: -------------------------------------------------------------------------------- 1 | "abc' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-string-02.nq: -------------------------------------------------------------------------------- 1 | 1.0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-string-03.nq: -------------------------------------------------------------------------------- 1 | 1.0e1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-string-04.nq: -------------------------------------------------------------------------------- 1 | '''abc''' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-string-05.nq: -------------------------------------------------------------------------------- 1 | """abc""" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-string-06.nq: -------------------------------------------------------------------------------- 1 | "abc . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-string-07.nq: -------------------------------------------------------------------------------- 1 | abc" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-struct-01.nq: -------------------------------------------------------------------------------- 1 | , . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-struct-02.nq: -------------------------------------------------------------------------------- 1 | ; , . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-01.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : space. 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-02.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : bad escape 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-03.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : bad escape 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-04.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : character escapes not allowed. 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-05.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : character escapes not allowed. 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-06.nq: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-07.nq: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 |

. 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-08.nq: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bad-uri-09.nq: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 | "foo"^^

. 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bnode-01.nq: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bnode-02.nq: -------------------------------------------------------------------------------- 1 | _:a . 2 | _:a . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-bnode-03.nq: -------------------------------------------------------------------------------- 1 | _:1a . 2 | _:1a . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-datatypes-01.nq: -------------------------------------------------------------------------------- 1 | "123"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-datatypes-02.nq: -------------------------------------------------------------------------------- 1 | "123"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-file-01.nq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/rdftk_io/tests/w3c/nq/nt-syntax-file-01.nq -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-file-02.nq: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-file-03.nq: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-str-esc-01.nq: -------------------------------------------------------------------------------- 1 | "a\n" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-str-esc-02.nq: -------------------------------------------------------------------------------- 1 | "a\u0020b" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-str-esc-03.nq: -------------------------------------------------------------------------------- 1 | "a\U00000020b" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-string-01.nq: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-string-02.nq: -------------------------------------------------------------------------------- 1 | "string"@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-string-03.nq: -------------------------------------------------------------------------------- 1 | "string"@en-uk . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-uri-01.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-uri-02.nq: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nq/nt-syntax-uri-03.nq: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/langtagged_string.nt: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/lantag_with_subtag.nt: -------------------------------------------------------------------------------- 1 | "Cheers"@en-UK . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal.nt: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_all_punctuation.nt: -------------------------------------------------------------------------------- 1 | " !\"#$%&():;<=>?@[]^_`{|}~" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | " &([]" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_false.nt: -------------------------------------------------------------------------------- 1 | "false"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_true.nt: -------------------------------------------------------------------------------- 1 | "true"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_2_dquotes.nt: -------------------------------------------------------------------------------- 1 | "x\"\"y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_2_squotes.nt: -------------------------------------------------------------------------------- 1 | "x''y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_BACKSPACE.nt: -------------------------------------------------------------------------------- 1 | "\b" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_CARRIAGE_RETURN.nt: -------------------------------------------------------------------------------- 1 | "\r" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_CHARACTER_TABULATION.nt: -------------------------------------------------------------------------------- 1 | "\t" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_FORM_FEED.nt: -------------------------------------------------------------------------------- 1 | "\f" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_LINE_FEED.nt: -------------------------------------------------------------------------------- 1 | "\n" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_REVERSE_SOLIDUS.nt: -------------------------------------------------------------------------------- 1 | "\\" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_REVERSE_SOLIDUS2.nt: -------------------------------------------------------------------------------- 1 | "test-\\" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_UTF8_boundaries.nt: -------------------------------------------------------------------------------- 1 | "€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_dquote.nt: -------------------------------------------------------------------------------- 1 | "x\"y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_numeric_escape4.nt: -------------------------------------------------------------------------------- 1 | "\u006F" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_numeric_escape8.nt: -------------------------------------------------------------------------------- 1 | "\U0000006F" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/literal_with_squote.nt: -------------------------------------------------------------------------------- 1 | "x'y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-base-01.nt: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-esc-01.nt: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "a\zb" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-esc-02.nt: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\uWXYZ" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-esc-03.nt: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\U0000WXYZ" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-lang-01.nt: -------------------------------------------------------------------------------- 1 | # Bad lang tag 2 | "string"@1 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-num-01.nt: -------------------------------------------------------------------------------- 1 | 1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-num-02.nt: -------------------------------------------------------------------------------- 1 | 1.0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-num-03.nt: -------------------------------------------------------------------------------- 1 | 1.0e0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-prefix-01.nt: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-string-01.nt: -------------------------------------------------------------------------------- 1 | "abc' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-string-02.nt: -------------------------------------------------------------------------------- 1 | 1.0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-string-03.nt: -------------------------------------------------------------------------------- 1 | 1.0e1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-string-04.nt: -------------------------------------------------------------------------------- 1 | '''abc''' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-string-05.nt: -------------------------------------------------------------------------------- 1 | """abc""" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-string-06.nt: -------------------------------------------------------------------------------- 1 | "abc . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-string-07.nt: -------------------------------------------------------------------------------- 1 | abc" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-struct-01.nt: -------------------------------------------------------------------------------- 1 | , . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-struct-02.nt: -------------------------------------------------------------------------------- 1 | ; , . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-01.nt: -------------------------------------------------------------------------------- 1 | # Bad IRI : space. 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-02.nt: -------------------------------------------------------------------------------- 1 | # Bad IRI : bad escape 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-03.nt: -------------------------------------------------------------------------------- 1 | # Bad IRI : bad escape 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-04.nt: -------------------------------------------------------------------------------- 1 | # Bad IRI : character escapes not allowed. 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-05.nt: -------------------------------------------------------------------------------- 1 | # Bad IRI : character escapes not allowed. 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-06.nt: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-07.nt: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 |

. 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-08.nt: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bad-uri-09.nt: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 | "foo"^^

. 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bnode-01.nt: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bnode-02.nt: -------------------------------------------------------------------------------- 1 | _:a . 2 | _:a . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-bnode-03.nt: -------------------------------------------------------------------------------- 1 | _:1a . 2 | _:1a . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-datatypes-01.nt: -------------------------------------------------------------------------------- 1 | "123"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-datatypes-02.nt: -------------------------------------------------------------------------------- 1 | "123"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-file-01.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/rdftk_io/tests/w3c/nt/nt-syntax-file-01.nt -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-file-02.nt: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-file-03.nt: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-str-esc-01.nt: -------------------------------------------------------------------------------- 1 | "a\n" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-str-esc-02.nt: -------------------------------------------------------------------------------- 1 | "a\u0020b" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-str-esc-03.nt: -------------------------------------------------------------------------------- 1 | "a\U00000020b" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-string-01.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-string-02.nt: -------------------------------------------------------------------------------- 1 | "string"@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-string-03.nt: -------------------------------------------------------------------------------- 1 | "string"@en-uk . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-uri-01.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-uri-02.nt: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/nt/nt-syntax-uri-03.nt: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/IRI_spo.nq: -------------------------------------------------------------------------------- 1 | . 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/IRI_subject.trig: -------------------------------------------------------------------------------- 1 | { .} 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL1.nq: -------------------------------------------------------------------------------- 1 | "x" . 2 | "x" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL1.trig: -------------------------------------------------------------------------------- 1 | { 'x' .} 2 | { 'x' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL1_with_UTF8_boundaries.trig: -------------------------------------------------------------------------------- 1 | '€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL2.trig: -------------------------------------------------------------------------------- 1 | { "x" .} 2 | { "x" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL2_with_UTF8_boundaries.trig: -------------------------------------------------------------------------------- 1 | "€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG1.trig: -------------------------------------------------------------------------------- 1 | { '''x''' .} 2 | { '''x''' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG1_ascii_boundaries.trig: -------------------------------------------------------------------------------- 1 | { '&([]' .} 2 | { '&([]' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG1_with_1_squote.nq: -------------------------------------------------------------------------------- 1 | "x'y" . 2 | "x'y" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG1_with_2_squotes.nq: -------------------------------------------------------------------------------- 1 | "x''y" . 2 | "x''y" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG1_with_UTF8_boundaries.trig: -------------------------------------------------------------------------------- 1 | '''€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽''' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG2.trig: -------------------------------------------------------------------------------- 1 | { """x""" .} 2 | { """x""" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG2_with_1_squote.nq: -------------------------------------------------------------------------------- 1 | "x\"y" . 2 | "x\"y" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG2_with_2_squotes.nq: -------------------------------------------------------------------------------- 1 | "x\"\"y" . 2 | "x\"\"y" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG2_with_REVERSE_SOLIDUS.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | {:s :p1 """test-\\""" .} 4 | {:s :p1 """test-\\""" .} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/LITERAL_LONG2_with_UTF8_boundaries.trig: -------------------------------------------------------------------------------- 1 | """€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽""" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/alternating_bnode_graphs.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:a :b :c.} 3 | _:G {:a :b :d.} 4 | {:a :b :e.} 5 | _:G {:a :b :f.} 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/alternating_iri_graphs.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:a :b :c.} 3 | :G {:a :b :d.} 4 | {:a :b :e.} 5 | :G {:a :b :f.} 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/anonymous_blank_node_graph.trig: -------------------------------------------------------------------------------- 1 | [] { .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/anonymous_blank_node_object.nq: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | _:b2 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/anonymous_blank_node_object.trig: -------------------------------------------------------------------------------- 1 | { [] .} 2 | { [] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/anonymous_blank_node_subject.nq: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | _:b2 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/anonymous_blank_node_subject.trig: -------------------------------------------------------------------------------- 1 | {[] .} 2 | {[] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/bareword_a_predicate.trig: -------------------------------------------------------------------------------- 1 | { a .} 2 | { a .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/bareword_decimal.trig: -------------------------------------------------------------------------------- 1 | { 1.0 .} 2 | { 1.0 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/bareword_double.trig: -------------------------------------------------------------------------------- 1 | { 1E0 .} 2 | { 1E0 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/bareword_integer.trig: -------------------------------------------------------------------------------- 1 | { 1 .} 2 | { 1 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/blankNodePropertyList_containing_collection.trig: -------------------------------------------------------------------------------- 1 | {[ (1) ] .} 2 | {[ (1) ] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/collection_object.trig: -------------------------------------------------------------------------------- 1 | { (1) .} 2 | { (1) .} -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/collection_subject.trig: -------------------------------------------------------------------------------- 1 | {(1) .} 2 | {(1) .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/comment_following_PNAME_NS.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/comment_following_PNAME_NS.trig: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:#comment 3 | . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/double_lower_case_e.trig: -------------------------------------------------------------------------------- 1 | { 1e0 .} 2 | { 1e0 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/empty_collection.trig: -------------------------------------------------------------------------------- 1 | { () .} 2 | { () .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/first.trig: -------------------------------------------------------------------------------- 1 | { ((1) 2) .} 2 | { ((1) 2) .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/labeled_blank_node_graph.nq: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/labeled_blank_node_graph.trig: -------------------------------------------------------------------------------- 1 | _:g { .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/labeled_blank_node_object.nq: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | _:b1 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/labeled_blank_node_object.trig: -------------------------------------------------------------------------------- 1 | { _:o .} 2 | { _:o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/labeled_blank_node_subject.nq: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | _:b1 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/labeled_blank_node_subject.trig: -------------------------------------------------------------------------------- 1 | {_:s .} 2 | {_:s .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/labeled_blank_node_with_leading_digit.trig: -------------------------------------------------------------------------------- 1 | { _:0 .} 2 | { _:0 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/labeled_blank_node_with_leading_underscore.trig: -------------------------------------------------------------------------------- 1 | { _:_ .} 2 | { _:_ .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/langtagged_LONG.trig: -------------------------------------------------------------------------------- 1 | { """chat"""@en .} 2 | { """chat"""@en .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/langtagged_non_LONG.nq: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | "chat"@en . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/langtagged_non_LONG.trig: -------------------------------------------------------------------------------- 1 | { "chat"@en .} 2 | { "chat"@en .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/lantag_with_subtag.nq: -------------------------------------------------------------------------------- 1 | "chat"@en-us . 2 | "chat"@en-us . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/lantag_with_subtag.trig: -------------------------------------------------------------------------------- 1 | { "chat"@en-us .} 2 | { "chat"@en-us .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/last.trig: -------------------------------------------------------------------------------- 1 | { (1 (2)) .} 2 | { (1 (2)) .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_false.trig: -------------------------------------------------------------------------------- 1 | { false .} 2 | { false .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_true.trig: -------------------------------------------------------------------------------- 1 | { true .} 2 | { true .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_BACKSPACE.nq: -------------------------------------------------------------------------------- 1 | "\u0008" . 2 | "\u0008" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_BACKSPACE.trig: -------------------------------------------------------------------------------- 1 | { '' .} 2 | { '' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_CARRIAGE_RETURN.nq: -------------------------------------------------------------------------------- 1 | "\r" . 2 | "\r" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_CARRIAGE_RETURN.trig: -------------------------------------------------------------------------------- 1 | { ''' ''' .} { ''' ''' .} -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_CHARACTER_TABULATION.nq: -------------------------------------------------------------------------------- 1 | "\t" . 2 | "\t" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_CHARACTER_TABULATION.trig: -------------------------------------------------------------------------------- 1 | { ' ' .} 2 | { ' ' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_FORM_FEED.nq: -------------------------------------------------------------------------------- 1 | "\u000C" . 2 | "\u000C" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_FORM_FEED.trig: -------------------------------------------------------------------------------- 1 | { ' ' .} 2 | { ' ' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_LINE_FEED.nq: -------------------------------------------------------------------------------- 1 | "\n" . 2 | "\n" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_LINE_FEED.trig: -------------------------------------------------------------------------------- 1 | { ''' 2 | ''' .} 3 | { ''' 4 | ''' .} -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_REVERSE_SOLIDUS.nq: -------------------------------------------------------------------------------- 1 | "\\" . 2 | "\\" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_REVERSE_SOLIDUS.trig: -------------------------------------------------------------------------------- 1 | { '\\' .} 2 | { '\\' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_escaped_BACKSPACE.trig: -------------------------------------------------------------------------------- 1 | { '\b' .} 2 | { '\b' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_escaped_FORM_FEED.trig: -------------------------------------------------------------------------------- 1 | { '\f' .} 2 | { '\f' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_escaped_LINE_FEED.trig: -------------------------------------------------------------------------------- 1 | { '\n' .} 2 | { '\n' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/literal_with_numeric_escape4.nq: -------------------------------------------------------------------------------- 1 | "o" . 2 | "o" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/negative_numeric.trig: -------------------------------------------------------------------------------- 1 | { -1 .} 2 | { -1 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/nested_collection.trig: -------------------------------------------------------------------------------- 1 | { ((1)) .} 2 | { ((1)) .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/number_sign_following_PNAME_NS.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/number_sign_following_PNAME_NS.trig: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:\#numbersign 3 | . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/number_sign_following_localName.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/number_sign_following_localName.trig: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:o\#numbersign 3 | . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/numeric_with_leading_0.trig: -------------------------------------------------------------------------------- 1 | { 01 .} 2 | { 01 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/positive_numeric.trig: -------------------------------------------------------------------------------- 1 | { +1 .} 2 | { +1 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-bnodeplist-graph-bad-01.trig: -------------------------------------------------------------------------------- 1 | # BlankNodePropertyList as Graph Name 2 | PREFIX : 3 | 4 | [:p1 :o1] {:s :p :o} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-collection-graph-bad-01.trig: -------------------------------------------------------------------------------- 1 | # Collection as Graph Name 2 | PREFIX : 3 | 4 | () {:s :p :o} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-collection-graph-bad-02.trig: -------------------------------------------------------------------------------- 1 | # Collection as Graph Name 2 | PREFIX : 3 | 4 | (1 2) {:s :p :o} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-eval-bad-01.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI : good escape, bad charcater 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-eval-bad-02.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI : hex 3C is < 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-eval-bad-03.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI : hex 3E is > 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-eval-bad-04.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-eval-struct-01.nq: -------------------------------------------------------------------------------- 1 | . 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-01.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH but no name - GRAPH is not used with the default graph 5 | GRAPH { :s :p :o } 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-02.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH not followed by DOT 5 | GRAPH :g1 { :s :p :o } . 6 | GRAPH :g2 { :s :p :o } . 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-03.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH needs {} 5 | GRAPH :g 6 | :s :p :o . 7 | 8 | 9 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-04.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH needs {} 5 | GRAPH :s :p :o 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-05.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH and a name, not several. 5 | GRAPH :g1 :g2 { :s :p :o } 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-06.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH - Must close {} 5 | GRAPH :g { :s :p :o 6 | 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-08.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH and a triples block. 5 | @model.graph :g { :s :p :o } 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-10.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH - no lists 5 | GRAPH () { :s :p :o } 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-graph-bad-11.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | # GRAPH - no lists 5 | model.graph (1 2) { :s :p :o } 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-01.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH :g { :s :p :o } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-02.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH :g { :s :p :o . } 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-03.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH :g { } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-05.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH :g { :s :p :o } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-06.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH _:a { :s :p :o } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-07.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH [] { :s :p :o } 5 | [] { :s :p :o } 6 | GRAPH [] { :s :p :o } 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-08.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH :g { :s :p :o } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-09.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH :g { :s :p :o } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-kw-graph-10.trig: -------------------------------------------------------------------------------- 1 | # GRAPH tests 2 | PREFIX : 3 | 4 | GRAPH :g { } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-subm-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : <#> . 2 | {[] :x :y .} 3 | {[] :x :y .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-subm-07.trig: -------------------------------------------------------------------------------- 1 | # 'a' only allowed as a predicate 2 | @prefix : . 3 | {:a a :b .} 4 | {:a a :b .} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-subm-08.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:a :b ( "apple" "banana" ) .} 3 | {:a :b ( "apple" "banana" ) .} 4 | 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-subm-09.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:a :b ( ) .} 3 | {:a :b ( ) .} 4 | 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-subm-17.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | {:a :b 1.0 .} 4 | {:a :b 1.0 .} 5 | 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-subm-24.trig: -------------------------------------------------------------------------------- 1 | # comment line with no final newline test 2 | @prefix : . 3 | {:a :b :c .} 4 | {:a :b :c .} 5 | #foo 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-base-01.trig: -------------------------------------------------------------------------------- 1 | # @base without URI. 2 | @base . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-base-02.trig: -------------------------------------------------------------------------------- 1 | # @base in wrong case. 2 | @BASE . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-base-03.trig: -------------------------------------------------------------------------------- 1 | # FULL STOP used after SPARQL BASE 2 | BASE . 3 | {

.} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-base-04.trig: -------------------------------------------------------------------------------- 1 | # @base inside graph 2 | { 3 | @base . 4 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-base-05.trig: -------------------------------------------------------------------------------- 1 | # BASE inside graph 2 | { 3 | BASE 4 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-blank-label-dot-end.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {_:b1. :p :o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-esc-01.trig: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | { "a\zb" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-esc-02.trig: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | { "\uWXYZ" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-esc-03.trig: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | { "\U0000WXYZ" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-esc-04.trig: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | { "\U0000WXYZ" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-kw-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s A :C .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-kw-02.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {a :p :o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-kw-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p a .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-kw-04.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {true :p :o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-kw-05.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s true :o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-lang-01.trig: -------------------------------------------------------------------------------- 1 | # Bad lang tag 2 | { "string"@1 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-list-01.trig: -------------------------------------------------------------------------------- 1 | # RDF collection without predicate-object-list 2 | ( 1 2 3 ) . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-list-02.trig: -------------------------------------------------------------------------------- 1 | # RDF collection without predicate-object-list 2 | ( 1 2 3 ) . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-list-03.trig: -------------------------------------------------------------------------------- 1 | # RDF collection without predicate-object-list 2 | { ( 1 2 3 ) } 3 | 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-list-04.trig: -------------------------------------------------------------------------------- 1 | # RDF collection without predicate-object-list 2 | { ( ) } 3 | 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-ln-dash-start.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p :-o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-ln-escape-start.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p :%2o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-ln-escape.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p :o%2 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-missing-ns-dot-end.trig: -------------------------------------------------------------------------------- 1 | {valid:s valid:p invalid.:o .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-missing-ns-dot-start.trig: -------------------------------------------------------------------------------- 1 | {.undefined:s .undefined:p .undefined:o .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-01.trig: -------------------------------------------------------------------------------- 1 | # {} model.formulae not in Turtle 2 | @prefix : . 3 | 4 | { :a :q :c . } :p :z . 5 | 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-02.trig: -------------------------------------------------------------------------------- 1 | # = is not Turtle 2 | @prefix : . 3 | 4 | {:a = :b .} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-04.trig: -------------------------------------------------------------------------------- 1 | # N3 paths 2 | @prefix : . 3 | @prefix ns: . 4 | 5 | {:x^ns:p :p :z .} 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-05.trig: -------------------------------------------------------------------------------- 1 | # N3 is...of 2 | @prefix : . 3 | 4 | {:z is :p of :x .} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-06.trig: -------------------------------------------------------------------------------- 1 | # = is not Turtle 2 | @prefix : . 3 | 4 | {:a.:b.:c .} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-07.trig: -------------------------------------------------------------------------------- 1 | # @keywords is not Turtle 2 | @keywords a . 3 | {x a Item .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-08.trig: -------------------------------------------------------------------------------- 1 | # @keywords is not Turtle 2 | @keywords a . 3 | {x a Item .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-09.trig: -------------------------------------------------------------------------------- 1 | # => is not Turtle 2 | @prefix : . 3 | {:s => :o .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-10.trig: -------------------------------------------------------------------------------- 1 | # <= is not Turtle 2 | @prefix : . 3 | {:s <= :o .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-11.trig: -------------------------------------------------------------------------------- 1 | # @forSome is not Turtle 2 | @prefix : . 3 | @forSome :x . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-12.trig: -------------------------------------------------------------------------------- 1 | # @forAll is not Turtle 2 | @prefix : . 3 | @forAll :x . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-n3-extras-13.trig: -------------------------------------------------------------------------------- 1 | # @keywords is not Turtle 2 | @keywords . 3 | {x @a Item .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-ns-dot-end.trig: -------------------------------------------------------------------------------- 1 | @prefix eg. : . 2 | {eg.:s eg.:p eg.:o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-ns-dot-start.trig: -------------------------------------------------------------------------------- 1 | @prefix .eg : . 2 | {.eg:s .eg:p .eg:o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-num-01.trig: -------------------------------------------------------------------------------- 1 | { 123.abc .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-num-02.trig: -------------------------------------------------------------------------------- 1 | { 123e .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-num-03.trig: -------------------------------------------------------------------------------- 1 | { 123abc .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-num-04.trig: -------------------------------------------------------------------------------- 1 | { 0x123 .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-num-05.trig: -------------------------------------------------------------------------------- 1 | { +-1 .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-number-dot-in-anon.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | { 4 | :s 5 | :p [ 6 | :p1 27. 7 | ] . 8 | } 9 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-pname-01.trig: -------------------------------------------------------------------------------- 1 | # ~ must be escaped. 2 | @prefix : . 3 | {:a~b :p :o .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-pname-02.trig: -------------------------------------------------------------------------------- 1 | # Bad %-sequence 2 | @prefix : . 3 | {:a%2 :p :o .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-pname-03.trig: -------------------------------------------------------------------------------- 1 | # No \u (x39 is "9") 2 | @prefix : . 3 | {:a\u0039 :p :o .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-prefix-01.trig: -------------------------------------------------------------------------------- 1 | # No prefix 2 | {:s "x" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-prefix-02.trig: -------------------------------------------------------------------------------- 1 | # No prefix 2 | @prefix rdf: . 3 | { rdf:type :C .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-prefix-03.trig: -------------------------------------------------------------------------------- 1 | # @prefix without URI. 2 | @prefix ex: . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-prefix-04.trig: -------------------------------------------------------------------------------- 1 | # @prefix without prefix name . 2 | @prefix . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-prefix-05.trig: -------------------------------------------------------------------------------- 1 | # @prefix without : 2 | @prefix x . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-prefix-06.trig: -------------------------------------------------------------------------------- 1 | # @prefix inside graph 2 | { 3 | @prefix ex: . 4 | } 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-prefix-07.trig: -------------------------------------------------------------------------------- 1 | # PREFIX inside graph 2 | { 3 | PREFIX ex: 4 | } 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-string-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p "abc' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-string-02.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p 'abc" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-string-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p '''abc' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-string-04.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p """abc''' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-string-05.trig: -------------------------------------------------------------------------------- 1 | # Long literal with missing end 2 | @prefix : . 3 | { 4 | :s :p """abc 5 | def 6 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-string-06.trig: -------------------------------------------------------------------------------- 1 | # Long literal with 4" 2 | @prefix : . 3 | {:s :p """abc""""@en .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-string-07.trig: -------------------------------------------------------------------------------- 1 | # Long literal with 4' 2 | @prefix : . 3 | {:s :p '''abc''''@en .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-02.trig: -------------------------------------------------------------------------------- 1 | # TriG is not N3 2 | = . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-03.trig: -------------------------------------------------------------------------------- 1 | # TriG is not NQuads 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-04.trig: -------------------------------------------------------------------------------- 1 | # TriG does not allow literals-as-subjects 2 | {"hello" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-05.trig: -------------------------------------------------------------------------------- 1 | # TriG does not allow literals-as-predicates 2 | { "hello" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-06.trig: -------------------------------------------------------------------------------- 1 | # TriG does not allow bnodes-as-predicates 2 | { [] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-07.trig: -------------------------------------------------------------------------------- 1 | # TriG does not allow bnodes-as-predicates 2 | { _:p .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-09.trig: -------------------------------------------------------------------------------- 1 | # Too many DOTs 2 | { . .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-12.trig: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-13.trig: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-14.trig: -------------------------------------------------------------------------------- 1 | # Literal as subject 2 | {"abc" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-15.trig: -------------------------------------------------------------------------------- 1 | # Literal as predicate 2 | { "abc" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-16.trig: -------------------------------------------------------------------------------- 1 | # BNode as predicate 2 | { [] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-struct-17.trig: -------------------------------------------------------------------------------- 1 | # BNode as predicate 2 | { _:a .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-uri-01.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI : space. 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-uri-02.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI : bad escape 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-uri-03.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI : bad escape 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-uri-04.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI : character escapes not allowed. 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bad-uri-05.trig: -------------------------------------------------------------------------------- 1 | # Bad IRI : character escapes not allowed. 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-base-01.trig: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-base-02.trig: -------------------------------------------------------------------------------- 1 | BASE 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-base-03.trig: -------------------------------------------------------------------------------- 1 | @base . 2 | {

.} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-base-04.trig: -------------------------------------------------------------------------------- 1 | base 2 | {

.} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {[] :p :o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-02.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p [] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p [ :q :o ] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-04.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p [ :q1 :o1 ; :q2 :o2 ] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-05.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {[ :q1 :o1 ; :q2 :o2 ] :p :o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-06.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {_:a :p :o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-07.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p _:a . 3 | _:a :p :o . 4 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-08.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {[ :p :o ] .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-09.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {[ :p :o1,:2 ] . 3 | :s :p :o .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-bnode-10.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | { 3 | :s1 :p :o . 4 | [ :p1 :o1 ; :p2 :o2 ] . 5 | :s2 :p :o . 6 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-datatypes-01.trig: -------------------------------------------------------------------------------- 1 | @prefix xsd: . 2 | {

"123"^^xsd:byte .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-file-01.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/rdftk_io/tests/w3c/trig/trig-syntax-file-01.trig -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-file-02.trig: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-file-03.trig: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-kw-01.trig: -------------------------------------------------------------------------------- 1 | {

true .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-kw-02.trig: -------------------------------------------------------------------------------- 1 | {

false .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-kw-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s a :C .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-lists-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p () .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-lists-02.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p (1 "2" :o) .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-lists-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {(1) :p (1) .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-lists-04.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {(()) :p (()) .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-lists-05.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {(1 2 (1 2)) :p (( "a") "b" :o) .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-ln-colons.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | { 3 | :s:1 :p:1 :o:1 . 4 | :s::2 :p::2 :o::2 . 5 | :3:s :3:p :3 . 6 | ::s ::p ::o . 7 | ::s: ::p: ::o: . 8 | } 9 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-ln-dots.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | { 3 | :s.1 :p.1 :o.1 . 4 | :s..2 :p..2 :o..2. 5 | :3.s :3.p :3. 6 | } 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-ns-dots.trig: -------------------------------------------------------------------------------- 1 | @prefix e.g: . 2 | {e.g:s e.g:p e.g:o .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-01.trig: -------------------------------------------------------------------------------- 1 | {

123 .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-02.trig: -------------------------------------------------------------------------------- 1 | {

-123 .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-03.trig: -------------------------------------------------------------------------------- 1 | {

+123 .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-04.trig: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 | {

123.0 . } 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-05.trig: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 | {

.1 . } 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-06.trig: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 | {

-123.0 . } 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-07.trig: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 | {

+123.0 . } 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-08.trig: -------------------------------------------------------------------------------- 1 | # This is an integer 2 | {

123.} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-09.trig: -------------------------------------------------------------------------------- 1 | {

123.0e1 .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-10.trig: -------------------------------------------------------------------------------- 1 | {

-123e-1 .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-number-11.trig: -------------------------------------------------------------------------------- 1 | {

123.E+1 .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-pname-esc-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p :\~\.\-\!\$\&\'\(\)\*\+\,\;\=\/\?\#\@\_\%AA .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-pname-esc-02.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p :0123\~\.\-\!\$\&\'\(\)\*\+\,\;\=\/\?\#\@\_\%AA123 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-pname-esc-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:xyz\~ :abc\.: : .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-02.trig: -------------------------------------------------------------------------------- 1 | PreFIX : 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-03.trig: -------------------------------------------------------------------------------- 1 | PREFIX : 2 | {:s :p :123 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-04.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p :%20 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-05.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {: : : .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-06.trig: -------------------------------------------------------------------------------- 1 | # colon is a legal pname character 2 | @prefix : . 3 | @prefix x: . 4 | {:a:b:c x:d:e:f :::: .} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-07.trig: -------------------------------------------------------------------------------- 1 | # dash is a legal pname character 2 | @prefix x: . 3 | {x:a-b-c x:p x:o .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-08.trig: -------------------------------------------------------------------------------- 1 | # underscore is a legal pname character 2 | @prefix x: . 3 | {x:_ x:p_1 x:o .} 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-prefix-09.trig: -------------------------------------------------------------------------------- 1 | # percents 2 | @prefix : . 3 | @prefix x: . 4 | {:a%3E x:%25 :a%3Eb .} 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-str-esc-01.trig: -------------------------------------------------------------------------------- 1 | { "a\n" .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-str-esc-02.trig: -------------------------------------------------------------------------------- 1 | { "a\u0020b" .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-str-esc-03.trig: -------------------------------------------------------------------------------- 1 | { "a\U00000020b" .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-01.trig: -------------------------------------------------------------------------------- 1 | { "string" .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-02.trig: -------------------------------------------------------------------------------- 1 | { "string"@en .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-03.trig: -------------------------------------------------------------------------------- 1 | { "string"@en-uk .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-04.trig: -------------------------------------------------------------------------------- 1 | { 'string' .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-05.trig: -------------------------------------------------------------------------------- 1 | { 'string'@en .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-06.trig: -------------------------------------------------------------------------------- 1 | { 'string'@en-uk .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-07.trig: -------------------------------------------------------------------------------- 1 | { """abc""def''ghi""" .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-08.trig: -------------------------------------------------------------------------------- 1 | { """abc 2 | def""" .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-09.trig: -------------------------------------------------------------------------------- 1 | { '''abc 2 | def''' .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-10.trig: -------------------------------------------------------------------------------- 1 | { """abc 2 | def"""@en .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-string-11.trig: -------------------------------------------------------------------------------- 1 | { '''abc 2 | def'''@en .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-struct-01.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p :o1 , :o2 .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-struct-02.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p1 :o1 ; 3 | :p2 :o2 . 4 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-struct-03.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p1 :o1 ; 3 | :p2 :o2 ; 4 | . 5 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-struct-04.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p1 :o1 ;; 3 | :p2 :o2 4 | . 5 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-struct-05.trig: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | {:s :p1 :o1 ; 3 | :p2 :o2 ;; 4 | . 5 | } -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-struct-06.trig: -------------------------------------------------------------------------------- 1 | # No DOT 2 | { } 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-struct-07.trig: -------------------------------------------------------------------------------- 1 | # Trailing ; 2 | { ;} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-uri-01.trig: -------------------------------------------------------------------------------- 1 | { .} 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-uri-02.trig: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-syntax-uri-03.trig: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | { .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-turtle-01.trig: -------------------------------------------------------------------------------- 1 | # Turtle is TriG 2 | PREFIX : 3 | 4 | :s :p :o ; 5 | :q 123 , 456 . 6 | 7 | :s1 :p1 "more" . 8 | 9 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-turtle-03.trig: -------------------------------------------------------------------------------- 1 | # Turtle is TriG 2 | prefix : 3 | 4 | [ :p 123 ; :q 456 ] :r 1 . 5 | 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-turtle-04.trig: -------------------------------------------------------------------------------- 1 | # Turtle is TriG 2 | prefix : 3 | 4 | [] :p :o . 5 | 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-turtle-05.trig: -------------------------------------------------------------------------------- 1 | # Turtle is TriG 2 | prefix : 3 | 4 | [ :p :o ] . 5 | 6 | 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-turtle-06.trig: -------------------------------------------------------------------------------- 1 | # Turtle is TriG 2 | prefix : 3 | 4 | ( 1 2 3 ) :p ( 4 5 6 ) . -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-turtle-bad-01.trig: -------------------------------------------------------------------------------- 1 | # Turtle is TriG 2 | 3 | # Trailing dot required in Turtle block. 4 | 5 | :s :p :o 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/trig-turtle-bad-02.trig: -------------------------------------------------------------------------------- 1 | # Turtle is TriG 2 | 3 | # N-Quads. 4 | 5 | :s :p :o :g . 6 | 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/underscore_in_localName.nq: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/trig/underscore_in_localName.trig: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | {p:s_ .} 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/HYPHEN_MINUS_in_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/HYPHEN_MINUS_in_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:s- . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/IRIREF_datatype.nt: -------------------------------------------------------------------------------- 1 | "1"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/IRIREF_datatype.ttl: -------------------------------------------------------------------------------- 1 | "1"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/IRI_spo.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/IRI_subject.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/IRI_with_all_punctuation.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/IRI_with_all_punctuation.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/IRI_with_eight_digit_numeric_escape.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/IRI_with_four_digit_numeric_escape.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL1.nt: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL1.ttl: -------------------------------------------------------------------------------- 1 | 'x' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL1_all_controls.ttl: -------------------------------------------------------------------------------- 1 | ' ' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL1_all_punctuation.nt: -------------------------------------------------------------------------------- 1 | " !\"#$%&():;<=>?@[]^_`{|}~" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL1_all_punctuation.ttl: -------------------------------------------------------------------------------- 1 | ' !"#$%&():;<=>?@[]^_`{|}~' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL1_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | "\u0000\t\u000B\u000C\u000E&([]\u007F" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL1_ascii_boundaries.ttl: -------------------------------------------------------------------------------- 1 | ' &([]' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL1_with_UTF8_boundaries.ttl: -------------------------------------------------------------------------------- 1 | '€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL2.ttl: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL2_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | "\u0000\t\u000B\u000C\u000E!#[]\u007F" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL2_ascii_boundaries.ttl: -------------------------------------------------------------------------------- 1 | " !#[]" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL2_with_UTF8_boundaries.ttl: -------------------------------------------------------------------------------- 1 | "€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG1.ttl: -------------------------------------------------------------------------------- 1 | '''x''' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG1_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | "\u0000&([]\u007F" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG1_ascii_boundaries.ttl: -------------------------------------------------------------------------------- 1 | '&([]' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG1_with_1_squote.nt: -------------------------------------------------------------------------------- 1 | "x'y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG1_with_1_squote.ttl: -------------------------------------------------------------------------------- 1 | '''x'y''' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG1_with_2_squotes.nt: -------------------------------------------------------------------------------- 1 | "x''y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG1_with_2_squotes.ttl: -------------------------------------------------------------------------------- 1 | '''x''y''' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG1_with_UTF8_boundaries.ttl: -------------------------------------------------------------------------------- 1 | '''€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽''' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2.ttl: -------------------------------------------------------------------------------- 1 | """x""" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | "\u0000!#[]\u007F" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_ascii_boundaries.ttl: -------------------------------------------------------------------------------- 1 | "!#[]" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_with_1_squote.nt: -------------------------------------------------------------------------------- 1 | "x\"y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_with_1_squote.ttl: -------------------------------------------------------------------------------- 1 | """x"y""" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_with_2_squotes.nt: -------------------------------------------------------------------------------- 1 | "x\"\"y" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_with_2_squotes.ttl: -------------------------------------------------------------------------------- 1 | """x""y""" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_with_REVERSE_SOLIDUS.nt: -------------------------------------------------------------------------------- 1 | "test-\\" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_with_REVERSE_SOLIDUS.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :s :p1 """test-\\""" . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/LITERAL_LONG2_with_UTF8_boundaries.ttl: -------------------------------------------------------------------------------- 1 | """€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽""" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/SPARQL_style_base.ttl: -------------------------------------------------------------------------------- 1 | BASE 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/SPARQL_style_prefix.ttl: -------------------------------------------------------------------------------- 1 | PREFIX p: 2 | p:s . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/anonymous_blank_node_object.ttl: -------------------------------------------------------------------------------- 1 | [] . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/anonymous_blank_node_subject.ttl: -------------------------------------------------------------------------------- 1 | [] . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/bareword_a_predicate.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/bareword_a_predicate.ttl: -------------------------------------------------------------------------------- 1 | a . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/bareword_decimal.nt: -------------------------------------------------------------------------------- 1 | "1.0"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/bareword_decimal.ttl: -------------------------------------------------------------------------------- 1 | 1.0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/bareword_double.nt: -------------------------------------------------------------------------------- 1 | "1E0"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/bareword_double.ttl: -------------------------------------------------------------------------------- 1 | 1E0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/bareword_integer.ttl: -------------------------------------------------------------------------------- 1 | 1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/blankNodePropertyList_as_object.nt: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | _:b1 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/blankNodePropertyList_as_object.ttl: -------------------------------------------------------------------------------- 1 | [ ] . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/blankNodePropertyList_as_subject.nt: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | _:b1 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/blankNodePropertyList_as_subject.ttl: -------------------------------------------------------------------------------- 1 | [ ] . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/blankNodePropertyList_containing_collection.ttl: -------------------------------------------------------------------------------- 1 | [ (1) ] . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/collection_object.ttl: -------------------------------------------------------------------------------- 1 | (1) . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/collection_subject.ttl: -------------------------------------------------------------------------------- 1 | (1) . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/comment_following_PNAME_NS.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/comment_following_PNAME_NS.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:#comment 3 | . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/comment_following_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:o#comment 3 | . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/default_namespace_IRI.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/double_lower_case_e.nt: -------------------------------------------------------------------------------- 1 | "1e0"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/double_lower_case_e.ttl: -------------------------------------------------------------------------------- 1 | 1e0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/empty_collection.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/empty_collection.ttl: -------------------------------------------------------------------------------- 1 | () . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/first.ttl: -------------------------------------------------------------------------------- 1 | ((1) 2) . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/labeled_blank_node_object.nt: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/labeled_blank_node_object.ttl: -------------------------------------------------------------------------------- 1 | _:o . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/labeled_blank_node_subject.nt: -------------------------------------------------------------------------------- 1 | _:b1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/labeled_blank_node_subject.ttl: -------------------------------------------------------------------------------- 1 | _:s . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.ttl: -------------------------------------------------------------------------------- 1 | _:AZazÀÖØöø˿ͰͽͿ῿‌‍⁰↏Ⰰ⿯、퟿豈﷏ﷰ�𐀀󯿽 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/labeled_blank_node_with_leading_digit.ttl: -------------------------------------------------------------------------------- 1 | _:0 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/labeled_blank_node_with_leading_underscore.ttl: -------------------------------------------------------------------------------- 1 | _:_ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/labeled_blank_node_with_non_leading_extras.ttl: -------------------------------------------------------------------------------- 1 | _:a·̀ͯ‿.⁀ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/langtagged_LONG.ttl: -------------------------------------------------------------------------------- 1 | """chat"""@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/langtagged_LONG_with_subtag.nt: -------------------------------------------------------------------------------- 1 | "Cheers"@en-UK . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/langtagged_LONG_with_subtag.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal with lang tag 2 | @prefix : . 3 | :a :b """Cheers"""@en-UK . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/langtagged_non_LONG.nt: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/langtagged_non_LONG.ttl: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/lantag_with_subtag.nt: -------------------------------------------------------------------------------- 1 | "chat"@en-us . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/lantag_with_subtag.ttl: -------------------------------------------------------------------------------- 1 | "chat"@en-us . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/last.ttl: -------------------------------------------------------------------------------- 1 | (1 (2)) . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_false.nt: -------------------------------------------------------------------------------- 1 | "false"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_false.ttl: -------------------------------------------------------------------------------- 1 | false . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_true.nt: -------------------------------------------------------------------------------- 1 | "true"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_true.ttl: -------------------------------------------------------------------------------- 1 | true . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_BACKSPACE.nt: -------------------------------------------------------------------------------- 1 | "\u0008" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_BACKSPACE.ttl: -------------------------------------------------------------------------------- 1 | '' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_CARRIAGE_RETURN.nt: -------------------------------------------------------------------------------- 1 | "\r" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_CARRIAGE_RETURN.ttl: -------------------------------------------------------------------------------- 1 | ''' ''' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_CHARACTER_TABULATION.nt: -------------------------------------------------------------------------------- 1 | "\t" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_CHARACTER_TABULATION.ttl: -------------------------------------------------------------------------------- 1 | ' ' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_FORM_FEED.nt: -------------------------------------------------------------------------------- 1 | "\u000C" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_FORM_FEED.ttl: -------------------------------------------------------------------------------- 1 | ' ' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_LINE_FEED.nt: -------------------------------------------------------------------------------- 1 | "\n" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_LINE_FEED.ttl: -------------------------------------------------------------------------------- 1 | ''' 2 | ''' . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_REVERSE_SOLIDUS.nt: -------------------------------------------------------------------------------- 1 | "\\" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_REVERSE_SOLIDUS.ttl: -------------------------------------------------------------------------------- 1 | '\\' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_escaped_BACKSPACE.ttl: -------------------------------------------------------------------------------- 1 | '\b' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_escaped_CARRIAGE_RETURN.ttl: -------------------------------------------------------------------------------- 1 | '\r' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_escaped_CHARACTER_TABULATION.ttl: -------------------------------------------------------------------------------- 1 | '\t' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_escaped_FORM_FEED.ttl: -------------------------------------------------------------------------------- 1 | '\f' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_escaped_LINE_FEED.ttl: -------------------------------------------------------------------------------- 1 | '\n' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_numeric_escape4.nt: -------------------------------------------------------------------------------- 1 | "o" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_numeric_escape4.ttl: -------------------------------------------------------------------------------- 1 | '\u006F' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/literal_with_numeric_escape8.ttl: -------------------------------------------------------------------------------- 1 | '\U0000006F' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localName_with_leading_digit.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localName_with_leading_digit.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:0 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localName_with_leading_underscore.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localName_with_leading_underscore.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:_ . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localName_with_nfc_PN_CHARS_BASE_character_boundaries.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:AZazÀÖØöø˿ͰͽͿ῿‌‍⁰↏Ⰰ⿯、퟿﨎﷏ﷰ￯𐀀󯿽 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localName_with_non_leading_extras.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localName_with_non_leading_extras.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:a·̀ͯ‿.⁀ . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localname_with_COLON.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/localname_with_COLON.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:s: . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/negative_numeric.nt: -------------------------------------------------------------------------------- 1 | "-1"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/negative_numeric.ttl: -------------------------------------------------------------------------------- 1 | -1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/nested_blankNodePropertyLists.ttl: -------------------------------------------------------------------------------- 1 | [ [ ] ; ]. 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/nested_collection.ttl: -------------------------------------------------------------------------------- 1 | ((1)) . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/number_sign_following_PNAME_NS.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/number_sign_following_PNAME_NS.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:\#numbersign 3 | . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/number_sign_following_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/number_sign_following_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:o\#numbersign 3 | . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/numeric_with_leading_0.nt: -------------------------------------------------------------------------------- 1 | "01"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/numeric_with_leading_0.ttl: -------------------------------------------------------------------------------- 1 | 01 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/objectList_with_two_objects.nt: -------------------------------------------------------------------------------- 1 | . 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/objectList_with_two_objects.ttl: -------------------------------------------------------------------------------- 1 | , . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/old_style_base.ttl: -------------------------------------------------------------------------------- 1 | @base . 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/old_style_prefix.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:s . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/percent_escaped_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/percent_escaped_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:%25 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/positive_numeric.nt: -------------------------------------------------------------------------------- 1 | "+1"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/positive_numeric.ttl: -------------------------------------------------------------------------------- 1 | +1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/predicateObjectList_with_two_objectLists.ttl: -------------------------------------------------------------------------------- 1 | ; . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/prefix_only_IRI.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p: . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/prefix_reassigned_and_used.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/prefix_reassigned_and_used.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | @prefix p: . 3 | p:s . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/prefix_with_non_leading_extras.ttl: -------------------------------------------------------------------------------- 1 | @prefix a·̀ͯ‿.⁀: . 2 | a·̀ͯ‿.⁀:s . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/prefixed_IRI_object.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/prefixed_IRI_predicate.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:p . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/prefixed_name_datatype.ttl: -------------------------------------------------------------------------------- 1 | @prefix xsd: . 2 | "1"^^xsd:integer . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/repeated_semis_at_end.ttl: -------------------------------------------------------------------------------- 1 | ;; . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/repeated_semis_not_at_end.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/repeated_semis_not_at_end.ttl: -------------------------------------------------------------------------------- 1 | ;; . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/reserved_escaped_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/reserved_escaped_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:\_\~\.\-\!\$\&\'\(\)\*\+\,\;\=\/\?\#\@\%00 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/sole_blankNodePropertyList.ttl: -------------------------------------------------------------------------------- 1 | [ ] . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-eval-bad-04.ttl: -------------------------------------------------------------------------------- 1 | # Bad IRI 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-eval-struct-01.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-eval-struct-01.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-01.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : <#> . 2 | [] :x :y . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-03.ttl: -------------------------------------------------------------------------------- 1 | # Test , operator 2 | @prefix : . 3 | :a :b :c, 4 | :d, 5 | :e . 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-04.ttl: -------------------------------------------------------------------------------- 1 | # Test ; operator 2 | @prefix : . 3 | :a :b :c ; 4 | :d :e ; 5 | :f :g . 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-05.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | _:genid2 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-05.ttl: -------------------------------------------------------------------------------- 1 | # Test empty [] operator; not allowed as predicate 2 | @prefix : . 3 | [] :a :b . 4 | :c :d [] . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-06.ttl: -------------------------------------------------------------------------------- 1 | # Test non empty [] operator; not allowed as predicate 2 | @prefix : . 3 | [ :a :b ] :c :d . 4 | :e :f [ :g :h ] . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-07.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-07.ttl: -------------------------------------------------------------------------------- 1 | # 'a' only allowed as a predicate 2 | @prefix : . 3 | :a a :b . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-08.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( "apple" "banana" ) . 3 | 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-09.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-09.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( ) . 3 | 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-14.nt: -------------------------------------------------------------------------------- 1 | _:genid1 _:genid2 . 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-14.ttl: -------------------------------------------------------------------------------- 1 | # Test for : allowed 2 | @prefix : . 3 | 4 | [] : [] . 5 | 6 | : : : . 7 | 8 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-15.nt: -------------------------------------------------------------------------------- 1 | "a long\n\tliteral\nwith\nnewlines" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-15.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal 2 | @prefix : . 3 | :a :b """a long 4 | literal 5 | with 6 | newlines""" . 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-17.nt: -------------------------------------------------------------------------------- 1 | "1.0"^^ . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-17.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :a :b 1.0 . 4 | 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-18.nt: -------------------------------------------------------------------------------- 1 | "" . 2 | "" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-18.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :a :b "" . 4 | 5 | :c :d """""" . 6 | 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-19.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b 1.0 . 3 | :c :d 1 . 4 | :e :f 1.0e0 . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-20.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b -1.0 . 3 | :c :d -1 . 4 | :e :f -1.0e0 . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-21.nt: -------------------------------------------------------------------------------- 1 | "John said: \"Hello World!\"" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-21.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal 2 | @prefix : . 3 | :a :b """John said: "Hello World!\"""" . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-22.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b true . 3 | :c :d false . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-24.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-24.ttl: -------------------------------------------------------------------------------- 1 | # comment line with no final newline test 2 | @prefix : . 3 | :a :b :c . 4 | #foo 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-25.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-subm-25.ttl: -------------------------------------------------------------------------------- 1 | @prefix foo: . 2 | @prefix foo: . 3 | 4 | foo:blah foo:blah foo:blah . 5 | 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-base-01.ttl: -------------------------------------------------------------------------------- 1 | # @base without URI. 2 | @base . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-base-02.ttl: -------------------------------------------------------------------------------- 1 | # @base in wrong case. 2 | @BASE . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-base-03.ttl: -------------------------------------------------------------------------------- 1 | # FULL STOP used after SPARQL BASE 2 | BASE . 3 |

. 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-blank-label-dot-end.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | _:b1. :p :o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-esc-01.ttl: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "a\zb" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-esc-02.ttl: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\uWXYZ" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-esc-03.ttl: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\U0000WXYZ" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-esc-04.ttl: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\U0000WXYZ" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-kw-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s A :C . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-kw-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | a :p :o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-kw-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p a . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-kw-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | true :p :o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-kw-05.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s true :o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-lang-01.ttl: -------------------------------------------------------------------------------- 1 | # Bad lang tag 2 | "string"@1 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-ln-dash-start.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :-o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-ln-escape-start.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :%2o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-ln-escape.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :o%2 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-missing-ns-dot-end.ttl: -------------------------------------------------------------------------------- 1 | valid:s valid:p invalid.:o . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-missing-ns-dot-start.ttl: -------------------------------------------------------------------------------- 1 | .undefined:s .undefined:p .undefined:o . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-01.ttl: -------------------------------------------------------------------------------- 1 | # {} fomulae not in Turtle 2 | @prefix : . 3 | 4 | { :a :q :c . } :p :z . 5 | 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-02.ttl: -------------------------------------------------------------------------------- 1 | # = is not Turtle 2 | @prefix : . 3 | 4 | :a = :b . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-05.ttl: -------------------------------------------------------------------------------- 1 | # N3 is...of 2 | @prefix : . 3 | 4 | :z is :p of :x . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-06.ttl: -------------------------------------------------------------------------------- 1 | # = is not Turtle 2 | @prefix : . 3 | 4 | :a.:b.:c . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-07.ttl: -------------------------------------------------------------------------------- 1 | # @keywords is not Turtle 2 | @keywords a . 3 | x a Item . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-08.ttl: -------------------------------------------------------------------------------- 1 | # @keywords is not Turtle 2 | @keywords a . 3 | x a Item . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-09.ttl: -------------------------------------------------------------------------------- 1 | # => is not Turtle 2 | @prefix : . 3 | :s => :o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-10.ttl: -------------------------------------------------------------------------------- 1 | # <= is not Turtle 2 | @prefix : . 3 | :s <= :o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-11.ttl: -------------------------------------------------------------------------------- 1 | # @forSome is not Turtle 2 | @prefix : . 3 | @forSome :x . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-12.ttl: -------------------------------------------------------------------------------- 1 | # @forAll is not Turtle 2 | @prefix : . 3 | @forAll :x . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-n3-extras-13.ttl: -------------------------------------------------------------------------------- 1 | # @keywords is not Turtle 2 | @keywords . 3 | x @a Item . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-ns-dot-end.ttl: -------------------------------------------------------------------------------- 1 | @prefix eg. : . 2 | eg.:s eg.:p eg.:o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-ns-dot-start.ttl: -------------------------------------------------------------------------------- 1 | @prefix .eg : . 2 | .eg:s .eg:p .eg:o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-num-01.ttl: -------------------------------------------------------------------------------- 1 | 123.abc . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-num-02.ttl: -------------------------------------------------------------------------------- 1 | 123e . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-num-03.ttl: -------------------------------------------------------------------------------- 1 | 123abc . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-num-04.ttl: -------------------------------------------------------------------------------- 1 | 0x123 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-num-05.ttl: -------------------------------------------------------------------------------- 1 | +-1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-number-dot-in-anon.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :s 4 | :p [ 5 | :p1 27. 6 | ] . 7 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-pname-01.ttl: -------------------------------------------------------------------------------- 1 | # ~ must be escaped. 2 | @prefix : . 3 | :a~b :p :o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-pname-02.ttl: -------------------------------------------------------------------------------- 1 | # Bad %-sequence 2 | @prefix : . 3 | :a%2 :p :o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-pname-03.ttl: -------------------------------------------------------------------------------- 1 | # No \u (x39 is "9") 2 | @prefix : . 3 | :a\u0039 :p :o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-prefix-01.ttl: -------------------------------------------------------------------------------- 1 | # No prefix 2 | :s "x" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-prefix-02.ttl: -------------------------------------------------------------------------------- 1 | # No prefix 2 | @prefix rdf: . 3 | rdf:type :C . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-prefix-03.ttl: -------------------------------------------------------------------------------- 1 | # @prefix without URI. 2 | @prefix ex: . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-prefix-04.ttl: -------------------------------------------------------------------------------- 1 | # @prefix without prefix name . 2 | @prefix . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-prefix-05.ttl: -------------------------------------------------------------------------------- 1 | # @prefix without : 2 | @prefix x . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-string-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p "abc' . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-string-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p 'abc" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-string-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p '''abc' . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-string-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p """abc''' . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-string-05.ttl: -------------------------------------------------------------------------------- 1 | # Long literal with missing end 2 | @prefix : . 3 | :s :p """abc 4 | def 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-string-06.ttl: -------------------------------------------------------------------------------- 1 | # Long literal with 4" 2 | @prefix : . 3 | :s :p """abc""""@en . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-string-07.ttl: -------------------------------------------------------------------------------- 1 | # Long literal with 4' 2 | @prefix : . 3 | :s :p '''abc''''@en . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-02.ttl: -------------------------------------------------------------------------------- 1 | # Turtle is not N3 2 | = . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-04.ttl: -------------------------------------------------------------------------------- 1 | # Turtle does not allow literals-as-subjects 2 | "hello" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-05.ttl: -------------------------------------------------------------------------------- 1 | # Turtle does not allow literals-as-predicates 2 | "hello" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-06.ttl: -------------------------------------------------------------------------------- 1 | # Turtle does not allow bnodes-as-predicates 2 | [] . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-07.ttl: -------------------------------------------------------------------------------- 1 | # Turtle does not allow bnodes-as-predicates 2 | _:p . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-08.ttl: -------------------------------------------------------------------------------- 1 | # No DOT 2 | 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-09.ttl: -------------------------------------------------------------------------------- 1 | # Too many DOT 2 | . . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-11.ttl: -------------------------------------------------------------------------------- 1 | # Trailing ; 2 | ; 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-12.ttl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-13.ttl: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-14.ttl: -------------------------------------------------------------------------------- 1 | # Literal as subject 2 | "abc" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-15.ttl: -------------------------------------------------------------------------------- 1 | # Literal as predicate 2 | "abc" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-16.ttl: -------------------------------------------------------------------------------- 1 | # BNode as predicate 2 | [] . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bad-struct-17.ttl: -------------------------------------------------------------------------------- 1 | # BNode as predicate 2 | _:a . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-base-01.ttl: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-base-02.ttl: -------------------------------------------------------------------------------- 1 | BASE 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-base-03.ttl: -------------------------------------------------------------------------------- 1 | @base . 2 |

. 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-base-04.ttl: -------------------------------------------------------------------------------- 1 | base 2 |

. 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | [] :p :o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p [] . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p [ :q :o ] . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p [ :q1 :o1 ; :q2 :o2 ] . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-05.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | [ :q1 :o1 ; :q2 :o2 ] :p :o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-06.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | _:a :p :o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-07.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p _:a . 3 | _:a :p :o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-08.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | [ :p :o ] . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-09.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | [ :p :o1,:2 ] . 3 | :s :p :o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-bnode-10.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :s1 :p :o . 4 | [ :p1 :o1 ; :p2 :o2 ] . 5 | :s2 :p :o . 6 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-datatypes-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix xsd: . 2 |

"123"^^xsd:byte . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-file-01.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnstonskj/rust-rdftk/d7963079370c006c633d5114ecddcc989da0b9ae/rdftk_io/tests/w3c/turtle/turtle-syntax-file-01.ttl -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-file-02.ttl: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-file-03.ttl: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-kw-01.ttl: -------------------------------------------------------------------------------- 1 |

true . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-kw-02.ttl: -------------------------------------------------------------------------------- 1 |

false . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-kw-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s a :C . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-lists-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p () . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-lists-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p (1 "2" :o) . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-lists-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | (1) :p (1) . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-lists-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | (()) :p (()) . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-lists-05.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | (1 2 (1 2)) :p (( "a") "b" :o) . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-ln-dots.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s.1 :p.1 :o.1 . 3 | :s..2 :p..2 :o..2. 4 | :3.s :3.p :3. 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-ns-dots.ttl: -------------------------------------------------------------------------------- 1 | @prefix e.g: . 2 | e.g:s e.g:p e.g:o . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-01.ttl: -------------------------------------------------------------------------------- 1 |

123 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-02.ttl: -------------------------------------------------------------------------------- 1 |

-123 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-03.ttl: -------------------------------------------------------------------------------- 1 |

+123 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-04.ttl: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 |

123.0 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-05.ttl: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 |

.1 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-06.ttl: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 |

-123.0 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-07.ttl: -------------------------------------------------------------------------------- 1 | # This is a decimal. 2 |

+123.0 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-08.ttl: -------------------------------------------------------------------------------- 1 | # This is an integer 2 |

123. 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-09.ttl: -------------------------------------------------------------------------------- 1 |

123.0e1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-10.ttl: -------------------------------------------------------------------------------- 1 |

-123e-1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-number-11.ttl: -------------------------------------------------------------------------------- 1 |

123.E+1 . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-pname-esc-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :\~\.\-\!\$\&\'\(\)\*\+\,\;\=\/\?\#\@\_\%AA . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-pname-esc-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :0123\~\.\-\!\$\&\'\(\)\*\+\,\;\=\/\?\#\@\_\%AA123 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-pname-esc-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :xyz\~ :abc\.: : . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-prefix-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-prefix-02.ttl: -------------------------------------------------------------------------------- 1 | PreFIX : 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-prefix-03.ttl: -------------------------------------------------------------------------------- 1 | PREFIX : 2 | :s :p :123 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-prefix-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :%20 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-prefix-05.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | : : : . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-prefix-07.ttl: -------------------------------------------------------------------------------- 1 | # dash is a legal pname character 2 | @prefix x: . 3 | x:a-b-c x:p x:o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-prefix-08.ttl: -------------------------------------------------------------------------------- 1 | # underscore is a legal pname character 2 | @prefix x: . 3 | x:_ x:p_1 x:o . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-prefix-09.ttl: -------------------------------------------------------------------------------- 1 | # percents 2 | @prefix : . 3 | @prefix x: . 4 | :a%3E x:%25 :a%3Eb . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-str-esc-01.ttl: -------------------------------------------------------------------------------- 1 | "a\n" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-str-esc-02.ttl: -------------------------------------------------------------------------------- 1 | "a\u0020b" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-str-esc-03.ttl: -------------------------------------------------------------------------------- 1 | "a\U00000020b" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-01.ttl: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-02.ttl: -------------------------------------------------------------------------------- 1 | "string"@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-03.ttl: -------------------------------------------------------------------------------- 1 | "string"@en-uk . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-04.ttl: -------------------------------------------------------------------------------- 1 | 'string' . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-05.ttl: -------------------------------------------------------------------------------- 1 | 'string'@en . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-06.ttl: -------------------------------------------------------------------------------- 1 | 'string'@en-uk . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-07.ttl: -------------------------------------------------------------------------------- 1 | """abc""def''ghi""" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-08.ttl: -------------------------------------------------------------------------------- 1 | """abc 2 | def""" . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-09.ttl: -------------------------------------------------------------------------------- 1 | '''abc 2 | def''' . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-10.ttl: -------------------------------------------------------------------------------- 1 | """abc 2 | def"""@en . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-string-11.ttl: -------------------------------------------------------------------------------- 1 | '''abc 2 | def'''@en . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-struct-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :o1 , :o2 . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-struct-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p1 :o1 ; 3 | :p2 :o2 . 4 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-struct-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p1 :o1 ; 3 | :p2 :o2 ; 4 | . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-struct-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p1 :o1 ;; 3 | :p2 :o2 4 | . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-struct-05.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p1 :o1 ; 3 | :p2 :o2 ;; 4 | . 5 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-uri-01.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/turtle-syntax-uri-02.ttl: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/underscore_in_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/turtle/underscore_in_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:s_ . 3 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-001.nt: -------------------------------------------------------------------------------- 1 | # Empty - no triples are generated 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-002.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-003.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-004.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-005.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-006.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-007.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-008.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-009.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-010.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-011.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-012.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-013.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-014.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-015.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-016.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-017.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-018.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-019.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-020.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-021.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-022.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-023.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-024.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-025.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-026.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-027.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-028.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-029.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-030.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-031.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-032.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-033.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-034.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-035.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-036.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/test-037.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/warn-001.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/warn-002.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/w3c/xml/rdfms-rdf-names-use/warn-003.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /rdftk_io/tests/write_json_ld.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /rdftk_query/src/sparql/parser/.#query.rs: -------------------------------------------------------------------------------- 1 | johnstonskj@147dda5ebf60.ant.amazon.com.10776 --------------------------------------------------------------------------------