├── .gitignore ├── .travis.yml ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── INSTALL.html ├── LICENSE-2.0.txt ├── LICENSE.html ├── Makefile.am ├── NEWS.html ├── NOTICE ├── README-cmake.md ├── README.html ├── RELEASE.html ├── TODO.html ├── UPGRADING.html ├── appveyor.yml ├── autogen.sh ├── build ├── .gitignore └── pkg.m4 ├── configure.ac ├── data ├── Makefile.am └── dc.rdf ├── docs ├── .gitignore ├── Makefile.am ├── libraptor2.3 ├── raptor-changes.tsv ├── raptor-docs.xml ├── raptor-parsers.xml ├── raptor-serializers.xml ├── raptor-tutorial-intro.xml ├── raptor-tutorial-parsing.xml ├── raptor-tutorial-querying-functionality.xml ├── raptor-tutorial-serializing.xml ├── raptor1-eol.html ├── raptor2-overrides.txt ├── raptor2-sections.txt ├── raptor2.types ├── tmpl │ ├── .gitignore │ ├── section-avltree.sgml │ ├── section-constants.sgml │ ├── section-general.sgml │ ├── section-iostream.sgml │ ├── section-locator.sgml │ ├── section-memory.sgml │ ├── section-option.sgml │ ├── section-parser.sgml │ ├── section-sax2.sgml │ ├── section-sequence.sgml │ ├── section-serializer.sgml │ ├── section-stringbuffer.sgml │ ├── section-triples.sgml │ ├── section-unicode.sgml │ ├── section-unused.sgml │ ├── section-uri.sgml │ ├── section-world.sgml │ ├── section-www.sgml │ ├── section-xml-namespace.sgml │ ├── section-xml-qname.sgml │ └── section-xml.sgml └── version.xml.in ├── examples ├── .gitignore ├── Makefile.am ├── grapper-ui.xml ├── grapper.c ├── raptor_abort.c ├── rdfcat.c ├── rdfcount.c ├── rdfguess.c ├── rdfprint.c └── rdfserialize.c ├── librdfa ├── .gitignore ├── Makefile.am ├── config.h ├── context.c ├── curie.c ├── iri.c ├── language.c ├── lists.c ├── namespace.c ├── rdfa.c ├── rdfa.h ├── rdfa_utils.c ├── rdfa_utils.h ├── strtok_r.c ├── strtok_r.h ├── subject.c └── triple.c ├── raptor2.pc.in ├── raptor2.rdf.in ├── raptor2.spec.in ├── scripts ├── .gitignore ├── Makefile.am ├── build-formats.c ├── fix-bison.pl ├── fix-bison.py ├── fix-flex.pl ├── fix-flex.py ├── fix-groff-xhtml.pl ├── fix-gtkdoc-header.pl ├── install-bison3.sh ├── process-changes.pl └── rdfcompare ├── src ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── ntriples_parse.c ├── parsedate.y ├── raptor.h ├── raptor2.h.in ├── raptor_abbrev.c ├── raptor_avltree.c ├── raptor_concepts.c ├── raptor_config_cmake.h.in ├── raptor_escaped.c ├── raptor_general.c ├── raptor_grddl.c ├── raptor_guess.c ├── raptor_internal.h ├── raptor_iostream.c ├── raptor_json.c ├── raptor_json_writer.c ├── raptor_librdfa.c ├── raptor_libxml.c ├── raptor_locator.c ├── raptor_log.c ├── raptor_memstr.c ├── raptor_namespace.c ├── raptor_nfc_icu.c ├── raptor_nfc_test.c ├── raptor_ntriples.c ├── raptor_option.c ├── raptor_parse.c ├── raptor_permute_test.c ├── raptor_qname.c ├── raptor_rdfxml.c ├── raptor_rfc2396.c ├── raptor_rss.c ├── raptor_rss.h ├── raptor_rss_common.c ├── raptor_sax2.c ├── raptor_sequence.c ├── raptor_serialize.c ├── raptor_serialize_dot.c ├── raptor_serialize_html.c ├── raptor_serialize_json.c ├── raptor_serialize_ntriples.c ├── raptor_serialize_rdfxml.c ├── raptor_serialize_rdfxmla.c ├── raptor_serialize_rss.c ├── raptor_serialize_turtle.c ├── raptor_set.c ├── raptor_statement.c ├── raptor_stringbuffer.c ├── raptor_syntax_description.c ├── raptor_term.c ├── raptor_turtle_writer.c ├── raptor_unicode.c ├── raptor_uri.c ├── raptor_win32.c ├── raptor_www.c ├── raptor_www_curl.c ├── raptor_www_libfetch.c ├── raptor_www_libxml.c ├── raptor_www_test.c ├── raptor_xml.c ├── raptor_xml_writer.c ├── snprintf.c ├── sort_r.c ├── sort_r.h ├── ssort.h ├── strcasecmp.c ├── turtle_common.c ├── turtle_common.h ├── turtle_lexer.l └── turtle_parser.y ├── tests ├── .gitignore ├── Makefile.am ├── bugs │ ├── .gitignore │ ├── Makefile.am │ ├── issue70a.c │ └── issue70b.c ├── empty.c ├── feeds │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── atom.rnc │ ├── atom.rng │ ├── test01-result.atom │ ├── test01-result.ttl │ ├── test01.rdf │ ├── test02-result.atom │ ├── test02-result.ttl │ ├── test02.rdf │ ├── test03-result.atom │ ├── test03-result.ttl │ ├── test03.rdf │ ├── test04-result.ttl │ ├── test04.atom │ ├── test05-result.ttl │ └── test05.atom ├── grddl │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── data-01.nt │ ├── data-01.rdf │ ├── data-02.rdf │ ├── test-01.html │ └── test-01.out ├── json │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── bad-00.json │ ├── bad-01.json │ ├── bad-02.json │ ├── bad-03.json │ ├── bad-04.json │ ├── bad-05.json │ ├── bad-06.json │ ├── bad-07.json │ ├── bad-08.json │ ├── bad-09.json │ ├── bad-10.json │ ├── bad-11.json │ ├── bad-12.json │ ├── bad-13.json │ ├── example1.json │ ├── example1.nt │ ├── example2.json │ ├── example2.nt │ ├── example3.json │ ├── example3.nt │ ├── example4.json │ └── example4.nt ├── mkr │ ├── Makefile.am │ ├── README.txt │ ├── rdf-schema.mkr │ ├── rdf-schema.ttl │ ├── rdfq-results.mkr │ ├── rdfq-results.ttl │ ├── rdfs-namespace.mkr │ ├── rdfs-namespace.ttl │ ├── test-07.mkr │ ├── test-07.ttl │ ├── test-08.mkr │ ├── test-08.ttl │ ├── test-16a.mkr │ ├── test-16a.ttl │ ├── test-28.mkr │ ├── test-28.ttl │ ├── test-31.mkr │ ├── test-31.ttl │ ├── test-32.mkr │ ├── test-32.ttl │ ├── test-34.mkr │ └── test-34.ttl ├── nquads-2013 │ ├── Makefile.am │ ├── 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 ├── ntriples-2013 │ ├── LITERAL.nt │ ├── LITERAL_all_controls.nt │ ├── LITERAL_all_punctuation.nt │ ├── LITERAL_ascii_boundaries.nt │ ├── LITERAL_with_2_dquotes.nt │ ├── LITERAL_with_2_squotes.nt │ ├── LITERAL_with_UTF8_boundaries.nt │ ├── LITERAL_with_dquote.nt │ ├── LITERAL_with_squote.nt │ ├── Makefile.am │ ├── README │ ├── comment_following_triple.nt │ ├── langtagged_string.nt │ ├── lantag_with_subtag.nt │ ├── literal_false.nt │ ├── literal_true.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_numeric_escape4.nt │ ├── literal_with_numeric_escape8.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 ├── ntriples │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── all-escape.nt │ ├── all-escape.rdf │ ├── bad-00.nt │ ├── bad-02.nt │ ├── bad-03.nt │ ├── bad-04.nt │ ├── bad-05.nt │ ├── bad-06.nt │ ├── bad-07.nt │ ├── bug-481.nq │ ├── bug-481.out │ ├── bug-562.nt │ ├── bug-562.out │ ├── bug-574.nt │ ├── bug-574.out │ ├── bug-577.nt │ ├── bug-577.out │ ├── issue77.nt │ ├── issue77.out │ ├── nt2013-ex1.nt │ ├── nt2013-ex1.out │ ├── nt2013-ex2.nt │ ├── nt2013-ex2.out │ ├── nt2013-ex3.nt │ ├── nt2013-ex3.out │ ├── nt2013-ex4.nt │ ├── nt2013-ex4.out │ ├── test.nt │ ├── test.out │ ├── testnq-1.nq │ ├── testnq-1.out │ ├── testnq-optional-context.nq │ └── testnq-optional-context.out ├── rdfa │ ├── 0001.out │ ├── 0001.xml │ ├── 0006.out │ ├── 0006.xml │ ├── 0007.out │ ├── 0007.xml │ ├── 0008.out │ ├── 0008.xml │ ├── 0009.out │ ├── 0009.xml │ ├── 0010.out │ ├── 0010.xml │ ├── 0012.out │ ├── 0012.xml │ ├── 0013.out │ ├── 0013.xml │ ├── 0014.out │ ├── 0014.xml │ ├── 0015.out │ ├── 0015.xml │ ├── 0017.out │ ├── 0017.xml │ ├── 0018.out │ ├── 0018.xml │ ├── 0019.out │ ├── 0019.xml │ ├── 0020.out │ ├── 0020.xml │ ├── 0021.out │ ├── 0021.xml │ ├── 0023.out │ ├── 0023.xml │ ├── 0025.out │ ├── 0025.xml │ ├── 0026.out │ ├── 0026.xml │ ├── 0027.out │ ├── 0027.xml │ ├── 0029.out │ ├── 0029.xml │ ├── 0030.out │ ├── 0030.xml │ ├── 0031.out │ ├── 0031.xml │ ├── 0032.out │ ├── 0032.xml │ ├── 0033.out │ ├── 0033.xml │ ├── 0034.out │ ├── 0034.xml │ ├── 0035.out │ ├── 0035.xml │ ├── 0036.out │ ├── 0036.xml │ ├── 0037.out │ ├── 0037.xml │ ├── 0038.out │ ├── 0038.xml │ ├── 0039.out │ ├── 0039.xml │ ├── 0040.out │ ├── 0040.xml │ ├── 0041.out │ ├── 0041.xml │ ├── 0042.out │ ├── 0042.xml │ ├── 0046.out │ ├── 0046.xml │ ├── 0047.out │ ├── 0047.xml │ ├── 0048.out │ ├── 0048.xml │ ├── 0049.out │ ├── 0049.xml │ ├── 0050.out │ ├── 0050.xml │ ├── 0051.out │ ├── 0051.xml │ ├── 0052.out │ ├── 0052.xml │ ├── 0053.out │ ├── 0053.xml │ ├── 0054.out │ ├── 0054.xml │ ├── 0055.out │ ├── 0055.xml │ ├── 0056.out │ ├── 0056.xml │ ├── 0057.out │ ├── 0057.xml │ ├── 0058.out │ ├── 0058.xml │ ├── 0059.out │ ├── 0059.xml │ ├── 0060.out │ ├── 0060.xml │ ├── 0061.out │ ├── 0061.xml │ ├── 0062.out │ ├── 0062.xml │ ├── 0063.out │ ├── 0063.xml │ ├── 0064.out │ ├── 0064.xml │ ├── 0065.out │ ├── 0065.xml │ ├── 0066.out │ ├── 0066.xml │ ├── 0067.out │ ├── 0067.xml │ ├── 0068.out │ ├── 0068.xml │ ├── 0069.out │ ├── 0069.xml │ ├── 0070.out │ ├── 0070.xml │ ├── 0071.out │ ├── 0071.xml │ ├── 0072.out │ ├── 0072.xml │ ├── 0073.out │ ├── 0073.xml │ ├── 0074.out │ ├── 0074.xml │ ├── 0075.out │ ├── 0075.xml │ ├── 0076.out │ ├── 0076.xml │ ├── 0077.out │ ├── 0077.xml │ ├── 0078.out │ ├── 0078.xml │ ├── 0079.out │ ├── 0079.xml │ ├── 0080.out │ ├── 0080.xml │ ├── 0081.out │ ├── 0081.xml │ ├── 0082.out │ ├── 0082.xml │ ├── 0083.out │ ├── 0083.xml │ ├── 0084.out │ ├── 0084.xml │ ├── 0085.out │ ├── 0085.xml │ ├── 0087.out │ ├── 0087.xml │ ├── 0088.out │ ├── 0088.xml │ ├── 0089.out │ ├── 0089.xml │ ├── 0090.out │ ├── 0090.xml │ ├── 0091.out │ ├── 0091.xml │ ├── 0093.out │ ├── 0093.xml │ ├── 0099.out │ ├── 0099.xml │ ├── 0104.out │ ├── 0104.xml │ ├── 0106.out │ ├── 0106.xml │ ├── 0107.out │ ├── 0107.xml │ ├── 0108.out │ ├── 0108.xml │ ├── 0109.out │ ├── 0109.xml │ ├── 0110.out │ ├── 0110.xml │ ├── 0111.out │ ├── 0111.xml │ ├── 0112.out │ ├── 0112.xml │ ├── 0113.out │ ├── 0113.xml │ ├── 0114.out │ ├── 0114.xml │ ├── 0115.out │ ├── 0115.xml │ ├── 0117.out │ ├── 0117.xml │ ├── 0118.out │ ├── 0118.xml │ ├── 0119.out │ ├── 0119.xml │ ├── 0120.out │ ├── 0120.xml │ ├── 0121.out │ ├── 0121.xml │ ├── 0122.out │ ├── 0122.xml │ ├── 0126.out │ ├── 0126.xml │ ├── 0131.out │ ├── 0131.xml │ ├── 0134.out │ ├── 0134.xml │ ├── 0140.out │ ├── 0140.xml │ ├── 0147.out │ ├── 0147.xml │ ├── 0172.out │ ├── 0172.xml │ ├── 0173.out │ ├── 0173.xml │ ├── 0174.out │ ├── 0174.xml │ ├── 0181.out │ ├── 0181.xml │ ├── 0197.out │ ├── 0197.xml │ ├── 0201.out │ ├── 0201.xml │ ├── 0202.out │ ├── 0202.xml │ ├── 0203.out │ ├── 0203.xml │ ├── 0207.out │ ├── 0207.xml │ ├── 0209.out │ ├── 0209.xml │ ├── 0210.out │ ├── 0210.xml │ ├── 0211.out │ ├── 0211.xml │ ├── 0212.out │ ├── 0212.xml │ ├── 0215.out │ ├── 0215.xml │ ├── 0258.out │ ├── 0258.xml │ ├── 0262.out │ ├── 0262.xml │ ├── 0291.out │ ├── 0291.xml │ ├── 0292.out │ ├── 0292.xml │ ├── 0294.out │ ├── 0294.xml │ ├── 0304.out │ ├── 0304.xml │ ├── CMakeLists.txt │ └── Makefile.am ├── rdfa11 │ ├── 0001.out │ ├── 0001.xml │ ├── 0006.out │ ├── 0006.xml │ ├── 0007.out │ ├── 0007.xml │ ├── 0008.out │ ├── 0008.xml │ ├── 0009.out │ ├── 0009.xml │ ├── 0010.out │ ├── 0010.xml │ ├── 0012.out │ ├── 0012.xml │ ├── 0013.out │ ├── 0013.xml │ ├── 0014.out │ ├── 0014.xml │ ├── 0015.out │ ├── 0015.xml │ ├── 0017.out │ ├── 0017.xml │ ├── 0018.out │ ├── 0018.xml │ ├── 0019.out │ ├── 0019.xml │ ├── 0020.out │ ├── 0020.xml │ ├── 0021.out │ ├── 0021.xml │ ├── 0023.out │ ├── 0023.xml │ ├── 0025.out │ ├── 0025.xml │ ├── 0026.out │ ├── 0026.xml │ ├── 0027.out │ ├── 0027.xml │ ├── 0029.out │ ├── 0029.xml │ ├── 0030.out │ ├── 0030.xml │ ├── 0031.out │ ├── 0031.xml │ ├── 0032.out │ ├── 0032.xml │ ├── 0033.out │ ├── 0033.xml │ ├── 0034.out │ ├── 0034.xml │ ├── 0035.out │ ├── 0035.xml │ ├── 0036.out │ ├── 0036.xml │ ├── 0037.out │ ├── 0037.xml │ ├── 0038.out │ ├── 0038.xml │ ├── 0039.out │ ├── 0039.xml │ ├── 0041.out │ ├── 0041.xml │ ├── 0048.out │ ├── 0048.xml │ ├── 0049.out │ ├── 0049.xml │ ├── 0050.out │ ├── 0050.xml │ ├── 0051.out │ ├── 0051.xml │ ├── 0052.out │ ├── 0052.xml │ ├── 0053.out │ ├── 0053.xml │ ├── 0054.out │ ├── 0054.xml │ ├── 0055.out │ ├── 0055.xml │ ├── 0056.out │ ├── 0056.xml │ ├── 0057.out │ ├── 0057.xml │ ├── 0059.out │ ├── 0059.xml │ ├── 0060.out │ ├── 0060.xml │ ├── 0061.out │ ├── 0061.xml │ ├── 0062.out │ ├── 0062.xml │ ├── 0063.out │ ├── 0063.xml │ ├── 0064.out │ ├── 0064.xml │ ├── 0065.out │ ├── 0065.xml │ ├── 0066.out │ ├── 0066.xml │ ├── 0067.out │ ├── 0067.xml │ ├── 0068.out │ ├── 0068.xml │ ├── 0069.out │ ├── 0069.xml │ ├── 0070.out │ ├── 0070.xml │ ├── 0071.out │ ├── 0071.xml │ ├── 0072.out │ ├── 0072.xml │ ├── 0073.out │ ├── 0073.xml │ ├── 0074.out │ ├── 0074.xml │ ├── 0075.out │ ├── 0075.xml │ ├── 0076.out │ ├── 0076.xml │ ├── 0077.out │ ├── 0077.xml │ ├── 0079.out │ ├── 0079.xml │ ├── 0080.out │ ├── 0080.xml │ ├── 0083.out │ ├── 0083.xml │ ├── 0084.out │ ├── 0084.xml │ ├── 0085.out │ ├── 0085.xml │ ├── 0087.out │ ├── 0087.xml │ ├── 0088.out │ ├── 0088.xml │ ├── 0089.out │ ├── 0089.xml │ ├── 0091.out │ ├── 0091.xml │ ├── 0093.out │ ├── 0093.xml │ ├── 0099.out │ ├── 0099.xml │ ├── 0104.out │ ├── 0104.xml │ ├── 0106.out │ ├── 0106.xml │ ├── 0107.out │ ├── 0107.xml │ ├── 0108.out │ ├── 0108.xml │ ├── 0109.out │ ├── 0109.xml │ ├── 0110.out │ ├── 0110.xml │ ├── 0111.out │ ├── 0111.xml │ ├── 0112.out │ ├── 0112.xml │ ├── 0113.out │ ├── 0113.xml │ ├── 0114.out │ ├── 0114.xml │ ├── 0115.out │ ├── 0115.xml │ ├── 0117.out │ ├── 0117.xml │ ├── 0118.out │ ├── 0118.xml │ ├── 0119.out │ ├── 0119.xml │ ├── 0120.out │ ├── 0120.xml │ ├── 0121.out │ ├── 0121.xml │ ├── 0122.out │ ├── 0122.xml │ ├── 0126.out │ ├── 0126.xml │ ├── 0131.out │ ├── 0131.xml │ ├── 0134.out │ ├── 0134.xml │ ├── 0140.out │ ├── 0140.xml │ ├── 0147.out │ ├── 0147.xml │ ├── 0172.out │ ├── 0172.xml │ ├── 0173.out │ ├── 0173.xml │ ├── 0174.out │ ├── 0174.xml │ ├── 0175.out │ ├── 0175.xml │ ├── 0176.out │ ├── 0176.xml │ ├── 0177.out │ ├── 0177.xml │ ├── 0178.out │ ├── 0178.xml │ ├── 0179.out │ ├── 0179.xml │ ├── 0180.out │ ├── 0180.xml │ ├── 0181.out │ ├── 0181.xml │ ├── 0182.out │ ├── 0182.xml │ ├── 0183.out │ ├── 0183.xml │ ├── 0186.out │ ├── 0186.xml │ ├── 0187.out │ ├── 0187.xml │ ├── 0188.out │ ├── 0188.xml │ ├── 0189.out │ ├── 0189.xml │ ├── 0190.out │ ├── 0190.xml │ ├── 0196.out │ ├── 0196.xml │ ├── 0197.out │ ├── 0197.xml │ ├── 0198.out │ ├── 0198.xml │ ├── 0201.out │ ├── 0201.xml │ ├── 0202.out │ ├── 0202.xml │ ├── 0203.out │ ├── 0203.xml │ ├── 0206.out │ ├── 0206.xml │ ├── 0207.out │ ├── 0207.xml │ ├── 0213.out │ ├── 0213.xml │ ├── 0214.out │ ├── 0214.xml │ ├── 0216.out │ ├── 0216.xml │ ├── 0217.out │ ├── 0217.xml │ ├── 0218.out │ ├── 0218.xml │ ├── 0219.out │ ├── 0219.xml │ ├── 0220.out │ ├── 0220.xml │ ├── 0221.out │ ├── 0221.xml │ ├── 0222.out │ ├── 0222.xml │ ├── 0223.out │ ├── 0223.xml │ ├── 0224.out │ ├── 0224.xml │ ├── 0225.out │ ├── 0225.xml │ ├── 0226.out │ ├── 0226.xml │ ├── 0227.out │ ├── 0227.xml │ ├── 0228.out │ ├── 0228.xml │ ├── 0229.out │ ├── 0229.xml │ ├── 0230.out │ ├── 0230.xml │ ├── 0231.out │ ├── 0231.xml │ ├── 0232.out │ ├── 0232.xml │ ├── 0233.out │ ├── 0233.xml │ ├── 0234.out │ ├── 0234.xml │ ├── 0235.out │ ├── 0235.xml │ ├── 0236.out │ ├── 0236.xml │ ├── 0237.out │ ├── 0237.xml │ ├── 0238.out │ ├── 0238.xml │ ├── 0239.out │ ├── 0239.xml │ ├── 0246.out │ ├── 0246.xml │ ├── 0247.out │ ├── 0247.xml │ ├── 0248.out │ ├── 0248.xml │ ├── 0249.out │ ├── 0249.xml │ ├── 0250.out │ ├── 0250.xml │ ├── 0251.out │ ├── 0251.xml │ ├── 0252.out │ ├── 0252.xml │ ├── 0253.out │ ├── 0253.xml │ ├── 0254.out │ ├── 0254.xml │ ├── 0255.out │ ├── 0255.xml │ ├── 0256.out │ ├── 0256.xml │ ├── 0257.out │ ├── 0257.xml │ ├── 0258.out │ ├── 0258.xml │ ├── 0259.out │ ├── 0259.xml │ ├── 0260.out │ ├── 0260.xml │ ├── 0261.out │ ├── 0261.xml │ ├── 0262.out │ ├── 0262.xml │ ├── 0263.out │ ├── 0263.xml │ ├── 0264.out │ ├── 0264.xml │ ├── 0265.out │ ├── 0265.xml │ ├── 0266.out │ ├── 0266.xml │ ├── 0267.out │ ├── 0267.xml │ ├── 0268.out │ ├── 0268.xml │ ├── 0269.out │ ├── 0269.xml │ ├── 0271.out │ ├── 0271.xml │ ├── 0272.out │ ├── 0272.xml │ ├── 0273.out │ ├── 0273.xml │ ├── 0274.out │ ├── 0274.xml │ ├── 0275.out │ ├── 0275.xml │ ├── 0276.out │ ├── 0276.xml │ ├── 0277.out │ ├── 0277.xml │ ├── 0278.out │ ├── 0278.xml │ ├── 0279.out │ ├── 0279.xml │ ├── 0280.out │ ├── 0280.xml │ ├── 0281.out │ ├── 0281.xml │ ├── 0282.out │ ├── 0282.xml │ ├── 0283.out │ ├── 0283.xml │ ├── 0284.out │ ├── 0284.xml │ ├── 0285.out │ ├── 0285.xml │ ├── 0286.out │ ├── 0286.xml │ ├── 0287.out │ ├── 0287.xml │ ├── 0289.out │ ├── 0289.xml │ ├── 0290.out │ ├── 0290.xml │ ├── 0291.out │ ├── 0291.xml │ ├── 0292.out │ ├── 0292.xml │ ├── 0293.out │ ├── 0293.xml │ ├── 0295.out │ ├── 0295.xml │ ├── 0296.out │ ├── 0296.xml │ ├── 0297.out │ ├── 0297.xml │ ├── 0298.out │ ├── 0298.xml │ ├── 0299.out │ ├── 0299.xml │ ├── 0300.out │ ├── 0300.xml │ ├── 0301.out │ ├── 0301.xml │ ├── 0302.out │ ├── 0302.xml │ ├── 0303.out │ ├── 0303.xml │ ├── 0304.out │ ├── 0304.xml │ ├── CMakeLists.txt │ └── Makefile.am ├── rdfxml │ ├── 22-rdf-syntax-ns.out │ ├── 22-rdf-syntax-ns.rdf │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── bad-00.rdf │ ├── bad-01.rdf │ ├── bad-02.rdf │ ├── bad-03.rdf │ ├── bad-04.rdf │ ├── bad-05.rdf │ ├── bad-06.rdf │ ├── bad-07.rdf │ ├── bad-08.rdf │ ├── bad-09.rdf │ ├── bad-10.rdf │ ├── bad-11.rdf │ ├── bad-12.rdf │ ├── bad-13.rdf │ ├── bad-14.rdf │ ├── bad-15.rdf │ ├── bad-16.rdf │ ├── bad-17.rdf │ ├── bad-18.rdf │ ├── bad-19.rdf │ ├── bad-20.rdf │ ├── bad-21.rdf │ ├── bad-22.rdf │ ├── bad-23.rdf │ ├── bug-650.out │ ├── bug-650.rdf │ ├── daml-oil.out │ ├── daml-oil.rdf │ ├── ex-00.out │ ├── ex-00.rdf │ ├── ex-01.out │ ├── ex-01.rdf │ ├── ex-02.out │ ├── ex-02.rdf │ ├── ex-03.out │ ├── ex-03.rdf │ ├── ex-04.out │ ├── ex-04.rdf │ ├── ex-05.out │ ├── ex-05.rdf │ ├── ex-06.out │ ├── ex-06.rdf │ ├── ex-07.out │ ├── ex-07.rdf │ ├── ex-08.out │ ├── ex-08.rdf │ ├── ex-09.out │ ├── ex-09.rdf │ ├── ex-10.out │ ├── ex-10.rdf │ ├── ex-11.out │ ├── ex-11.rdf │ ├── ex-12.out │ ├── ex-12.rdf │ ├── ex-13.out │ ├── ex-13.rdf │ ├── ex-14.out │ ├── ex-14.rdf │ ├── ex-15.out │ ├── ex-15.rdf │ ├── ex-16.out │ ├── ex-16.rdf │ ├── ex-17.out │ ├── ex-17.rdf │ ├── ex-18.out │ ├── ex-18.rdf │ ├── ex-19.out │ ├── ex-19.rdf │ ├── ex-20.out │ ├── ex-20.rdf │ ├── ex-21.out │ ├── ex-21.rdf │ ├── ex-22.out │ ├── ex-22.rdf │ ├── ex-23.out │ ├── ex-23.rdf │ ├── ex-24.out │ ├── ex-24.rdf │ ├── ex-25.out │ ├── ex-25.rdf │ ├── ex-26.out │ ├── ex-26.rdf │ ├── ex-27.out │ ├── ex-27.rdf │ ├── ex-28.out │ ├── ex-28.rdf │ ├── ex-29.out │ ├── ex-29.rdf │ ├── ex-30.out │ ├── ex-30.rdf │ ├── ex-31.out │ ├── ex-31.rdf │ ├── ex-32.out │ ├── ex-32.rdf │ ├── ex-33.out │ ├── ex-33.rdf │ ├── ex-34.out │ ├── ex-34.rdf │ ├── ex-35.out │ ├── ex-35.rdf │ ├── ex-36.out │ ├── ex-36.rdf │ ├── ex-37.out │ ├── ex-37.rdf │ ├── ex-38-rdfxmla.out │ ├── ex-38.out │ ├── ex-38.rdf │ ├── ex-39.out │ ├── ex-39.rdf │ ├── ex-40.out │ ├── ex-40.rdf │ ├── ex-41.out │ ├── ex-41.rdf │ ├── ex-42.out │ ├── ex-42.rdf │ ├── ex-43.out │ ├── ex-43.rdf │ ├── ex-44.out │ ├── ex-44.rdf │ ├── ex-45.out │ ├── ex-45.rdf │ ├── ex-46.out │ ├── ex-46.rdf │ ├── ex-47.out │ ├── ex-47.rdf │ ├── ex-48.out │ ├── ex-48.rdf │ ├── ex-49.out │ ├── ex-49.rdf │ ├── ex-51.out │ ├── ex-51.rdf │ ├── ex-52.out │ ├── ex-52.svg │ ├── ex-53.out │ ├── ex-53.rdf │ ├── ex-54.out │ ├── ex-54.rdf │ ├── ex-55.out │ ├── ex-55.rdf │ ├── ex-56.out │ ├── ex-56.rdf │ ├── ex-57.out │ ├── ex-57.rdf │ ├── ex-58.out │ ├── ex-58.rdf │ ├── ex-59.nt │ ├── ex-59.rdf │ ├── ex-60.nt │ ├── ex-60.rdf │ ├── ex-61.out │ ├── ex-61.rdf │ ├── ex-62.out │ ├── ex-62.rdf │ ├── ex-63.out │ ├── ex-63.rdf │ ├── owl-schema.out │ ├── owl-schema.rdf │ ├── rdf-schema.out │ ├── rdf-schema.rdf │ ├── rdfs-namespace.out │ ├── rdfs-namespace.rdf │ ├── warn-00.out │ ├── warn-00.rdf │ ├── warn-02.out │ ├── warn-02.rdf │ ├── warn-04.out │ ├── warn-04.rdf │ ├── warn-05.out │ ├── warn-05.rdf │ ├── warn-06.out │ ├── warn-06.rdf │ ├── warn-07.out │ ├── warn-07.rdf │ ├── wine.out │ └── wine.rdf ├── trig │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── bug-584-dos.out │ ├── bug-584-dos.trig │ ├── bug-584-unix.out │ ├── bug-584-unix.trig │ ├── bug370.out │ ├── bug370.trig │ ├── bug451.out │ ├── bug451.trig │ ├── example1.out │ ├── example1.trig │ ├── example2.out │ ├── example2.trig │ ├── example3.out │ ├── example3.trig │ ├── issue-37.out │ └── issue-37.trig ├── turtle-2013 │ ├── HYPHEN_MINUS_in_localName.nt │ ├── HYPHEN_MINUS_in_localName.ttl │ ├── IRIREF_datatype.nt │ ├── IRIREF_datatype.ttl │ ├── IRI_spo.nt │ ├── IRI_subject.nt │ ├── IRI_subject.ttl │ ├── IRI_with_all_punctuation.nt │ ├── IRI_with_all_punctuation.ttl │ ├── IRI_with_eight_digit_numeric_escape.nt │ ├── IRI_with_eight_digit_numeric_escape.ttl │ ├── IRI_with_four_digit_numeric_escape.nt │ ├── 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.nt │ ├── LITERAL1_with_UTF8_boundaries.ttl │ ├── LITERAL2.nt │ ├── LITERAL2.ttl │ ├── LITERAL2_ascii_boundaries.nt │ ├── LITERAL2_ascii_boundaries.ttl │ ├── LITERAL2_with_UTF8_boundaries.nt │ ├── LITERAL2_with_UTF8_boundaries.ttl │ ├── LITERAL_LONG1.nt │ ├── 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.nt │ ├── LITERAL_LONG1_with_UTF8_boundaries.ttl │ ├── LITERAL_LONG2.nt │ ├── 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.nt │ ├── LITERAL_LONG2_with_UTF8_boundaries.ttl │ ├── LITERAL_with_UTF8_boundaries.nt │ ├── Makefile.am │ ├── README │ ├── SPARQL_style_base.nt │ ├── SPARQL_style_base.ttl │ ├── SPARQL_style_prefix.nt │ ├── SPARQL_style_prefix.ttl │ ├── anonymous_blank_node_object.nt │ ├── anonymous_blank_node_object.ttl │ ├── anonymous_blank_node_subject.nt │ ├── 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.nt │ ├── 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.nt │ ├── comment_following_localName.ttl │ ├── default_namespace_IRI.nt │ ├── 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.nt │ ├── labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.ttl │ ├── labeled_blank_node_with_leading_digit.nt │ ├── labeled_blank_node_with_leading_digit.ttl │ ├── labeled_blank_node_with_leading_underscore.nt │ ├── labeled_blank_node_with_leading_underscore.ttl │ ├── labeled_blank_node_with_non_leading_extras.nt │ ├── labeled_blank_node_with_non_leading_extras.ttl │ ├── langtagged_LONG.nt │ ├── 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.nt │ ├── literal_with_escaped_BACKSPACE.ttl │ ├── literal_with_escaped_CARRIAGE_RETURN.nt │ ├── literal_with_escaped_CARRIAGE_RETURN.ttl │ ├── literal_with_escaped_CHARACTER_TABULATION.nt │ ├── literal_with_escaped_CHARACTER_TABULATION.ttl │ ├── literal_with_escaped_FORM_FEED.nt │ ├── literal_with_escaped_FORM_FEED.ttl │ ├── literal_with_escaped_LINE_FEED.nt │ ├── literal_with_escaped_LINE_FEED.ttl │ ├── literal_with_numeric_escape4.nt │ ├── literal_with_numeric_escape4.ttl │ ├── literal_with_numeric_escape8.nt │ ├── literal_with_numeric_escape8.ttl │ ├── localName_with_PN_CHARS_BASE_character_boundaries.nt │ ├── localName_with_PN_CHARS_BASE_character_boundaries.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_char_boundaries.nt │ ├── localName_with_assigned_nfc_bmp_PN_CHARS_BASE_char_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.nt │ ├── old_style_base.ttl │ ├── old_style_prefix.nt │ ├── old_style_prefix.ttl │ ├── oops.nt │ ├── oops.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.nt │ ├── prefix_only_IRI.ttl │ ├── prefix_reassigned_and_used.nt │ ├── prefix_reassigned_and_used.ttl │ ├── prefix_with_PN_CHARS_BASE_character_boundaries.nt │ ├── prefix_with_PN_CHARS_BASE_character_boundaries.ttl │ ├── prefix_with_non_leading_extras.nt │ ├── prefix_with_non_leading_extras.ttl │ ├── prefixed_IRI_object.nt │ ├── prefixed_IRI_object.ttl │ ├── prefixed_IRI_predicate.nt │ ├── prefixed_IRI_predicate.ttl │ ├── prefixed_name_datatype.nt │ ├── prefixed_name_datatype.ttl │ ├── repeated_semis_at_end.nt │ ├── 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.nt │ ├── sole_blankNodePropertyList.ttl │ ├── test-38.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.nt │ ├── 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.nt │ ├── turtle-syntax-ln-colons.ttl │ ├── turtle-syntax-ln-dots.nt │ ├── 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-dots.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 └── turtle │ ├── .gitignore │ ├── Makefile.am │ ├── README.txt │ ├── bad-00.ttl │ ├── bad-01.ttl │ ├── bad-02.ttl │ ├── bad-03.ttl │ ├── bad-04.ttl │ ├── bad-05.ttl │ ├── bad-06.ttl │ ├── bad-07.ttl │ ├── bad-08.ttl │ ├── bad-09.ttl │ ├── bad-10.ttl │ ├── bad-11.ttl │ ├── bad-12.ttl │ ├── bad-13.ttl │ ├── bad-14.ttl │ ├── bad-15.out │ ├── bad-15.ttl │ ├── bad-16.ttl │ ├── bad-17.out │ ├── bad-17.ttl │ ├── bad-18.out │ ├── bad-18.ttl │ ├── bad-19.ttl │ ├── bad-20.ttl │ ├── bad-21.out │ ├── bad-21.ttl │ ├── bad-22.out │ ├── bad-22.ttl │ ├── bad-23.ttl │ ├── bad-24.ttl │ ├── ex-38-turtle.out │ ├── ex-62.rdf │ ├── manifest-bad.ttl │ ├── manifest.ttl │ ├── rdf-schema.out │ ├── rdf-schema.ttl │ ├── rdfq-results.out │ ├── rdfq-results.ttl │ ├── rdfs-namespace.out │ ├── rdfs-namespace.ttl │ ├── test-00.out │ ├── test-00.ttl │ ├── test-01.out │ ├── test-01.ttl │ ├── test-02.out │ ├── test-02.ttl │ ├── test-03.out │ ├── test-03.ttl │ ├── test-04.out │ ├── test-04.ttl │ ├── test-05.out │ ├── test-05.ttl │ ├── test-06.out │ ├── test-06.ttl │ ├── test-07.out │ ├── test-07.ttl │ ├── test-08.out │ ├── test-08.ttl │ ├── test-09.out │ ├── test-09.ttl │ ├── test-10.out │ ├── test-10.ttl │ ├── test-11.out │ ├── test-11.ttl │ ├── test-12.out │ ├── test-12.ttl │ ├── test-13.out │ ├── test-13.ttl │ ├── test-14.out │ ├── test-14.ttl │ ├── test-15.out │ ├── test-15.ttl │ ├── test-16.out │ ├── test-16.ttl │ ├── test-17.out │ ├── test-17.ttl │ ├── test-18.out │ ├── test-18.ttl │ ├── test-19.out │ ├── test-19.ttl │ ├── test-20.out │ ├── test-20.ttl │ ├── test-21.out │ ├── test-21.ttl │ ├── test-22.out │ ├── test-22.ttl │ ├── test-23.out │ ├── test-23.ttl │ ├── test-24.out │ ├── test-24.ttl │ ├── test-25.out │ ├── test-25.ttl │ ├── test-26.out │ ├── test-26.ttl │ ├── test-27.out │ ├── test-27.ttl │ ├── test-28-out.ttl │ ├── test-28.out │ ├── test-28.ttl │ ├── test-29.out │ ├── test-29.ttl │ ├── test-30.out │ ├── test-30.ttl │ ├── test-31-out.ttl │ ├── test-31.ttl │ ├── test-32-out.ttl │ ├── test-32.ttl │ ├── test-33.out │ ├── test-33.ttl │ ├── test-34-out.ttl │ ├── test-34.ttl │ ├── test-36.out │ ├── test-36.ttl │ ├── test-37.out │ ├── test-37.ttl │ ├── test-38.out │ ├── test-38.ttl │ ├── test-39-out.ttl │ ├── test-39.ttl │ ├── test-40.out │ └── test-40.ttl └── utils ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── getopt.c ├── rapper.1 ├── rapper.c ├── raptor_getopt.h └── rdfdiff.c /AUTHORS: -------------------------------------------------------------------------------- 1 | Dave Beckett 2 | Dave Robillard 3 | Lauri Aalto 4 | Nicholas J Humfrey 5 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | This product includes Redland software (http://librdf.org/) 2 | developed at the Institute for Learning and Research Technology, 3 | University of Bristol, UK (http://www.bristol.ac.uk/). 4 | -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST=dc.rdf 2 | -------------------------------------------------------------------------------- /docs/raptor2.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/docs/raptor2.types -------------------------------------------------------------------------------- /docs/tmpl/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | raptor2-unused.sgml 3 | -------------------------------------------------------------------------------- /docs/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.o 3 | .deps 4 | .libs 5 | TAGS 6 | grapper 7 | raptor_abort 8 | rdfcat 9 | rdfguess 10 | rdfprint 11 | rdfserialize 12 | rdfcount 13 | -------------------------------------------------------------------------------- /librdfa/.gitignore: -------------------------------------------------------------------------------- 1 | *o 2 | *.la 3 | *.lo 4 | *.plist 5 | .deps 6 | .libs 7 | -------------------------------------------------------------------------------- /librdfa/config.h: -------------------------------------------------------------------------------- 1 | /* Fake librdfa config.h - reads configuration from Raptor's config header */ 2 | #include 3 | -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | .deps 2 | .libs 3 | *.o 4 | build-formats 5 | build-formats.exe 6 | -------------------------------------------------------------------------------- /src/raptor.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .deps 3 | .libs 4 | TAGS 5 | raptor_empty_test 6 | raptor_empty_test.exe 7 | raptor_empty_test.trs 8 | -------------------------------------------------------------------------------- /tests/bugs/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | .deps 3 | .libs 4 | TAGS 5 | raptor_issue*_test 6 | raptor_issue*_test.exe 7 | raptor_issue*_test.trs 8 | -------------------------------------------------------------------------------- /tests/feeds/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | old 3 | test01.atom 4 | test02.atom 5 | test03.atom 6 | test01.ttl 7 | test02.ttl 8 | test03.ttl 9 | test04.ttl 10 | test05.ttl 11 | -------------------------------------------------------------------------------- /tests/grddl/data-01.nt: -------------------------------------------------------------------------------- 1 | # No Triples 2 | -------------------------------------------------------------------------------- /tests/json/bad-00.json: -------------------------------------------------------------------------------- 1 | /* bad-00.json - Nearly empty document */ 2 | 3 | { 4 | -------------------------------------------------------------------------------- /tests/json/bad-12.json: -------------------------------------------------------------------------------- 1 | /* bad-12.json - Not RDF/JSON */ 2 | 3 | { 4 | "key1" : "value1", 5 | "key2" : "value2", 6 | "key3" : "value3" 7 | } 8 | -------------------------------------------------------------------------------- /tests/json/example3.nt: -------------------------------------------------------------------------------- 1 | "Anna Wilder" . 2 | -------------------------------------------------------------------------------- /tests/mkr/test-07.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( "apple" "banana" ) . 3 | 4 | -------------------------------------------------------------------------------- /tests/mkr/test-08.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( ) . 3 | 4 | -------------------------------------------------------------------------------- /tests/mkr/test-34.ttl: -------------------------------------------------------------------------------- 1 | @prefix dbpedia: . 2 | 3 | 4 | . 5 | -------------------------------------------------------------------------------- /tests/nquads-2013/langtagged_string.nq: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/lantag_with_subtag.nq: -------------------------------------------------------------------------------- 1 | "Cheers"@en-UK . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal.nq: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_all_punctuation.nq: -------------------------------------------------------------------------------- 1 | " !\"#$%&():;<=>?@[]^_`{|}~" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_ascii_boundaries.nq: -------------------------------------------------------------------------------- 1 | " &([]" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_false.nq: -------------------------------------------------------------------------------- 1 | "false"^^ . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_true.nq: -------------------------------------------------------------------------------- 1 | "true"^^ . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_2_dquotes.nq: -------------------------------------------------------------------------------- 1 | "x\"\"y" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_2_squotes.nq: -------------------------------------------------------------------------------- 1 | "x''y" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_BACKSPACE.nq: -------------------------------------------------------------------------------- 1 | "\b" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_CARRIAGE_RETURN.nq: -------------------------------------------------------------------------------- 1 | "\r" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_CHARACTER_TABULATION.nq: -------------------------------------------------------------------------------- 1 | "\t" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_FORM_FEED.nq: -------------------------------------------------------------------------------- 1 | "\f" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_LINE_FEED.nq: -------------------------------------------------------------------------------- 1 | "\n" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_REVERSE_SOLIDUS.nq: -------------------------------------------------------------------------------- 1 | "\\" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_REVERSE_SOLIDUS2.nq: -------------------------------------------------------------------------------- 1 | "test-\\" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_UTF8_boundaries.nq: -------------------------------------------------------------------------------- 1 | "€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_dquote.nq: -------------------------------------------------------------------------------- 1 | "x\"y" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_numeric_escape4.nq: -------------------------------------------------------------------------------- 1 | "\u006F" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_numeric_escape8.nq: -------------------------------------------------------------------------------- 1 | "\U0000006F" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/literal_with_squote.nq: -------------------------------------------------------------------------------- 1 | "x'y" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bad-literal-01.nq: -------------------------------------------------------------------------------- 1 | "o" . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bad-literal-02.nq: -------------------------------------------------------------------------------- 1 | "o"@en . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bad-literal-03.nq: -------------------------------------------------------------------------------- 1 | "o"^^ . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bad-quint-01.nq: -------------------------------------------------------------------------------- 1 | # N-Quads rejects a quint 2 | . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bad-uri-01.nq: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Quads 2 | . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bnode-01.nq: -------------------------------------------------------------------------------- 1 | _:g . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bnode-02.nq: -------------------------------------------------------------------------------- 1 | _:s _:g . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bnode-03.nq: -------------------------------------------------------------------------------- 1 | _:o _:g . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bnode-04.nq: -------------------------------------------------------------------------------- 1 | "o" _:g . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bnode-05.nq: -------------------------------------------------------------------------------- 1 | "o"@en _:g . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-bnode-06.nq: -------------------------------------------------------------------------------- 1 | "o"^^ _:g . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-uri-01.nq: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-uri-02.nq: -------------------------------------------------------------------------------- 1 | _:s . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-uri-03.nq: -------------------------------------------------------------------------------- 1 | _:o . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-uri-04.nq: -------------------------------------------------------------------------------- 1 | "o" . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-uri-05.nq: -------------------------------------------------------------------------------- 1 | "o"@en . -------------------------------------------------------------------------------- /tests/nquads-2013/nq-syntax-uri-06.nq: -------------------------------------------------------------------------------- 1 | "o"^^ . -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-base-01.nq: -------------------------------------------------------------------------------- 1 | @base . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-esc-01.nq: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "a\zb" . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-esc-02.nq: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\uWXYZ" . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-esc-03.nq: -------------------------------------------------------------------------------- 1 | # Bad string escape 2 | "\U0000WXYZ" . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-lang-01.nq: -------------------------------------------------------------------------------- 1 | # Bad lang tag 2 | "string"@1 . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-num-01.nq: -------------------------------------------------------------------------------- 1 | 1 . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-num-02.nq: -------------------------------------------------------------------------------- 1 | 1.0 . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-num-03.nq: -------------------------------------------------------------------------------- 1 | 1.0e0 . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-prefix-01.nq: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-string-01.nq: -------------------------------------------------------------------------------- 1 | "abc' . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-string-02.nq: -------------------------------------------------------------------------------- 1 | 1.0 . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-string-03.nq: -------------------------------------------------------------------------------- 1 | 1.0e1 . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-string-04.nq: -------------------------------------------------------------------------------- 1 | '''abc''' . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-string-05.nq: -------------------------------------------------------------------------------- 1 | """abc""" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-string-06.nq: -------------------------------------------------------------------------------- 1 | "abc . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-string-07.nq: -------------------------------------------------------------------------------- 1 | abc" . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-struct-01.nq: -------------------------------------------------------------------------------- 1 | , . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-struct-02.nq: -------------------------------------------------------------------------------- 1 | ; , . 2 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-uri-01.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : space. 2 | . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-uri-02.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : bad escape 2 | . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-uri-03.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : bad escape 2 | . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-uri-04.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : character escapes not allowed. 2 | . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-uri-05.nq: -------------------------------------------------------------------------------- 1 | # Bad IRI : character escapes not allowed. 2 | . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-uri-06.nq: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 | . 3 | -------------------------------------------------------------------------------- /tests/nquads-2013/nt-syntax-bad-uri-07.nq: -------------------------------------------------------------------------------- 1 | # No relative IRIs in N-Triples 2 |

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

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

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

. 3 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-bnode-01.nt: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-bnode-02.nt: -------------------------------------------------------------------------------- 1 | _:a . 2 | _:a . 3 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-bnode-03.nt: -------------------------------------------------------------------------------- 1 | _:1a . 2 | _:1a . 3 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-datatypes-01.nt: -------------------------------------------------------------------------------- 1 | "123"^^ . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-datatypes-02.nt: -------------------------------------------------------------------------------- 1 | "123"^^ . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-file-01.nt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/ntriples-2013/nt-syntax-file-01.nt -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-file-02.nt: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-file-03.nt: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-str-esc-01.nt: -------------------------------------------------------------------------------- 1 | "a\n" . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-str-esc-02.nt: -------------------------------------------------------------------------------- 1 | "a\u0020b" . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-str-esc-03.nt: -------------------------------------------------------------------------------- 1 | "a\U00000020b" . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-string-01.nt: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-string-02.nt: -------------------------------------------------------------------------------- 1 | "string"@en . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-string-03.nt: -------------------------------------------------------------------------------- 1 | "string"@en-uk . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-uri-01.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-uri-02.nt: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | . 3 | -------------------------------------------------------------------------------- /tests/ntriples-2013/nt-syntax-uri-03.nt: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | . 3 | -------------------------------------------------------------------------------- /tests/ntriples/bad-00.nt: -------------------------------------------------------------------------------- 1 | _: "blah" . 2 | -------------------------------------------------------------------------------- /tests/ntriples/bad-02.nt: -------------------------------------------------------------------------------- 1 | _:a "blah . 2 | -------------------------------------------------------------------------------- /tests/ntriples/bad-04.nt: -------------------------------------------------------------------------------- 1 | _:a "\U00110000" . 2 | -------------------------------------------------------------------------------- /tests/ntriples/bad-06.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/ntriples/bad-07.nt: -------------------------------------------------------------------------------- 1 | xml"bar" . 2 | -------------------------------------------------------------------------------- /tests/ntriples/bug-562.nt: -------------------------------------------------------------------------------- 1 | _:b . 2 | _:b _:c . 3 | -------------------------------------------------------------------------------- /tests/ntriples/bug-562.out: -------------------------------------------------------------------------------- 1 | _:b . 2 | _:b _:c . 3 | -------------------------------------------------------------------------------- /tests/ntriples/bug-574.nt: -------------------------------------------------------------------------------- 1 | "SOMETHING"@zh_pinyin . 2 | -------------------------------------------------------------------------------- /tests/ntriples/bug-574.out: -------------------------------------------------------------------------------- 1 | "SOMETHING"@zh-pinyin . 2 | -------------------------------------------------------------------------------- /tests/ntriples/issue77.nt: -------------------------------------------------------------------------------- 1 | "The Queen\'s Medical Center" . 2 | -------------------------------------------------------------------------------- /tests/ntriples/issue77.out: -------------------------------------------------------------------------------- 1 | "The Queen's Medical Center" . 2 | -------------------------------------------------------------------------------- /tests/ntriples/nt2013-ex2.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/ntriples/nt2013-ex2.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/ntriples/nt2013-ex4.nt: -------------------------------------------------------------------------------- 1 | _:alice _:bob . 2 | _:bob _:alice . 3 | -------------------------------------------------------------------------------- /tests/ntriples/nt2013-ex4.out: -------------------------------------------------------------------------------- 1 | _:alice _:bob . 2 | _:bob _:alice . 3 | -------------------------------------------------------------------------------- /tests/rdfa/0001.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0008.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0009.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0012.out: -------------------------------------------------------------------------------- 1 | "chat"@fr . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0013.out: -------------------------------------------------------------------------------- 1 | "chat"@fr . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0014.out: -------------------------------------------------------------------------------- 1 | "10"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0017.out: -------------------------------------------------------------------------------- 1 | _:x "Manu Sporny" . 2 | _:x _:y . 3 | _:y "Ralph Swick" . 4 | -------------------------------------------------------------------------------- /tests/rdfa/0018.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0019.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0020.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0021.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0023.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0026.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0027.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0029.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0030.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0031.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0032.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0033.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | _:a "Ben Adida" . 3 | -------------------------------------------------------------------------------- /tests/rdfa/0034.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0035.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0036.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0037.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0038.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0039.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0040.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0041.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0042.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa/0042.out -------------------------------------------------------------------------------- /tests/rdfa/0050.out: -------------------------------------------------------------------------------- 1 | _:a "John Doe" . 2 | _:a . 3 | -------------------------------------------------------------------------------- /tests/rdfa/0052.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0061.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0062.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0063.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0064.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0066.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0067.out: -------------------------------------------------------------------------------- 1 | "Test 0067" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0068.out: -------------------------------------------------------------------------------- 1 | "Test 0067" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0069.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0070.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0071.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0072.out: -------------------------------------------------------------------------------- 1 | "Example FAQ" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0073.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0074.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0075.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0080.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0089.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0090.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0106.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0107.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa/0107.out -------------------------------------------------------------------------------- /tests/rdfa/0109.out: -------------------------------------------------------------------------------- 1 | "Test 0109" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0110.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0111.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | _:a _:b . 3 | -------------------------------------------------------------------------------- /tests/rdfa/0112.out: -------------------------------------------------------------------------------- 1 | "not an XML Literal,\nwhitespace preserved\n" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0118.out: -------------------------------------------------------------------------------- 1 | "Ben" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0119.out: -------------------------------------------------------------------------------- 1 | "Example Website" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0120.out: -------------------------------------------------------------------------------- 1 | "The XHTML Vocabulary Document" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0121.out: -------------------------------------------------------------------------------- 1 | "Test Case 0121" . 2 | "Shane McCarron" . 3 | -------------------------------------------------------------------------------- /tests/rdfa/0122.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa/0122.out -------------------------------------------------------------------------------- /tests/rdfa/0134.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0140.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa/0140.out -------------------------------------------------------------------------------- /tests/rdfa/0147.out: -------------------------------------------------------------------------------- 1 | "Test" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0172.out: -------------------------------------------------------------------------------- 1 | "A plain literal with a lang tag."@en . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0173.out: -------------------------------------------------------------------------------- 1 | "Just a plain literal." . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0174.out: -------------------------------------------------------------------------------- 1 | "John Doe" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0181.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0197.out: -------------------------------------------------------------------------------- 1 | "Ruby" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0201.out: -------------------------------------------------------------------------------- 1 | "A yellow rectangle with sharp corners." . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0202.out: -------------------------------------------------------------------------------- 1 | "A yellow rectangle with sharp corners." . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0203.out: -------------------------------------------------------------------------------- 1 | "A yellow rectangle with sharp corners." . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0209.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa/0209.out -------------------------------------------------------------------------------- /tests/rdfa/0210.out: -------------------------------------------------------------------------------- 1 | "Ivan Herman" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0211.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa/0211.out -------------------------------------------------------------------------------- /tests/rdfa/0215.out: -------------------------------------------------------------------------------- 1 | "Iv\u00E1n" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0258.out: -------------------------------------------------------------------------------- 1 | _:test . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0262.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0291.out: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /tests/rdfa/0294.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa/0294.out -------------------------------------------------------------------------------- /tests/rdfa11/0001.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0008.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0009.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0012.out: -------------------------------------------------------------------------------- 1 | "chat"@fr . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0013.out: -------------------------------------------------------------------------------- 1 | "chat"@fr . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0014.out: -------------------------------------------------------------------------------- 1 | "10"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0017.out: -------------------------------------------------------------------------------- 1 | _:x "Manu Sporny" . 2 | _:x _:y . 3 | _:y "Ralph Swick" . 4 | -------------------------------------------------------------------------------- /tests/rdfa11/0018.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0019.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0020.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0021.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0023.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0026.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0027.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0029.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0030.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0031.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0032.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0033.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | _:a "Ben Adida" . 3 | -------------------------------------------------------------------------------- /tests/rdfa11/0034.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0035.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0036.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0037.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0038.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0039.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0041.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0050.out: -------------------------------------------------------------------------------- 1 | _:a "John Doe" . 2 | _:a . 3 | -------------------------------------------------------------------------------- /tests/rdfa11/0052.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0064.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0066.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0067.out: -------------------------------------------------------------------------------- 1 | "Test 0067" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0068.out: -------------------------------------------------------------------------------- 1 | "Test 0067" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0071.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0072.out: -------------------------------------------------------------------------------- 1 | "Example FAQ" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0073.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0074.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0075.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0080.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0089.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0106.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0107.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa11/0107.out -------------------------------------------------------------------------------- /tests/rdfa11/0109.out: -------------------------------------------------------------------------------- 1 | "Test 0109" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0110.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0111.out: -------------------------------------------------------------------------------- 1 | _:a . 2 | _:a _:b . 3 | -------------------------------------------------------------------------------- /tests/rdfa11/0112.out: -------------------------------------------------------------------------------- 1 | "not an XML Literal,\nwhitespace preserved\n" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0118.out: -------------------------------------------------------------------------------- 1 | "Ben" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0119.out: -------------------------------------------------------------------------------- 1 | "Example Website" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0120.out: -------------------------------------------------------------------------------- 1 | "The XHTML Vocabulary Document" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0121.out: -------------------------------------------------------------------------------- 1 | "Test Case 0121" . 2 | "Shane McCarron" . 3 | -------------------------------------------------------------------------------- /tests/rdfa11/0122.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa11/0122.out -------------------------------------------------------------------------------- /tests/rdfa11/0134.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0140.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfa11/0140.out -------------------------------------------------------------------------------- /tests/rdfa11/0147.out: -------------------------------------------------------------------------------- 1 | "Test" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0172.out: -------------------------------------------------------------------------------- 1 | "A plain literal with a lang tag."@en . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0173.out: -------------------------------------------------------------------------------- 1 | "Just a plain literal." . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0174.out: -------------------------------------------------------------------------------- 1 | "John Doe" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0175.out: -------------------------------------------------------------------------------- 1 | _:a "Gregg Kellogg" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0177.out: -------------------------------------------------------------------------------- 1 | "Ivan Herman" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0179.out: -------------------------------------------------------------------------------- 1 | "Ivan Herman" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0180.out: -------------------------------------------------------------------------------- 1 | "Ivan Herman" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0181.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0190.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0201.out: -------------------------------------------------------------------------------- 1 | "A yellow rectangle with sharp corners." . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0202.out: -------------------------------------------------------------------------------- 1 | "A yellow rectangle with sharp corners." . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0203.out: -------------------------------------------------------------------------------- 1 | "A yellow rectangle with sharp corners." . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0206.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0213.out: -------------------------------------------------------------------------------- 1 | "E = mc2: The Most Urgent Problem of Our Time" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0216.out: -------------------------------------------------------------------------------- 1 | "Iv\u00E1n" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0218.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0228.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0229.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0230.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0231.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0235.out: -------------------------------------------------------------------------------- 1 | "rdfagraph" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0236.out: -------------------------------------------------------------------------------- 1 | _:s . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0237.out: -------------------------------------------------------------------------------- 1 | _:s . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0238.out: -------------------------------------------------------------------------------- 1 | _:s . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0239.out: -------------------------------------------------------------------------------- 1 | _:s . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0251.out: -------------------------------------------------------------------------------- 1 | "chat"@fr . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0252.out: -------------------------------------------------------------------------------- 1 | "chat"@fr . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0254.out: -------------------------------------------------------------------------------- 1 | "A plain literal with a lang tag."@en . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0255.out: -------------------------------------------------------------------------------- 1 | "Just a plain literal." . 2 | 3 | -------------------------------------------------------------------------------- /tests/rdfa11/0256.out: -------------------------------------------------------------------------------- 1 | "chat"@fr . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0257.out: -------------------------------------------------------------------------------- 1 | "" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0258.out: -------------------------------------------------------------------------------- 1 | _:test . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0261.out: -------------------------------------------------------------------------------- 1 | "This is\nan XMLLiteral"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0262.out: -------------------------------------------------------------------------------- 1 | "Mark Birbeck" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0263.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0264.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0265.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0269.out: -------------------------------------------------------------------------------- 1 | "This is an RDFa test" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0271.out: -------------------------------------------------------------------------------- 1 | "This is an RDFa test" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0272.out: -------------------------------------------------------------------------------- 1 | "2012-03-18Z"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0273.out: -------------------------------------------------------------------------------- 1 | "00:00:00Z"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0275.out: -------------------------------------------------------------------------------- 1 | "2012-03-18Z"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0276.out: -------------------------------------------------------------------------------- 1 | "00:00:00Z"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0278.out: -------------------------------------------------------------------------------- 1 | "2012-03-18"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0281.out: -------------------------------------------------------------------------------- 1 | "2012"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0283.out: -------------------------------------------------------------------------------- 1 | " 2012-03-18Z" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0285.out: -------------------------------------------------------------------------------- 1 | "D-Day"@en . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0286.out: -------------------------------------------------------------------------------- 1 | "veni, vidi, vici"@lat . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0289.out: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0290.out: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0291.out: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0293.out: -------------------------------------------------------------------------------- 1 | "Test" . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0298.out: -------------------------------------------------------------------------------- 1 | _:bnodeid1 . 2 | _:bnodeid1 "Alex Milowski" . 3 | -------------------------------------------------------------------------------- /tests/rdfa11/0299.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfa11/0300.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/bad-10.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfxml/bad-10.rdf -------------------------------------------------------------------------------- /tests/rdfxml/ex-00.out: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-01.out: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | _:genid2 . 3 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfxml/ex-02.out -------------------------------------------------------------------------------- /tests/rdfxml/ex-03.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-15.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-16.out: -------------------------------------------------------------------------------- 1 | "the content" . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-17.out: -------------------------------------------------------------------------------- 1 | "" . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-18.out: -------------------------------------------------------------------------------- 1 | "Example" . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-19.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-20.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-30.out: -------------------------------------------------------------------------------- 1 | "blah" . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-32.out: -------------------------------------------------------------------------------- 1 | "literal" . 2 | . 3 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-35.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-37.out: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | _:genid1 . 3 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-40.out: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-51.out: -------------------------------------------------------------------------------- 1 | ""^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-53.out: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-53.rdf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-54.out: -------------------------------------------------------------------------------- 1 | "They\u2019re artistic\u2026uhm, bugs, at the very least."^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-56.out: -------------------------------------------------------------------------------- 1 | "val"^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-57.out: -------------------------------------------------------------------------------- 1 | ""^^ . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-59.nt: -------------------------------------------------------------------------------- 1 | "value" . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-60.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/ex-61.out: -------------------------------------------------------------------------------- 1 | "one" . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/warn-02.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/rdfxml/warn-02.out -------------------------------------------------------------------------------- /tests/rdfxml/warn-05.out: -------------------------------------------------------------------------------- 1 | "bar" . 2 | -------------------------------------------------------------------------------- /tests/rdfxml/warn-06.out: -------------------------------------------------------------------------------- 1 | "blah" . 2 | -------------------------------------------------------------------------------- /tests/trig/bug-584-dos.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/trig/bug-584-dos.trig: -------------------------------------------------------------------------------- 1 | 2 | { a . } 3 | -------------------------------------------------------------------------------- /tests/trig/bug-584-unix.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/trig/bug-584-unix.trig: -------------------------------------------------------------------------------- 1 | 2 | { a . } 3 | -------------------------------------------------------------------------------- /tests/trig/issue-37.trig: -------------------------------------------------------------------------------- 1 | { [ a ] .} 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/HYPHEN_MINUS_in_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/HYPHEN_MINUS_in_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:s- . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRIREF_datatype.nt: -------------------------------------------------------------------------------- 1 | "1"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRIREF_datatype.ttl: -------------------------------------------------------------------------------- 1 | "1"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_spo.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_subject.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_subject.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_with_all_punctuation.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_with_all_punctuation.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_with_eight_digit_numeric_escape.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_with_eight_digit_numeric_escape.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_with_four_digit_numeric_escape.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/IRI_with_four_digit_numeric_escape.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL1.nt: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL1.ttl: -------------------------------------------------------------------------------- 1 | 'x' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL1_all_controls.ttl: -------------------------------------------------------------------------------- 1 | ' ' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL1_all_punctuation.nt: -------------------------------------------------------------------------------- 1 | " !\"#$%&():;<=>?@[]^_`{|}~" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL1_all_punctuation.ttl: -------------------------------------------------------------------------------- 1 | ' !"#$%&():;<=>?@[]^_`{|}~' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL1_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | "\u0000\t\u000B\u000C\u000E&([]\u007F" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL1_ascii_boundaries.ttl: -------------------------------------------------------------------------------- 1 | ' &([]' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL1_with_UTF8_boundaries.ttl: -------------------------------------------------------------------------------- 1 | '€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL2.nt: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL2.ttl: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL2_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | "\u0000\t\u000B\u000C\u000E!#[]\u007F" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL2_ascii_boundaries.ttl: -------------------------------------------------------------------------------- 1 | " !#[]" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL2_with_UTF8_boundaries.ttl: -------------------------------------------------------------------------------- 1 | "€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1.nt: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1.ttl: -------------------------------------------------------------------------------- 1 | '''x''' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | "\u0000&([]\u007F" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1_ascii_boundaries.ttl: -------------------------------------------------------------------------------- 1 | '&([]' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1_with_1_squote.nt: -------------------------------------------------------------------------------- 1 | "x'y" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1_with_1_squote.ttl: -------------------------------------------------------------------------------- 1 | '''x'y''' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1_with_2_squotes.nt: -------------------------------------------------------------------------------- 1 | "x''y" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1_with_2_squotes.ttl: -------------------------------------------------------------------------------- 1 | '''x''y''' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG1_with_UTF8_boundaries.ttl: -------------------------------------------------------------------------------- 1 | '''€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽''' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2.nt: -------------------------------------------------------------------------------- 1 | "x" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2.ttl: -------------------------------------------------------------------------------- 1 | """x""" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_ascii_boundaries.nt: -------------------------------------------------------------------------------- 1 | "\u0000!#[]\u007F" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_ascii_boundaries.ttl: -------------------------------------------------------------------------------- 1 | "!#[]" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_with_1_squote.nt: -------------------------------------------------------------------------------- 1 | "x\"y" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_with_1_squote.ttl: -------------------------------------------------------------------------------- 1 | """x"y""" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_with_2_squotes.nt: -------------------------------------------------------------------------------- 1 | "x\"\"y" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_with_2_squotes.ttl: -------------------------------------------------------------------------------- 1 | """x""y""" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_with_REVERSE_SOLIDUS.nt: -------------------------------------------------------------------------------- 1 | "test-\\" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_with_REVERSE_SOLIDUS.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :s :p1 """test-\\""" . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/LITERAL_LONG2_with_UTF8_boundaries.ttl: -------------------------------------------------------------------------------- 1 | """€߿ࠀ࿿က쿿퀀퟿�𐀀𿿽񀀀󿿽􀀀􏿽""" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/SPARQL_style_base.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/SPARQL_style_base.ttl: -------------------------------------------------------------------------------- 1 | BASE 2 | . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/SPARQL_style_prefix.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/SPARQL_style_prefix.ttl: -------------------------------------------------------------------------------- 1 | PREFIX p: 2 | p:s . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/anonymous_blank_node_object.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/anonymous_blank_node_object.ttl: -------------------------------------------------------------------------------- 1 | [] . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/anonymous_blank_node_subject.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/anonymous_blank_node_subject.ttl: -------------------------------------------------------------------------------- 1 | [] . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/bareword_a_predicate.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/bareword_a_predicate.ttl: -------------------------------------------------------------------------------- 1 | a . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/bareword_decimal.nt: -------------------------------------------------------------------------------- 1 | "1.0"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/bareword_decimal.ttl: -------------------------------------------------------------------------------- 1 | 1.0 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/bareword_double.nt: -------------------------------------------------------------------------------- 1 | "1E0"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/bareword_double.ttl: -------------------------------------------------------------------------------- 1 | 1E0 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/bareword_integer.nt: -------------------------------------------------------------------------------- 1 | "1"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/bareword_integer.ttl: -------------------------------------------------------------------------------- 1 | 1 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/blankNodePropertyList_as_object.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | _:genid1 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/blankNodePropertyList_as_object.ttl: -------------------------------------------------------------------------------- 1 | [ ] . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/blankNodePropertyList_as_subject.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | _:genid1 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/blankNodePropertyList_as_subject.ttl: -------------------------------------------------------------------------------- 1 | [ ] . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/blankNodePropertyList_containing_collection.ttl: -------------------------------------------------------------------------------- 1 | [ (1) ] . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/collection_object.ttl: -------------------------------------------------------------------------------- 1 | (1) . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/collection_subject.ttl: -------------------------------------------------------------------------------- 1 | (1) . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/comment_following_PNAME_NS.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/comment_following_PNAME_NS.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:#comment 3 | . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/comment_following_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/comment_following_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:o#comment 3 | . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/default_namespace_IRI.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/default_namespace_IRI.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/double_lower_case_e.nt: -------------------------------------------------------------------------------- 1 | "1e0"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/double_lower_case_e.ttl: -------------------------------------------------------------------------------- 1 | 1e0 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/empty_collection.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/empty_collection.ttl: -------------------------------------------------------------------------------- 1 | () . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/first.ttl: -------------------------------------------------------------------------------- 1 | ((1) 2) . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_object.nt: -------------------------------------------------------------------------------- 1 | _:o . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_object.ttl: -------------------------------------------------------------------------------- 1 | _:o . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_subject.nt: -------------------------------------------------------------------------------- 1 | _:s . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_subject.ttl: -------------------------------------------------------------------------------- 1 | _:s . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.nt: -------------------------------------------------------------------------------- 1 | _:AZazÀÖØöø˿ͰͽͿ῿‌‍⁰↏Ⰰ⿯、퟿豈﷏ﷰ�𐀀󯿽 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_with_PN_CHARS_BASE_character_boundaries.ttl: -------------------------------------------------------------------------------- 1 | _:AZazÀÖØöø˿ͰͽͿ῿‌‍⁰↏Ⰰ⿯、퟿豈﷏ﷰ�𐀀󯿽 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_with_leading_digit.nt: -------------------------------------------------------------------------------- 1 | _:0 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_with_leading_digit.ttl: -------------------------------------------------------------------------------- 1 | _:0 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_with_leading_underscore.nt: -------------------------------------------------------------------------------- 1 | _:_ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_with_leading_underscore.ttl: -------------------------------------------------------------------------------- 1 | _:_ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_with_non_leading_extras.nt: -------------------------------------------------------------------------------- 1 | _:a·̀ͯ‿.⁀ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/labeled_blank_node_with_non_leading_extras.ttl: -------------------------------------------------------------------------------- 1 | _:a·̀ͯ‿.⁀ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/langtagged_LONG.nt: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/langtagged_LONG.ttl: -------------------------------------------------------------------------------- 1 | """chat"""@en . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/langtagged_LONG_with_subtag.nt: -------------------------------------------------------------------------------- 1 | "Cheers"@en-UK . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/langtagged_LONG_with_subtag.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal with lang tag 2 | @prefix : . 3 | :a :b """Cheers"""@en-UK . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/langtagged_non_LONG.nt: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/langtagged_non_LONG.ttl: -------------------------------------------------------------------------------- 1 | "chat"@en . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/lantag_with_subtag.nt: -------------------------------------------------------------------------------- 1 | "chat"@en-us . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/lantag_with_subtag.ttl: -------------------------------------------------------------------------------- 1 | "chat"@en-us . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/last.ttl: -------------------------------------------------------------------------------- 1 | (1 (2)) . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_false.nt: -------------------------------------------------------------------------------- 1 | "false"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_false.ttl: -------------------------------------------------------------------------------- 1 | false . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_true.nt: -------------------------------------------------------------------------------- 1 | "true"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_true.ttl: -------------------------------------------------------------------------------- 1 | true . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_BACKSPACE.nt: -------------------------------------------------------------------------------- 1 | "\u0008" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_BACKSPACE.ttl: -------------------------------------------------------------------------------- 1 | '' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_CARRIAGE_RETURN.nt: -------------------------------------------------------------------------------- 1 | "\r" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_CARRIAGE_RETURN.ttl: -------------------------------------------------------------------------------- 1 | ''' ''' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_CHARACTER_TABULATION.nt: -------------------------------------------------------------------------------- 1 | "\t" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_CHARACTER_TABULATION.ttl: -------------------------------------------------------------------------------- 1 | ' ' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_FORM_FEED.nt: -------------------------------------------------------------------------------- 1 | "\u000C" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_FORM_FEED.ttl: -------------------------------------------------------------------------------- 1 | ' ' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_LINE_FEED.nt: -------------------------------------------------------------------------------- 1 | "\n" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_LINE_FEED.ttl: -------------------------------------------------------------------------------- 1 | ''' 2 | ''' . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_REVERSE_SOLIDUS.nt: -------------------------------------------------------------------------------- 1 | "\\" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_REVERSE_SOLIDUS.ttl: -------------------------------------------------------------------------------- 1 | '\\' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_BACKSPACE.nt: -------------------------------------------------------------------------------- 1 | "\u0008" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_BACKSPACE.ttl: -------------------------------------------------------------------------------- 1 | '\b' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_CARRIAGE_RETURN.nt: -------------------------------------------------------------------------------- 1 | "\r" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_CARRIAGE_RETURN.ttl: -------------------------------------------------------------------------------- 1 | '\r' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_CHARACTER_TABULATION.nt: -------------------------------------------------------------------------------- 1 | "\t" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_CHARACTER_TABULATION.ttl: -------------------------------------------------------------------------------- 1 | '\t' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_FORM_FEED.nt: -------------------------------------------------------------------------------- 1 | "\u000C" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_FORM_FEED.ttl: -------------------------------------------------------------------------------- 1 | '\f' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_LINE_FEED.nt: -------------------------------------------------------------------------------- 1 | "\n" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_escaped_LINE_FEED.ttl: -------------------------------------------------------------------------------- 1 | '\n' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_numeric_escape4.nt: -------------------------------------------------------------------------------- 1 | "o" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_numeric_escape4.ttl: -------------------------------------------------------------------------------- 1 | '\u006F' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_numeric_escape8.nt: -------------------------------------------------------------------------------- 1 | "o" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/literal_with_numeric_escape8.ttl: -------------------------------------------------------------------------------- 1 | '\U0000006F' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_PN_CHARS_BASE_character_boundaries.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:AZazÀÖØöø˿ͰͽͿ῿‌‍⁰↏Ⰰ⿯、퟿豈﷏ﷰ￯𐀀󯿽 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_assigned_nfc_bmp_PN_CHARS_BASE_char_boundaries.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:AZazÀÖØöø˿Ͱͽ΄῾‌‍⁰↉Ⰰ⿕、ퟻ﨎ﷇﷰ￯ . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_leading_digit.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_leading_digit.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:0 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_leading_underscore.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_leading_underscore.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:_ . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_nfc_PN_CHARS_BASE_character_boundaries.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:AZazÀÖØöø˿ͰͽͿ῿‌‍⁰↏Ⰰ⿯、퟿﨎﷏ﷰ￯𐀀󯿽 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_non_leading_extras.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/localName_with_non_leading_extras.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:a·̀ͯ‿.⁀ . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/localname_with_COLON.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/localname_with_COLON.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:s: . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/negative_numeric.nt: -------------------------------------------------------------------------------- 1 | "-1"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/negative_numeric.ttl: -------------------------------------------------------------------------------- 1 | -1 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/nested_blankNodePropertyLists.ttl: -------------------------------------------------------------------------------- 1 | [ [ ] ; ]. 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/nested_collection.ttl: -------------------------------------------------------------------------------- 1 | ((1)) . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/number_sign_following_PNAME_NS.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/number_sign_following_PNAME_NS.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:\#numbersign 3 | . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/number_sign_following_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/number_sign_following_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:o\#numbersign 3 | . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/numeric_with_leading_0.nt: -------------------------------------------------------------------------------- 1 | "01"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/numeric_with_leading_0.ttl: -------------------------------------------------------------------------------- 1 | 01 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/objectList_with_two_objects.nt: -------------------------------------------------------------------------------- 1 | . 2 | . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/objectList_with_two_objects.ttl: -------------------------------------------------------------------------------- 1 | , . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/old_style_base.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/old_style_base.ttl: -------------------------------------------------------------------------------- 1 | @base . 2 | . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/old_style_prefix.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/old_style_prefix.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:s . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/percent_escaped_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/percent_escaped_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:%25 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/positive_numeric.nt: -------------------------------------------------------------------------------- 1 | "+1"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/positive_numeric.ttl: -------------------------------------------------------------------------------- 1 | +1 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/predicateObjectList_with_two_objectLists.ttl: -------------------------------------------------------------------------------- 1 | ; . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefix_only_IRI.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefix_only_IRI.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p: . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefix_reassigned_and_used.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefix_reassigned_and_used.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | @prefix p: . 3 | p:s . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefix_with_PN_CHARS_BASE_character_boundaries.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefix_with_non_leading_extras.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefix_with_non_leading_extras.ttl: -------------------------------------------------------------------------------- 1 | @prefix a·̀ͯ‿.⁀: . 2 | a·̀ͯ‿.⁀:s . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefixed_IRI_object.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefixed_IRI_object.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:o . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefixed_IRI_predicate.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefixed_IRI_predicate.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:p . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefixed_name_datatype.nt: -------------------------------------------------------------------------------- 1 | "1"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/prefixed_name_datatype.ttl: -------------------------------------------------------------------------------- 1 | @prefix xsd: . 2 | "1"^^xsd:integer . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/repeated_semis_at_end.nt: -------------------------------------------------------------------------------- 1 | . 2 | . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/repeated_semis_at_end.ttl: -------------------------------------------------------------------------------- 1 | ;; . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/repeated_semis_not_at_end.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/repeated_semis_not_at_end.ttl: -------------------------------------------------------------------------------- 1 | ;; . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/reserved_escaped_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/reserved_escaped_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:\_\~\.\-\!\$\&\'\(\)\*\+\,\;\=\/\?\#\@\%00 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/sole_blankNodePropertyList.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/sole_blankNodePropertyList.ttl: -------------------------------------------------------------------------------- 1 | [ ] . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/test-38.ttl: -------------------------------------------------------------------------------- 1 | # http://bugs.librdf.org/mantis/view.php?id=505 2 | 3 | @prefix rdfs: . 4 | 5 | rdfs:label "\ud801\udc69" . 6 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-eval-bad-04.ttl: -------------------------------------------------------------------------------- 1 | # Bad IRI 2 | . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-eval-struct-01.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-eval-struct-01.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-01.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : <#> . 2 | [] :x :y . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-03.ttl: -------------------------------------------------------------------------------- 1 | # Test , operator 2 | @prefix : . 3 | :a :b :c, 4 | :d, 5 | :e . 6 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-04.ttl: -------------------------------------------------------------------------------- 1 | # Test ; operator 2 | @prefix : . 3 | :a :b :c ; 4 | :d :e ; 5 | :f :g . 6 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-05.nt: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | _:genid2 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-05.ttl: -------------------------------------------------------------------------------- 1 | # Test empty [] operator; not allowed as predicate 2 | @prefix : . 3 | [] :a :b . 4 | :c :d [] . 5 | -------------------------------------------------------------------------------- /tests/turtle-2013/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 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-07.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-07.ttl: -------------------------------------------------------------------------------- 1 | # 'a' only allowed as a predicate 2 | @prefix : . 3 | :a a :b . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-08.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( "apple" "banana" ) . 3 | 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-09.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-09.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( ) . 3 | 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-14.nt: -------------------------------------------------------------------------------- 1 | _:genid1 _:genid2 . 2 | . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-14.ttl: -------------------------------------------------------------------------------- 1 | # Test for : allowed 2 | @prefix : . 3 | 4 | [] : [] . 5 | 6 | : : : . 7 | 8 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-15.nt: -------------------------------------------------------------------------------- 1 | "a long\n\tliteral\nwith\nnewlines" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-15.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal 2 | @prefix : . 3 | :a :b """a long 4 | literal 5 | with 6 | newlines""" . 7 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-17.nt: -------------------------------------------------------------------------------- 1 | "1.0"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-17.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :a :b 1.0 . 4 | 5 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-18.nt: -------------------------------------------------------------------------------- 1 | "" . 2 | "" . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-18.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :a :b "" . 4 | 5 | :c :d """""" . 6 | 7 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-19.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b 1.0 . 3 | :c :d 1 . 4 | :e :f 1.0e0 . 5 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-20.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b -1.0 . 3 | :c :d -1 . 4 | :e :f -1.0e0 . 5 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-21.nt: -------------------------------------------------------------------------------- 1 | "John said: \"Hello World!\"" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-21.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal 2 | @prefix : . 3 | :a :b """John said: "Hello World!\"""" . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-22.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b true . 3 | :c :d false . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-24.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-24.ttl: -------------------------------------------------------------------------------- 1 | # comment line with no final newline test 2 | @prefix : . 3 | :a :b :c . 4 | #foo 5 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-25.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-subm-25.ttl: -------------------------------------------------------------------------------- 1 | @prefix foo: . 2 | @prefix foo: . 3 | 4 | foo:blah foo:blah foo:blah . 5 | 6 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-bad-base-01.ttl: -------------------------------------------------------------------------------- 1 | # @base without URI. 2 | @base . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-bad-base-02.ttl: -------------------------------------------------------------------------------- 1 | # @base in wrong case. 2 | @BASE . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-bad-base-03.ttl: -------------------------------------------------------------------------------- 1 | # FULL STOP used after SPARQL BASE 2 | BASE . 3 |

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

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

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

"123"^^xsd:byte . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-file-01.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/turtle-2013/turtle-syntax-file-01.ttl -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-file-02.ttl: -------------------------------------------------------------------------------- 1 | #Empty file. 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-file-03.ttl: -------------------------------------------------------------------------------- 1 | #One comment, one empty line. 2 | 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-kw-01.ttl: -------------------------------------------------------------------------------- 1 |

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

false . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-kw-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s a :C . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-lists-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p () . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-lists-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p (1 "2" :o) . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-lists-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | (1) :p (1) . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-lists-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | (()) :p (()) . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-lists-05.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | (1 2 (1 2)) :p (( "a") "b" :o) . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/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 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-ns-dots.ttl: -------------------------------------------------------------------------------- 1 | @prefix e.g: . 2 | e.g:s e.g:p e.g:o . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-number-01.ttl: -------------------------------------------------------------------------------- 1 |

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

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

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

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

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

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

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

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

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

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

123.E+1 . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-pname-dots.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s.ubj :p.r.ed :o.bject. 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-pname-esc-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :\~\.\-\!\$\&\'\(\)\*\+\,\;\=\/\?\#\@\_\%AA . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-pname-esc-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :0123\~\.\-\!\$\&\'\(\)\*\+\,\;\=\/\?\#\@\_\%AA123 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-pname-esc-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :xyz\~ :abc\.: : . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-prefix-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-prefix-02.ttl: -------------------------------------------------------------------------------- 1 | PreFIX : 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-prefix-03.ttl: -------------------------------------------------------------------------------- 1 | PREFIX : 2 | :s :p :123 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-prefix-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :%20 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-prefix-05.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | : : : . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/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 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-prefix-08.ttl: -------------------------------------------------------------------------------- 1 | # underscore is a legal pname character 2 | @prefix x: . 3 | x:_ x:p_1 x:o . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-str-esc-01.ttl: -------------------------------------------------------------------------------- 1 | "a\n" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-str-esc-02.ttl: -------------------------------------------------------------------------------- 1 | "a\u0020b" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-str-esc-03.ttl: -------------------------------------------------------------------------------- 1 | "a\U00000020b" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-01.ttl: -------------------------------------------------------------------------------- 1 | "string" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-02.ttl: -------------------------------------------------------------------------------- 1 | "string"@en . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-03.ttl: -------------------------------------------------------------------------------- 1 | "string"@en-uk . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-04.ttl: -------------------------------------------------------------------------------- 1 | 'string' . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-05.ttl: -------------------------------------------------------------------------------- 1 | 'string'@en . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-06.ttl: -------------------------------------------------------------------------------- 1 | 'string'@en-uk . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-07.ttl: -------------------------------------------------------------------------------- 1 | """abc""def''ghi""" . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-08.ttl: -------------------------------------------------------------------------------- 1 | """abc 2 | def""" . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-09.ttl: -------------------------------------------------------------------------------- 1 | '''abc 2 | def''' . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-10.ttl: -------------------------------------------------------------------------------- 1 | """abc 2 | def"""@en . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-string-11.ttl: -------------------------------------------------------------------------------- 1 | '''abc 2 | def'''@en . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-struct-01.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p :o1 , :o2 . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-struct-02.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p1 :o1 ; 3 | :p2 :o2 . 4 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-struct-03.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p1 :o1 ; 3 | :p2 :o2 ; 4 | . 5 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-struct-04.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p1 :o1 ;; 3 | :p2 :o2 4 | . 5 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-struct-05.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :s :p1 :o1 ; 3 | :p2 :o2 ;; 4 | . 5 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-uri-01.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/turtle-syntax-uri-02.ttl: -------------------------------------------------------------------------------- 1 | # x53 is capital S 2 | . 3 | -------------------------------------------------------------------------------- /tests/turtle-2013/underscore_in_localName.nt: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle-2013/underscore_in_localName.ttl: -------------------------------------------------------------------------------- 1 | @prefix p: . 2 | p:s_ . 3 | -------------------------------------------------------------------------------- /tests/turtle/.gitignore: -------------------------------------------------------------------------------- 1 | tests.zip 2 | -------------------------------------------------------------------------------- /tests/turtle/bad-00.ttl: -------------------------------------------------------------------------------- 1 | # prefix name must end in a : 2 | @prefix a <#> . 3 | -------------------------------------------------------------------------------- /tests/turtle/bad-01.ttl: -------------------------------------------------------------------------------- 1 | # Forbidden by RDF - predicate cannot be blank 2 | @prefix : . 3 | :a [ :b :c ] :d . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-02.ttl: -------------------------------------------------------------------------------- 1 | # Forbidden by RDF - predicate cannot be blank 2 | @prefix : . 3 | :a [] :b . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-03.ttl: -------------------------------------------------------------------------------- 1 | # 'a' only allowed as a predicate 2 | @prefix : . 3 | a :a :b . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-04.ttl: -------------------------------------------------------------------------------- 1 | # No comma is allowed in collections 2 | @prefix : . 3 | :a :b ( "apple", "banana" ) . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-05.ttl: -------------------------------------------------------------------------------- 1 | # N3 {}s are not in Turtle 2 | @prefix : . 3 | { :a :b :c . } :d :e . 4 | 5 | -------------------------------------------------------------------------------- /tests/turtle/bad-06.ttl: -------------------------------------------------------------------------------- 1 | # is and of are not in turtle 2 | @prefix : . 3 | :a is :b of :c . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-07.ttl: -------------------------------------------------------------------------------- 1 | # paths are not in turtle 2 | @prefix : . 3 | :a.:b.:c . 4 | :a^:b^:c . 5 | -------------------------------------------------------------------------------- /tests/turtle/bad-08.ttl: -------------------------------------------------------------------------------- 1 | @keywords something. 2 | # @keywords is not in turtle 3 | -------------------------------------------------------------------------------- /tests/turtle/bad-09.ttl: -------------------------------------------------------------------------------- 1 | # implies is not in turtle 2 | @prefix : . 3 | :a => :b . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-10.ttl: -------------------------------------------------------------------------------- 1 | # equivalence is not in turtle 2 | @prefix : . 3 | :a = :b . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-11.ttl: -------------------------------------------------------------------------------- 1 | # @forAll is not in turtle 2 | @prefix : . 3 | @forAll :x . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-12.ttl: -------------------------------------------------------------------------------- 1 | # @forSome is not in turtle 2 | @prefix : . 3 | @forSome :x . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-13.ttl: -------------------------------------------------------------------------------- 1 | # <= is not in turtle 2 | @prefix : . 3 | :a <= :b . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-14.ttl: -------------------------------------------------------------------------------- 1 | # Test long literals with missing end 2 | @prefix : . 3 | :a :b """a long 4 | literal 5 | with 6 | newlines 7 | -------------------------------------------------------------------------------- /tests/turtle/bad-15.out: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /tests/turtle/bad-15.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | [ :a :b ] . 3 | -------------------------------------------------------------------------------- /tests/turtle/bad-16.ttl: -------------------------------------------------------------------------------- 1 | ( 1 2 3 ) . 2 | -------------------------------------------------------------------------------- /tests/turtle/bad-17.out: -------------------------------------------------------------------------------- 1 | "John said: \"Hello World!\"" . 2 | -------------------------------------------------------------------------------- /tests/turtle/bad-17.ttl: -------------------------------------------------------------------------------- 1 | # '-quoted long literal 2 | @prefix : . 3 | :a :b 'John said: "Hello World!"' . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-18.out: -------------------------------------------------------------------------------- 1 | "John said: \"Hello World!\"" . 2 | -------------------------------------------------------------------------------- /tests/turtle/bad-18.ttl: -------------------------------------------------------------------------------- 1 | # '''-quoted long literal 2 | @prefix : . 3 | :a :b '''John said: "Hello World!"''' . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-19.ttl: -------------------------------------------------------------------------------- 1 | # Bad () in predicate position 2 | @prefix : . 3 | :a () :b . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-20.ttl: -------------------------------------------------------------------------------- 1 | # Escape end-of-file 2 | @prefix : . 3 | :a :b """\ -------------------------------------------------------------------------------- /tests/turtle/bad-21.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dajobe/raptor/228da054e2ecf6a24964034dac2876dfdd41daf4/tests/turtle/bad-21.out -------------------------------------------------------------------------------- /tests/turtle/bad-21.ttl: -------------------------------------------------------------------------------- 1 | # Turtle spec does not allow . in namespace prefix (token prefixName) 2 | @prefix foo.bar: . 3 | -------------------------------------------------------------------------------- /tests/turtle/bad-22.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle/bad-22.ttl: -------------------------------------------------------------------------------- 1 | # Turtle spec does not allow . in namespace name (token name) 2 | @prefix ex: . 3 | ex:not.allowed ex:not.allowed ex:not.allowed . 4 | -------------------------------------------------------------------------------- /tests/turtle/bad-24.ttl: -------------------------------------------------------------------------------- 1 | "value"@en^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-00.out: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-00.ttl: -------------------------------------------------------------------------------- 1 | @prefix : <#> . 2 | [] :x :y . 3 | -------------------------------------------------------------------------------- /tests/turtle/test-02.ttl: -------------------------------------------------------------------------------- 1 | # Test , operator 2 | @prefix : . 3 | :a :b :c, 4 | :d, 5 | :e . 6 | -------------------------------------------------------------------------------- /tests/turtle/test-03.ttl: -------------------------------------------------------------------------------- 1 | # Test ; operator 2 | @prefix : . 3 | :a :b :c ; 4 | :d :e ; 5 | :f :g . 6 | -------------------------------------------------------------------------------- /tests/turtle/test-04.out: -------------------------------------------------------------------------------- 1 | _:genid1 . 2 | _:genid2 . 3 | -------------------------------------------------------------------------------- /tests/turtle/test-04.ttl: -------------------------------------------------------------------------------- 1 | # Test empty [] operator; not allowed as predicate 2 | @prefix : . 3 | [] :a :b . 4 | :c :d [] . 5 | -------------------------------------------------------------------------------- /tests/turtle/test-05.ttl: -------------------------------------------------------------------------------- 1 | # Test non empty [] operator; not allowed as predicate 2 | @prefix : . 3 | [ :a :b ] :c :d . 4 | :e :f [ :g :h ] . 5 | -------------------------------------------------------------------------------- /tests/turtle/test-06.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-06.ttl: -------------------------------------------------------------------------------- 1 | # 'a' only allowed as a predicate 2 | @prefix : . 3 | :a a :b . 4 | -------------------------------------------------------------------------------- /tests/turtle/test-07.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( "apple" "banana" ) . 3 | 4 | -------------------------------------------------------------------------------- /tests/turtle/test-08.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-08.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( ) . 3 | 4 | -------------------------------------------------------------------------------- /tests/turtle/test-13.out: -------------------------------------------------------------------------------- 1 | _:genid1 _:genid2 . 2 | . 3 | -------------------------------------------------------------------------------- /tests/turtle/test-13.ttl: -------------------------------------------------------------------------------- 1 | # Test for : allowed 2 | @prefix : . 3 | 4 | [] : [] . 5 | 6 | : : : . 7 | 8 | -------------------------------------------------------------------------------- /tests/turtle/test-17.out: -------------------------------------------------------------------------------- 1 | "a long\n\tliteral\nwith\nnewlines" . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-17.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal 2 | @prefix : . 3 | :a :b """a long 4 | literal 5 | with 6 | newlines""" . 7 | -------------------------------------------------------------------------------- /tests/turtle/test-19.out: -------------------------------------------------------------------------------- 1 | "1.0"^^ . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-19.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :a :b 1.0 . 4 | 5 | -------------------------------------------------------------------------------- /tests/turtle/test-20.out: -------------------------------------------------------------------------------- 1 | "" . 2 | "" . 3 | -------------------------------------------------------------------------------- /tests/turtle/test-20.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :a :b "" . 4 | 5 | :c :d """""" . 6 | 7 | -------------------------------------------------------------------------------- /tests/turtle/test-21.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b 1.0 . 3 | :c :d 1 . 4 | :e :f 1.0e0 . 5 | -------------------------------------------------------------------------------- /tests/turtle/test-22.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b -1.0 . 3 | :c :d -1 . 4 | :e :f -1.0e0 . 5 | -------------------------------------------------------------------------------- /tests/turtle/test-23.out: -------------------------------------------------------------------------------- 1 | "John said: \"Hello World!\"" . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-23.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal 2 | @prefix : . 3 | :a :b """John said: "Hello World!\"""" . 4 | -------------------------------------------------------------------------------- /tests/turtle/test-24.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b true . 3 | :c :d false . 4 | -------------------------------------------------------------------------------- /tests/turtle/test-26.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-26.ttl: -------------------------------------------------------------------------------- 1 | # comment line with no final newline test 2 | @prefix : . 3 | :a :b :c . 4 | #foo 5 | -------------------------------------------------------------------------------- /tests/turtle/test-27.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-27.ttl: -------------------------------------------------------------------------------- 1 | @prefix foo: . 2 | @prefix foo: . 3 | 4 | foo:blah foo:blah foo:blah . 5 | 6 | -------------------------------------------------------------------------------- /tests/turtle/test-29.out: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-29.ttl: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-33.out: -------------------------------------------------------------------------------- 1 | "test-\\" . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-33.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | 3 | :s :p1 """test-\\""" . 4 | -------------------------------------------------------------------------------- /tests/turtle/test-36.out: -------------------------------------------------------------------------------- 1 | "first long literal" . 2 | "second long literal" . 3 | -------------------------------------------------------------------------------- /tests/turtle/test-37.out: -------------------------------------------------------------------------------- 1 | "Cheers"@en-UK . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-37.ttl: -------------------------------------------------------------------------------- 1 | # Test long literal with lang tag 2 | @prefix : . 3 | :a :b """Cheers"""@en-UK . 4 | -------------------------------------------------------------------------------- /tests/turtle/test-38.out: -------------------------------------------------------------------------------- 1 | "\uD801\uDC69" . 2 | -------------------------------------------------------------------------------- /tests/turtle/test-38.ttl: -------------------------------------------------------------------------------- 1 | # http://bugs.librdf.org/mantis/view.php?id=505 2 | 3 | @prefix rdfs: . 4 | 5 | rdfs:label "\ud801\udc69" . 6 | -------------------------------------------------------------------------------- /tests/turtle/test-39-out.ttl: -------------------------------------------------------------------------------- 1 | @prefix rdf: . 2 | @prefix : . 3 | 4 | :a 5 | :b ( ) . 6 | 7 | -------------------------------------------------------------------------------- /tests/turtle/test-39.ttl: -------------------------------------------------------------------------------- 1 | @prefix : . 2 | :a :b ( ) . 3 | 4 | -------------------------------------------------------------------------------- /utils/.gitignore: -------------------------------------------------------------------------------- 1 | .deps 2 | .libs 3 | *.lo 4 | *.o 5 | rapper 6 | rapper.exe 7 | rapper.html 8 | rdfdiff 9 | rdfdiff.exe 10 | 11 | --------------------------------------------------------------------------------