rdf-n3 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +2 -0
- data/.yardopts +10 -0
- data/AUTHORS +1 -0
- data/History.txt +2 -0
- data/README.rdoc +72 -0
- data/Rakefile +46 -0
- data/VERSION +1 -0
- data/example.rb +45 -0
- data/lib/rdf/n3.rb +30 -0
- data/lib/rdf/n3/format.rb +34 -0
- data/lib/rdf/n3/patches/array_hacks.rb +131 -0
- data/lib/rdf/n3/patches/rdf_escape.rb +131 -0
- data/lib/rdf/n3/reader.rb +447 -0
- data/lib/rdf/n3/reader/n3_grammar.rb +0 -0
- data/lib/rdf/n3/reader/n3_grammar.treetop +227 -0
- data/lib/rdf/n3/version.rb +21 -0
- data/lib/rdf/n3/vocabulary.rb +3 -0
- data/lib/rdf/n3/writer.rb +0 -0
- data/rdf-n3.gemspec +638 -0
- data/spec/cwm_spec.rb +32 -0
- data/spec/n3reader_spec.rb +928 -0
- data/spec/rdf_helper.rb +200 -0
- data/spec/rdfcore/Manifest.rdf +5395 -0
- data/spec/rdfcore/amp-in-url/test001.nt +16 -0
- data/spec/rdfcore/amp-in-url/test001.rdf +40 -0
- data/spec/rdfcore/datatypes-intensional/test001.nt +18 -0
- data/spec/rdfcore/datatypes-intensional/test002.nt +18 -0
- data/spec/rdfcore/datatypes/test001.nt +15 -0
- data/spec/rdfcore/datatypes/test001.rdf +29 -0
- data/spec/rdfcore/datatypes/test002.nt +14 -0
- data/spec/rdfcore/datatypes/test002.rdf +27 -0
- data/spec/rdfcore/datatypes/test002b.nt +17 -0
- data/spec/rdfcore/datatypes/test003a.nt +16 -0
- data/spec/rdfcore/datatypes/test003b.nt +16 -0
- data/spec/rdfcore/datatypes/test005a.nt +16 -0
- data/spec/rdfcore/datatypes/test005b.nt +16 -0
- data/spec/rdfcore/datatypes/test006.nt +17 -0
- data/spec/rdfcore/datatypes/test008a.nt +15 -0
- data/spec/rdfcore/datatypes/test008b.nt +15 -0
- data/spec/rdfcore/datatypes/test009a.nt +15 -0
- data/spec/rdfcore/datatypes/test009b.nt +15 -0
- data/spec/rdfcore/datatypes/test010.nt +17 -0
- data/spec/rdfcore/datatypes/test011a.nt +17 -0
- data/spec/rdfcore/datatypes/test011b.nt +17 -0
- data/spec/rdfcore/horst-01/test001.rdf +38 -0
- data/spec/rdfcore/horst-01/test002.rdf +39 -0
- data/spec/rdfcore/horst-01/test003.rdf +40 -0
- data/spec/rdfcore/horst-01/test004.rdf +42 -0
- data/spec/rdfcore/pfps-10/test001a.nt +14 -0
- data/spec/rdfcore/pfps-10/test001b.nt +15 -0
- data/spec/rdfcore/rdf-charmod-literals/test001.nt +15 -0
- data/spec/rdfcore/rdf-charmod-literals/test001.rdf +34 -0
- data/spec/rdfcore/rdf-charmod-uris/test001.nt +14 -0
- data/spec/rdfcore/rdf-charmod-uris/test001.rdf +34 -0
- data/spec/rdfcore/rdf-charmod-uris/test002.nt +15 -0
- data/spec/rdfcore/rdf-charmod-uris/test002.rdf +33 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/error001.rdf +27 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/error002.rdf +34 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.nt +17 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.rdf +27 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.nt +19 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.rdf +37 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.nt +18 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.rdf +29 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.nt +29 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.rdf +33 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.nt +40 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.rdf +28 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.nt +20 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.rdf +32 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.nt +15 -0
- data/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.rdf +28 -0
- data/spec/rdfcore/rdf-element-not-mandatory/test001.nt +10 -0
- data/spec/rdfcore/rdf-element-not-mandatory/test001.rdf +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0001.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0001.rdf +35 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0003.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0003.rdf +35 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0004.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0004.rdf +34 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0005.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0005.rdf +40 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0006.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0006.rdf +32 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0009.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0009.rdf +32 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0010.nt +14 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0010.rdf +38 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0011.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0011.rdf +40 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0012.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0012.rdf +40 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0013.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0013.rdf +40 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0014.nt +15 -0
- data/spec/rdfcore/rdf-ns-prefix-confusion/test0014.rdf +42 -0
- data/spec/rdfcore/rdfms-abouteach/error001.rdf +35 -0
- data/spec/rdfcore/rdfms-abouteach/error002.rdf +35 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/error1.rdf +25 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.nt +14 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.rdf +22 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.nt +14 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.rdf +22 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.nt +14 -0
- data/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.rdf +22 -0
- data/spec/rdfcore/rdfms-duplicate-member-props/test001.nt +17 -0
- data/spec/rdfcore/rdfms-duplicate-member-props/test001.rdf +30 -0
- data/spec/rdfcore/rdfms-empty-property-elements/error001.rdf +33 -0
- data/spec/rdfcore/rdfms-empty-property-elements/error002.rdf +33 -0
- data/spec/rdfcore/rdfms-empty-property-elements/error003.rdf +39 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test001.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test001.rdf +33 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test002.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test002.rdf +31 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test003.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test003.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test004.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test004.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test005.nt +18 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test005.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test006.nt +18 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test006.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test007.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test007.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test008.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test008.rdf +31 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test009.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test009.rdf +32 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test010.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test010.rdf +31 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test011.nt +18 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test011.rdf +30 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test012.nt +18 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test012.rdf +30 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test013.nt +15 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test013.rdf +35 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test014.nt +15 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test014.rdf +34 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test015.nt +15 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test015.rdf +38 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test016.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test016.rdf +31 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test017.nt +14 -0
- data/spec/rdfcore/rdfms-empty-property-elements/test017.rdf +38 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test001.nt +14 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test001.rdf +33 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test002.nt +15 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test002.rdf +33 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test003.nt +14 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test003.rdf +31 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test004.nt +15 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test004.rdf +33 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test005.nt +14 -0
- data/spec/rdfcore/rdfms-identity-anon-resources/test005.rdf +31 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.nt +19 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.rdf +29 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.nt +15 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.rdf +29 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.nt +18 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.rdf +29 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.nt +19 -0
- data/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.rdf +29 -0
- data/spec/rdfcore/rdfms-para196/test001.nt +17 -0
- data/spec/rdfcore/rdfms-para196/test001.rdf +35 -0
- data/spec/rdfcore/rdfms-rdf-id/error001.rdf +26 -0
- data/spec/rdfcore/rdfms-rdf-id/error002.rdf +26 -0
- data/spec/rdfcore/rdfms-rdf-id/error003.rdf +29 -0
- data/spec/rdfcore/rdfms-rdf-id/error004.rdf +27 -0
- data/spec/rdfcore/rdfms-rdf-id/error005.rdf +31 -0
- data/spec/rdfcore/rdfms-rdf-id/error006.rdf +26 -0
- data/spec/rdfcore/rdfms-rdf-id/error007.rdf +29 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-001.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-002.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-003.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-004.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-005.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-006.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-007.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-008.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-009.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-010.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-011.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-012.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-013.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-014.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-015.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-016.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-017.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-018.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-019.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/error-020.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-001.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-001.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-002.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-002.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-003.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-003.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-004.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-004.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-005.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-005.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-006.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-006.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-007.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-007.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-008.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-008.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-009.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-009.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-010.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-010.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-011.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-011.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-012.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-012.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-013.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-013.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-014.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-014.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-015.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-015.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-016.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-016.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-017.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-017.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-018.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-018.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-019.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-019.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-020.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-020.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-021.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-021.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-022.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-022.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-023.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-023.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-024.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-024.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-025.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-025.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-026.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-026.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-027.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-027.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-028.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-028.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-029.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-029.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-030.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-030.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-031.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-031.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-032.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-032.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-033.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-033.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-034.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-034.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-035.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-035.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-036.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-036.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-037.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/test-037.rdf +24 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-001.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-001.rdf +23 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-002.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-002.rdf +25 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-003.nt +1 -0
- data/spec/rdfcore/rdfms-rdf-names-use/warn-003.rdf +24 -0
- data/spec/rdfcore/rdfms-reification-required/test001.nt +15 -0
- data/spec/rdfcore/rdfms-reification-required/test001.rdf +29 -0
- data/spec/rdfcore/rdfms-seq-representation/empty.nt +13 -0
- data/spec/rdfcore/rdfms-seq-representation/test001.nt +19 -0
- data/spec/rdfcore/rdfms-seq-representation/test001.rdf +33 -0
- data/spec/rdfcore/rdfms-seq-representation/test002.nt +14 -0
- data/spec/rdfcore/rdfms-seq-representation/test003a.nt +14 -0
- data/spec/rdfcore/rdfms-seq-representation/test003b.nt +14 -0
- data/spec/rdfcore/rdfms-seq-representation/test004.nt +14 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error001.rdf +26 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error002.rdf +26 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error003.rdf +29 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error004.rdf +25 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error005.rdf +25 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/error006.rdf +28 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test001.nt +14 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test001.rdf +28 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test002.nt +19 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test002.rdf +38 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test003.nt +17 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test003.rdf +28 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test004.nt +21 -0
- data/spec/rdfcore/rdfms-syntax-incomplete/test004.rdf +36 -0
- data/spec/rdfcore/rdfms-uri-substructure/error001.nt +18 -0
- data/spec/rdfcore/rdfms-uri-substructure/test001.nt +17 -0
- data/spec/rdfcore/rdfms-uri-substructure/test001.rdf +29 -0
- data/spec/rdfcore/rdfms-xml-literal-namespaces/test001.nt +13 -0
- data/spec/rdfcore/rdfms-xml-literal-namespaces/test001.rdf +33 -0
- data/spec/rdfcore/rdfms-xml-literal-namespaces/test002.nt +14 -0
- data/spec/rdfcore/rdfms-xml-literal-namespaces/test002.rdf +47 -0
- data/spec/rdfcore/rdfms-xmllang/test001.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test001.rdf +30 -0
- data/spec/rdfcore/rdfms-xmllang/test002.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test002.rdf +29 -0
- data/spec/rdfcore/rdfms-xmllang/test003.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test003.rdf +28 -0
- data/spec/rdfcore/rdfms-xmllang/test004.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test004.rdf +28 -0
- data/spec/rdfcore/rdfms-xmllang/test005.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test005.rdf +28 -0
- data/spec/rdfcore/rdfms-xmllang/test006.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test006.rdf +29 -0
- data/spec/rdfcore/rdfms-xmllang/test007a.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test007b.nt +14 -0
- data/spec/rdfcore/rdfms-xmllang/test007c.nt +14 -0
- data/spec/rdfcore/rdfs-container-membership-superProperty/not1C.rdf +13 -0
- data/spec/rdfcore/rdfs-container-membership-superProperty/not1P.rdf +14 -0
- data/spec/rdfcore/rdfs-domain-and-range/nonconclusions005.rdf +28 -0
- data/spec/rdfcore/rdfs-domain-and-range/nonconclusions006.rdf +28 -0
- data/spec/rdfcore/rdfs-domain-and-range/premises005.rdf +32 -0
- data/spec/rdfcore/rdfs-domain-and-range/premises006.rdf +32 -0
- data/spec/rdfcore/rdfs-domain-and-range/test001.nt +16 -0
- data/spec/rdfcore/rdfs-domain-and-range/test001.rdf +29 -0
- data/spec/rdfcore/rdfs-domain-and-range/test002.nt +16 -0
- data/spec/rdfcore/rdfs-domain-and-range/test002.rdf +29 -0
- data/spec/rdfcore/rdfs-entailment/test001.nt +16 -0
- data/spec/rdfcore/rdfs-entailment/test002.nt +15 -0
- data/spec/rdfcore/rdfs-no-cycles-in-subClassOf/test001.nt +18 -0
- data/spec/rdfcore/rdfs-no-cycles-in-subClassOf/test001.rdf +37 -0
- data/spec/rdfcore/rdfs-no-cycles-in-subPropertyOf/test001.nt +18 -0
- data/spec/rdfcore/rdfs-no-cycles-in-subPropertyOf/test001.rdf +40 -0
- data/spec/rdfcore/rdfs-subClassOf-a-Property/test001.nt +15 -0
- data/spec/rdfcore/rdfs-subPropertyOf-semantics/test001.nt +24 -0
- data/spec/rdfcore/rdfs-subPropertyOf-semantics/test002.nt +21 -0
- data/spec/rdfcore/statement-entailment/test001a.nt +12 -0
- data/spec/rdfcore/statement-entailment/test001b.nt +2 -0
- data/spec/rdfcore/statement-entailment/test002a.nt +2 -0
- data/spec/rdfcore/statement-entailment/test002b.nt +5 -0
- data/spec/rdfcore/tex-01/test001.rdf +34 -0
- data/spec/rdfcore/tex-01/test002.rdf +33 -0
- data/spec/rdfcore/unrecognised-xml-attributes/test001.nt +15 -0
- data/spec/rdfcore/unrecognised-xml-attributes/test001.rdf +31 -0
- data/spec/rdfcore/unrecognised-xml-attributes/test002.nt +14 -0
- data/spec/rdfcore/unrecognised-xml-attributes/test002.rdf +32 -0
- data/spec/rdfcore/xml-canon/test001.nt +16 -0
- data/spec/rdfcore/xml-canon/test001.rdf +28 -0
- data/spec/rdfcore/xmlbase/test001.nt +14 -0
- data/spec/rdfcore/xmlbase/test001.rdf +27 -0
- data/spec/rdfcore/xmlbase/test002.nt +14 -0
- data/spec/rdfcore/xmlbase/test002.rdf +28 -0
- data/spec/rdfcore/xmlbase/test003.nt +14 -0
- data/spec/rdfcore/xmlbase/test003.rdf +25 -0
- data/spec/rdfcore/xmlbase/test004.nt +18 -0
- data/spec/rdfcore/xmlbase/test004.rdf +27 -0
- data/spec/rdfcore/xmlbase/test006.nt +15 -0
- data/spec/rdfcore/xmlbase/test006.rdf +26 -0
- data/spec/rdfcore/xmlbase/test007.nt +14 -0
- data/spec/rdfcore/xmlbase/test007.rdf +25 -0
- data/spec/rdfcore/xmlbase/test008.nt +14 -0
- data/spec/rdfcore/xmlbase/test008.rdf +25 -0
- data/spec/rdfcore/xmlbase/test009.nt +14 -0
- data/spec/rdfcore/xmlbase/test009.rdf +26 -0
- data/spec/rdfcore/xmlbase/test010.nt +14 -0
- data/spec/rdfcore/xmlbase/test010.rdf +26 -0
- data/spec/rdfcore/xmlbase/test011.nt +14 -0
- data/spec/rdfcore/xmlbase/test011.rdf +27 -0
- data/spec/rdfcore/xmlbase/test013.nt +15 -0
- data/spec/rdfcore/xmlbase/test013.rdf +28 -0
- data/spec/rdfcore/xmlbase/test014.nt +15 -0
- data/spec/rdfcore/xmlbase/test014.rdf +28 -0
- data/spec/rdfcore/xmlsch-02/test001.rdf +34 -0
- data/spec/rdfcore/xmlsch-02/test002.rdf +34 -0
- data/spec/rdfcore/xmlsch-02/test003.rdf +37 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +11 -0
- data/spec/swap_helper.rb +136 -0
- data/spec/swap_spec.rb +77 -0
- data/spec/swap_test/.DS_Store +0 -0
- data/spec/swap_test/animal.rdf +17 -0
- data/spec/swap_test/anon-prop.n3 +14 -0
- data/spec/swap_test/anonymous_loop.n3 +2 -0
- data/spec/swap_test/contexts.n3 +16 -0
- data/spec/swap_test/daml-pref.n3 +10 -0
- data/spec/swap_test/i18n/hiragana.n3 +22 -0
- data/spec/swap_test/i18n/n3string.n3 +4 -0
- data/spec/swap_test/list/itemType.rdf +12 -0
- data/spec/swap_test/lists-simple.n3 +40 -0
- data/spec/swap_test/lists.n3 +35 -0
- data/spec/swap_test/n3/.DS_Store +0 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10001.nt +3 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10002.nt +7 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10003.nt +3 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10004.nt +119 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10005.nt +3 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10006.nt +225 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10007.nt +79 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10008.nt +5 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10009.nt +13 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10010.nt +21 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10011.nt +9 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10012.nt +53 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10013.nt +19 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10014.nt +103 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10015.nt +103 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10016.nt +3 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10017.nt +151 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10018.nt +9 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10019.nt +3 -0
- data/spec/swap_test/n3/n3parser.tests_n3_10020.nt +13 -0
- data/spec/swap_test/n3parser.tests +160 -0
- data/spec/swap_test/nodeID/classes.n3 +9 -0
- data/spec/swap_test/nodeID/classes.ref.rdf +15 -0
- data/spec/swap_test/nodeID/ex1.rdf +15 -0
- data/spec/swap_test/norm/fix.rdf +33 -0
- data/spec/swap_test/owl-ex.rdf +150 -0
- data/spec/swap_test/ref/animal.n3 +11 -0
- data/spec/swap_test/ref/anon-prop-1.n3 +8 -0
- data/spec/swap_test/ref/anonymous_loop.ref +7 -0
- data/spec/swap_test/ref/bnode.n3 +6 -0
- data/spec/swap_test/ref/bnode.rdf +16 -0
- data/spec/swap_test/ref/colon-in-uri.n3 +15 -0
- data/spec/swap_test/ref/daml-ex.n3 +103 -0
- data/spec/swap_test/ref/daml-ont.n3 +289 -0
- data/spec/swap_test/ref/djb1a-out.n3 +4 -0
- data/spec/swap_test/ref/dot-dash.n3 +8 -0
- data/spec/swap_test/ref/in-xml-t.n3 +4 -0
- data/spec/swap_test/ref/itemType.n3 +9 -0
- data/spec/swap_test/ref/keywords1.n3 +11 -0
- data/spec/swap_test/ref/keywords2.n3 +11 -0
- data/spec/swap_test/ref/lists-simple-1.rdf +108 -0
- data/spec/swap_test/ref/lists.n3 +43 -0
- data/spec/swap_test/ref/lstring-out.n3 +20 -0
- data/spec/swap_test/ref/n3string.n3 +13 -0
- data/spec/swap_test/ref/no-last-nl.n3 +3 -0
- data/spec/swap_test/ref/numbers.n3 +18 -0
- data/spec/swap_test/ref/path1.n3 +8 -0
- data/spec/swap_test/ref/path2.n3 +39 -0
- data/spec/swap_test/ref/prefix1.rdf +31 -0
- data/spec/swap_test/ref/prefix3.rdf +31 -0
- data/spec/swap_test/ref/rdf-redefine.rdf +11 -0
- data/spec/swap_test/ref/reluri-1.rdf +18 -0
- data/spec/swap_test/ref/strquot.n3 +23 -0
- data/spec/swap_test/ref/strquot_a.n3 +23 -0
- data/spec/swap_test/ref/xml-base3.n3 +5 -0
- data/spec/swap_test/ref/xml-redefine.rdf +20 -0
- data/spec/swap_test/ref/xml-redefine2.rdf +23 -0
- data/spec/swap_test/ref/xml-syntax-basic-serialization.rdf +10 -0
- data/spec/swap_test/ref/xmllit.nt +3 -0
- data/spec/swap_test/regression.n3 +231 -0
- data/spec/swap_test/reluri-1.n3 +10 -0
- data/spec/swap_test/strquot.n3 +23 -0
- data/spec/swap_test/syntax/colon-in-uri.rdf +27 -0
- data/spec/swap_test/syntax/djb1a.n3 +3 -0
- data/spec/swap_test/syntax/dot-dash.n3 +15 -0
- data/spec/swap_test/syntax/equals1.n3 +1 -0
- data/spec/swap_test/syntax/equals2.n3 +1 -0
- data/spec/swap_test/syntax/keywords1.n3 +17 -0
- data/spec/swap_test/syntax/keywords2.n3 +18 -0
- data/spec/swap_test/syntax/lstring.n3 +26 -0
- data/spec/swap_test/syntax/neg-formula-predicate.n3 +1 -0
- data/spec/swap_test/syntax/neg-keywords3.n3 +1 -0
- data/spec/swap_test/syntax/neg-literal-predicate.n3 +1 -0
- data/spec/swap_test/syntax/neg-single-quote.n3 +1 -0
- data/spec/swap_test/syntax/neg-thisadoc.n3 +1 -0
- data/spec/swap_test/syntax/no-last-nl.n3 +2 -0
- data/spec/swap_test/syntax/numbers.n3 +26 -0
- data/spec/swap_test/syntax/path1.n3 +23 -0
- data/spec/swap_test/syntax/path2.n3 +31 -0
- data/spec/swap_test/syntax/qvars1.n3 +19 -0
- data/spec/swap_test/syntax/qvars2.n3 +19 -0
- data/spec/swap_test/syntax/this-quantifiers.n3 +164 -0
- data/spec/swap_test/syntax/this-rules.n3 +43 -0
- data/spec/swap_test/syntax/too-nested.n3 +25 -0
- data/spec/swap_test/syntax/trailing-semicolon.n3 +12 -0
- data/spec/swap_test/syntax/zero-objects.n3 +1 -0
- data/spec/swap_test/syntax/zero-predicates.n3 +3 -0
- data/spec/swap_test/tests-work.txt +25 -0
- data/spec/swap_test/xml-syntax/basic-serialization.n3 +8 -0
- data/spec/swap_test/xml-syntax/in-xml.xml +13 -0
- data/spec/swap_test/xml-syntax/non-ascii-pred.rdf +14 -0
- data/spec/swap_test/xml-syntax/rdf_prefix.n3 +2 -0
- data/spec/swap_test/xml-syntax/xml_prefix.n3 +7 -0
- data/spec/swap_test/xml-syntax/xml_prefix2.n3 +9 -0
- data/spec/swap_test/xml-syntax/xmlbase3.rdf +10 -0
- data/spec/swap_test/xml-syntax/xmllit.rdf +33 -0
- data/spec/triple_spec.rb +236 -0
- data/spec/turtle/README.txt +20 -0
- data/spec/turtle/bad-00.ttl +2 -0
- data/spec/turtle/bad-01.ttl +3 -0
- data/spec/turtle/bad-02.ttl +3 -0
- data/spec/turtle/bad-03.ttl +3 -0
- data/spec/turtle/bad-04.ttl +3 -0
- data/spec/turtle/bad-05.ttl +4 -0
- data/spec/turtle/bad-06.ttl +3 -0
- data/spec/turtle/bad-07.ttl +4 -0
- data/spec/turtle/bad-08.ttl +2 -0
- data/spec/turtle/bad-09.ttl +3 -0
- data/spec/turtle/bad-10.ttl +3 -0
- data/spec/turtle/bad-11.ttl +3 -0
- data/spec/turtle/bad-12.ttl +3 -0
- data/spec/turtle/bad-13.ttl +3 -0
- data/spec/turtle/bad-14.ttl +6 -0
- data/spec/turtle/manifest-bad.ttl +88 -0
- data/spec/turtle/manifest.ttl +215 -0
- data/spec/turtle/rdf-schema.out +126 -0
- data/spec/turtle/rdf-schema.ttl +156 -0
- data/spec/turtle/rdfq-results.out +36 -0
- data/spec/turtle/rdfq-results.ttl +39 -0
- data/spec/turtle/rdfs-namespace.out +131 -0
- data/spec/turtle/rdfs-namespace.ttl +160 -0
- data/spec/turtle/test-00.out +1 -0
- data/spec/turtle/test-00.ttl +2 -0
- data/spec/turtle/test-01.out +3 -0
- data/spec/turtle/test-01.ttl +7 -0
- data/spec/turtle/test-02.out +3 -0
- data/spec/turtle/test-02.ttl +5 -0
- data/spec/turtle/test-03.out +3 -0
- data/spec/turtle/test-03.ttl +5 -0
- data/spec/turtle/test-04.out +2 -0
- data/spec/turtle/test-04.ttl +4 -0
- data/spec/turtle/test-05.out +4 -0
- data/spec/turtle/test-05.ttl +4 -0
- data/spec/turtle/test-06.out +1 -0
- data/spec/turtle/test-06.ttl +3 -0
- data/spec/turtle/test-07.out +5 -0
- data/spec/turtle/test-07.ttl +3 -0
- data/spec/turtle/test-08.out +1 -0
- data/spec/turtle/test-08.ttl +3 -0
- data/spec/turtle/test-09.out +4 -0
- data/spec/turtle/test-09.ttl +10 -0
- data/spec/turtle/test-10.out +5 -0
- data/spec/turtle/test-10.ttl +5 -0
- data/spec/turtle/test-11.out +4 -0
- data/spec/turtle/test-11.ttl +10 -0
- data/spec/turtle/test-12.out +4 -0
- data/spec/turtle/test-12.ttl +9 -0
- data/spec/turtle/test-13.out +2 -0
- data/spec/turtle/test-13.ttl +7 -0
- data/spec/turtle/test-14.out +10000 -0
- data/spec/turtle/test-14.ttl +10002 -0
- data/spec/turtle/test-15.out +10000 -0
- data/spec/turtle/test-15.ttl +3 -0
- data/spec/turtle/test-16.out +10000 -0
- data/spec/turtle/test-16.ttl +10002 -0
- data/spec/turtle/test-17.out +1 -0
- data/spec/turtle/test-17.ttl +6 -0
- data/spec/turtle/test-18.out +2 -0
- data/spec/turtle/test-18.ttl +9 -0
- data/spec/turtle/test-19.out +1 -0
- data/spec/turtle/test-19.ttl +4 -0
- data/spec/turtle/test-20.out +2 -0
- data/spec/turtle/test-20.ttl +6 -0
- data/spec/turtle/test-21.out +3 -0
- data/spec/turtle/test-21.ttl +4 -0
- data/spec/turtle/test-22.out +3 -0
- data/spec/turtle/test-22.ttl +4 -0
- data/spec/turtle/test-23.out +1 -0
- data/spec/turtle/test-23.ttl +3 -0
- data/spec/turtle/test-24.out +2 -0
- data/spec/turtle/test-24.ttl +3 -0
- data/spec/turtle/test-25.out +7 -0
- data/spec/turtle/test-25.ttl +14 -0
- data/spec/turtle/test-26.out +1 -0
- data/spec/turtle/test-26.ttl +4 -0
- data/spec/turtle/test-27.out +1 -0
- data/spec/turtle/test-27.ttl +5 -0
- data/spec/turtle/test-28-out.ttl +6 -0
- data/spec/turtle/test-28.out +22 -0
- data/spec/turtle/test-28.ttl +22 -0
- data/spec/turtle/test-29.out +1 -0
- data/spec/turtle/test-29.ttl +1 -0
- data/spec/turtle/test-30.out +5 -0
- data/spec/turtle/test-30.ttl +12 -0
- data/spec/turtle_serializer_spec.rb +226 -0
- data/spec/turtle_spec.rb +64 -0
- metadata +711 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
|
2
|
+
_:g35 <http://www.w3.org/2002/07/owl#oneOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
3
|
+
|
4
|
+
_:g36 <http://www.w3.org/2002/07/owl#oneOf> _:li2 .
|
5
|
+
|
6
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g11 .
|
7
|
+
|
8
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li1 .
|
9
|
+
|
10
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g15 .
|
11
|
+
|
12
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
13
|
+
|
14
|
+
_:g37 <http://www.w3.org/2002/07/owl#oneOf> _:li3 .
|
15
|
+
|
16
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g23 .
|
17
|
+
|
18
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
19
|
+
|
20
|
+
<http://www.w3.org/2000/10/swap/test/contexts.n3#assumption> <http://www.w3.org/2002/07/owl#sameAs> _:g8 .
|
21
|
+
|
22
|
+
<http://www.w3.org/2000/10/swap/test/contexts.n3#conclusion> <http://www.w3.org/2002/07/owl#sameAs> _:g20 .
|
23
|
+
|
24
|
+
<http://www.w3.org/2000/10/swap/test/contexts.n3#trivialTruth> <http://www.w3.org/2002/07/owl#sameAs> _:g28 .
|
25
|
+
|
26
|
+
_:g8 <http://www.w3.org/2004/06/rei#existentials> _:g35 .
|
27
|
+
|
28
|
+
_:g8 <http://www.w3.org/2004/06/rei#statements> _:g36 .
|
29
|
+
|
30
|
+
_:g8 <http://www.w3.org/2004/06/rei#universals> _:g35 .
|
31
|
+
|
32
|
+
_:g11 <http://www.w3.org/2004/06/rei#object> _:g14 .
|
33
|
+
|
34
|
+
_:g11 <http://www.w3.org/2004/06/rei#predicate> _:g13 .
|
35
|
+
|
36
|
+
_:g11 <http://www.w3.org/2004/06/rei#subject> _:g12 .
|
37
|
+
|
38
|
+
_:g12 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/contexts.n3#fred" .
|
39
|
+
|
40
|
+
_:g13 <http://www.w3.org/2004/06/rei#uri> "http://www.example.org/utilities#knows" .
|
41
|
+
|
42
|
+
_:g14 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/contexts.n3#john" .
|
43
|
+
|
44
|
+
_:g15 <http://www.w3.org/2004/06/rei#object> _:g18 .
|
45
|
+
|
46
|
+
_:g15 <http://www.w3.org/2004/06/rei#predicate> _:g17 .
|
47
|
+
|
48
|
+
_:g15 <http://www.w3.org/2004/06/rei#subject> _:g16 .
|
49
|
+
|
50
|
+
_:g16 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/contexts.n3#john" .
|
51
|
+
|
52
|
+
_:g17 <http://www.w3.org/2004/06/rei#uri> "http://www.example.org/utilities#knows" .
|
53
|
+
|
54
|
+
_:g18 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/contexts.n3#mary" .
|
55
|
+
|
56
|
+
_:g20 <http://www.w3.org/2004/06/rei#existentials> _:g35 .
|
57
|
+
|
58
|
+
_:g20 <http://www.w3.org/2004/06/rei#statements> _:g37 .
|
59
|
+
|
60
|
+
_:g20 <http://www.w3.org/2004/06/rei#universals> _:g35 .
|
61
|
+
|
62
|
+
_:g23 <http://www.w3.org/2004/06/rei#object> _:g26 .
|
63
|
+
|
64
|
+
_:g23 <http://www.w3.org/2004/06/rei#predicate> _:g25 .
|
65
|
+
|
66
|
+
_:g23 <http://www.w3.org/2004/06/rei#subject> _:g24 .
|
67
|
+
|
68
|
+
_:g24 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/contexts.n3#fred" .
|
69
|
+
|
70
|
+
_:g25 <http://www.w3.org/2004/06/rei#uri> "http://www.example.org/utilities#knows" .
|
71
|
+
|
72
|
+
_:g26 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/contexts.n3#mary" .
|
73
|
+
|
74
|
+
_:g28 <http://www.w3.org/2004/06/rei#existentials> _:g35 .
|
75
|
+
|
76
|
+
_:g28 <http://www.w3.org/2004/06/rei#statements> _:g35 .
|
77
|
+
|
78
|
+
_:g28 <http://www.w3.org/2004/06/rei#universals> _:g35 .
|
79
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
|
2
|
+
<http://www.w3.org/2000/10/swap/test/strquot.n3> <http://purl.org/dc/elements/1.1/description> "testing string parsing in N3.\nHmm... how much of this is in the primer?\nHow much should be there?\n@@ Holding off on unicode until support\nin python is sufficiently deployed\n(e.g. python on tux doesn't grok,\nnor does pythonwin on TimBL's laptop).\n" .
|
3
|
+
|
4
|
+
<http://www.w3.org/2000/10/swap/test/strquot.n3#martin> <http://www.w3.org/2000/10/swap/test/strquot.n3#surname> "D\u00FCrst" .
|
5
|
+
|
6
|
+
<http://www.w3.org/2000/10/swap/test/strquot.n3#x> <http://www.w3.org/2000/10/swap/test/strquot.n3#prop> "simple string" .
|
7
|
+
|
8
|
+
<http://www.w3.org/2000/10/swap/test/strquot.n3#y> <http://www.w3.org/2000/10/swap/test/strquot.n3#prop> "triple quoted\nstring with newlines in it." .
|
9
|
+
|
10
|
+
<http://www.w3.org/2000/10/swap/test/strquot.n3#z> <http://www.w3.org/2000/10/swap/test/strquot.n3#prop> "string with \" escaped quote marks" .
|
11
|
+
|
12
|
+
<http://www.w3.org/2000/10/swap/test/strquot.n3#zz> <http://www.w3.org/2000/10/swap/test/strquot.n3#escapes> "\\\"\a\b\f\r\t\v" .
|
13
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
<http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#D%C3%BCrst> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> "URI percent ^encoded as C3, BC" .
|
3
|
+
|
4
|
+
<http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#D\u00FCrst> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> "URI straight in UTF8" .
|
5
|
+
|
6
|
+
_:L9C7 <http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#script> "\u3072\u3089\u304C\u306A" .
|
7
|
+
|
8
|
+
_:L9C7 <http://www.w3.org/2000/01/rdf-schema#label> "Martin J D\u00FCrst" .
|
9
|
+
|
10
|
+
_:L11C2 <http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#related> <http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#\u3072\u3089\u304C\u306A> .
|
11
|
+
|
12
|
+
_:L11C2 <http://www.w3.org/2000/01/rdf-schema#label> "A test with a non-ascii qname" .
|
13
|
+
|
14
|
+
_:L12C2 <http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#related> <http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#D\u00FCrst> .
|
15
|
+
|
16
|
+
_:L12C2 <http://www.w3.org/2000/01/rdf-schema#label> "A test with a non-ascii fragid" .
|
17
|
+
|
18
|
+
_:L15C2 <http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#related> <http://www.w3.org/2000/10/swap/test/i18n/hiragana.n3#D%C3%BCrst> .
|
19
|
+
|
20
|
+
_:L15C2 <http://www.w3.org/2000/01/rdf-schema#label> "A test with a percent-encoded unicode char in an IRI" .
|
21
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
|
2
|
+
<http://www.w3.org/2000/10/swap/test/syntax/foo.n3#albert> <http://www.daml.example.org/2001/03/fam#mother> _:L18C10 .
|
3
|
+
|
4
|
+
_:L18C10 <http://www.daml.example.org/2001/03/fam#sister> <http://www.w3.org/2000/10/swap/test/syntax/foo.n3#auntieAnne> .
|
5
|
+
|
6
|
+
_:L20C10 <http://www.daml.example.org/2001/03/fam#father> <http://www.w3.org/2000/10/swap/test/syntax/foo.n3#albert> .
|
7
|
+
|
8
|
+
_:L20C10 <http://www.daml.example.org/2001/03/fam#sister> <http://www.w3.org/2000/10/swap/test/syntax/foo.n3#nieceBertha> .
|
9
|
+
|
@@ -0,0 +1,53 @@
|
|
1
|
+
|
2
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "1" .
|
3
|
+
|
4
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li1 .
|
5
|
+
|
6
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "2" .
|
7
|
+
|
8
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
9
|
+
|
10
|
+
_:li4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:L27C7 .
|
11
|
+
|
12
|
+
_:li4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li3 .
|
13
|
+
|
14
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:L27C16 .
|
15
|
+
|
16
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
17
|
+
|
18
|
+
_:li5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:L27C45 .
|
19
|
+
|
20
|
+
_:li5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
21
|
+
|
22
|
+
_:li2 <http://www.w3.org/2000/10/swap/math#sum> _:L20C12 .
|
23
|
+
|
24
|
+
_:li4 <http://www.w3.org/2000/10/swap/test/syntax/path2.n3#relatedTo> _:li5 .
|
25
|
+
|
26
|
+
<http://www.w3.org/2000/10/swap/test/syntax/a> <http://www.w3.org/2000/10/swap/test/syntax/b> _:L27C7 .
|
27
|
+
|
28
|
+
<http://www.w3.org/2000/10/swap/test/syntax/e> <http://www.w3.org/2000/10/swap/test/syntax/f> _:L27C41 .
|
29
|
+
|
30
|
+
<http://www.w3.org/2000/10/swap/test/syntax/foo.n3#admires> <http://www.w3.org/2000/10/swap/test/syntax/foo.n3#converse> _:L18C21 .
|
31
|
+
|
32
|
+
<http://www.w3.org/2000/10/swap/test/syntax/foo.n3#albert> <http://www.daml.example.org/2001/03/fam#mother> _:L16C10 .
|
33
|
+
|
34
|
+
<http://www.w3.org/2000/10/swap/test/syntax/foo.n3#albert> _:L18C21 <http://www.w3.org/2000/10/swap/test/syntax/foo.n3#grumpy> .
|
35
|
+
|
36
|
+
<http://www.w3.org/2000/10/swap/test/syntax/foo.n3#mentor> <http://www.w3.org/2000/10/swap/test/syntax/foo.n3#inverse> _:L16C29 .
|
37
|
+
|
38
|
+
<http://www.w3.org/2000/10/swap/test/syntax/foo.n3#x> <http://www.w3.org/2000/01/rdf-schema#label> _:L22C22 .
|
39
|
+
|
40
|
+
<http://www.w3.org/2000/10/swap/test/syntax/foo.n3#x> <http://www.w3.org/2000/01/rdf-schema#label> _:L22C38 .
|
41
|
+
|
42
|
+
_:L16C10 _:L16C29 <http://www.w3.org/2000/10/swap/test/syntax/foo.n3#auntieAnne> .
|
43
|
+
|
44
|
+
_:L20C12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/10/swap/test/syntax/foo.n3#THREE> .
|
45
|
+
|
46
|
+
_:L22C22 <http://www.daml.example.org/2000/10/lang#eng> "Help!" .
|
47
|
+
|
48
|
+
_:L22C38 <http://www.daml.example.org/2000/10/lang#fr> "foo" .
|
49
|
+
|
50
|
+
_:L27C16 <http://www.w3.org/2000/10/swap/test/syntax/d> <http://www.w3.org/2000/10/swap/test/syntax/c> .
|
51
|
+
|
52
|
+
_:L27C41 <http://www.w3.org/2000/10/swap/test/syntax/g> _:L27C45 .
|
53
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
|
2
|
+
"Le chat"@fr <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "The french phrase 'Le chat'" .
|
3
|
+
|
4
|
+
"800/600"^^<http://example.com/types#rational> <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "800/600 with datatype http://example.com/types#rational" .
|
5
|
+
|
6
|
+
"2"^^<http://www.w3.org/2001/XMLSchema#decimal> <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "The number 2.0" .
|
7
|
+
|
8
|
+
"2"^^<http://www.w3.org/2001/XMLSchema#decimal> <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "The number 2.0 expressed with extra trailing zeroes" .
|
9
|
+
|
10
|
+
"2000.0"^^<http://www.w3.org/2001/XMLSchema#double> <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "The double precision floating point 2.0e3" .
|
11
|
+
|
12
|
+
"-2"^^<http://www.w3.org/2001/XMLSchema#integer> <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "The integer -2" .
|
13
|
+
|
14
|
+
"0"^^<http://www.w3.org/2001/XMLSchema#integer> <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "Zero" .
|
15
|
+
|
16
|
+
"2"^^<http://www.w3.org/2001/XMLSchema#integer> <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "The integer 2" .
|
17
|
+
|
18
|
+
"2"^^<http://www.w3.org/2001/XMLSchema#integer> <http://www.w3.org/2000/10/swap/test/syntax/numbers.n3#is> "The integer 2 expressed with leading zeroes" .
|
19
|
+
|
@@ -0,0 +1,103 @@
|
|
1
|
+
|
2
|
+
_:g38 <http://www.w3.org/2002/07/owl#oneOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
3
|
+
|
4
|
+
_:g39 <http://www.w3.org/2002/07/owl#oneOf> _:li3 .
|
5
|
+
|
6
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#a" .
|
7
|
+
|
8
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li2 .
|
9
|
+
|
10
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#b" .
|
11
|
+
|
12
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li1 .
|
13
|
+
|
14
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#c" .
|
15
|
+
|
16
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
17
|
+
|
18
|
+
_:g40 <http://www.w3.org/2002/07/owl#oneOf> _:li5 .
|
19
|
+
|
20
|
+
_:li5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g14 .
|
21
|
+
|
22
|
+
_:li5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li4 .
|
23
|
+
|
24
|
+
_:li4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g18 .
|
25
|
+
|
26
|
+
_:li4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
27
|
+
|
28
|
+
_:g41 <http://www.w3.org/2002/07/owl#oneOf> _:li6 .
|
29
|
+
|
30
|
+
_:li6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g27 .
|
31
|
+
|
32
|
+
_:li6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
33
|
+
|
34
|
+
_:g42 <http://www.w3.org/2002/07/owl#oneOf> _:li7 .
|
35
|
+
|
36
|
+
_:li7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g10 .
|
37
|
+
|
38
|
+
_:li7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
39
|
+
|
40
|
+
_:g7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/10/swap/log#Truth> .
|
41
|
+
|
42
|
+
_:g7 <http://www.w3.org/2004/06/rei#existentials> _:g38 .
|
43
|
+
|
44
|
+
_:g7 <http://www.w3.org/2004/06/rei#statements> _:g42 .
|
45
|
+
|
46
|
+
_:g7 <http://www.w3.org/2004/06/rei#universals> _:g39 .
|
47
|
+
|
48
|
+
_:g10 <http://www.w3.org/2004/06/rei#object> _:g24 .
|
49
|
+
|
50
|
+
_:g10 <http://www.w3.org/2004/06/rei#predicate> _:g23 .
|
51
|
+
|
52
|
+
_:g10 <http://www.w3.org/2004/06/rei#subject> _:g11 .
|
53
|
+
|
54
|
+
_:g11 <http://www.w3.org/2004/06/rei#existentials> _:g38 .
|
55
|
+
|
56
|
+
_:g11 <http://www.w3.org/2004/06/rei#statements> _:g40 .
|
57
|
+
|
58
|
+
_:g11 <http://www.w3.org/2004/06/rei#universals> _:g38 .
|
59
|
+
|
60
|
+
_:g14 <http://www.w3.org/2004/06/rei#object> _:g17 .
|
61
|
+
|
62
|
+
_:g14 <http://www.w3.org/2004/06/rei#predicate> _:g16 .
|
63
|
+
|
64
|
+
_:g14 <http://www.w3.org/2004/06/rei#subject> _:g15 .
|
65
|
+
|
66
|
+
_:g15 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#a" .
|
67
|
+
|
68
|
+
_:g16 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#mother" .
|
69
|
+
|
70
|
+
_:g17 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#b" .
|
71
|
+
|
72
|
+
_:g18 <http://www.w3.org/2004/06/rei#object> _:g21 .
|
73
|
+
|
74
|
+
_:g18 <http://www.w3.org/2004/06/rei#predicate> _:g20 .
|
75
|
+
|
76
|
+
_:g18 <http://www.w3.org/2004/06/rei#subject> _:g19 .
|
77
|
+
|
78
|
+
_:g19 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#a" .
|
79
|
+
|
80
|
+
_:g20 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#sister" .
|
81
|
+
|
82
|
+
_:g21 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#c" .
|
83
|
+
|
84
|
+
_:g23 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/log#implies" .
|
85
|
+
|
86
|
+
_:g24 <http://www.w3.org/2004/06/rei#existentials> _:g38 .
|
87
|
+
|
88
|
+
_:g24 <http://www.w3.org/2004/06/rei#statements> _:g41 .
|
89
|
+
|
90
|
+
_:g24 <http://www.w3.org/2004/06/rei#universals> _:g38 .
|
91
|
+
|
92
|
+
_:g27 <http://www.w3.org/2004/06/rei#object> _:g30 .
|
93
|
+
|
94
|
+
_:g27 <http://www.w3.org/2004/06/rei#predicate> _:g29 .
|
95
|
+
|
96
|
+
_:g27 <http://www.w3.org/2004/06/rei#subject> _:g28 .
|
97
|
+
|
98
|
+
_:g28 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#b" .
|
99
|
+
|
100
|
+
_:g29 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#aunt" .
|
101
|
+
|
102
|
+
_:g30 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars1.n3#c" .
|
103
|
+
|
@@ -0,0 +1,103 @@
|
|
1
|
+
|
2
|
+
_:g39 <http://www.w3.org/2002/07/owl#oneOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
3
|
+
|
4
|
+
_:g40 <http://www.w3.org/2002/07/owl#oneOf> _:li2 .
|
5
|
+
|
6
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#b" .
|
7
|
+
|
8
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li1 .
|
9
|
+
|
10
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#c" .
|
11
|
+
|
12
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
13
|
+
|
14
|
+
_:g41 <http://www.w3.org/2002/07/owl#oneOf> _:li3 .
|
15
|
+
|
16
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#_g_L16C3" .
|
17
|
+
|
18
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
19
|
+
|
20
|
+
_:g42 <http://www.w3.org/2002/07/owl#oneOf> _:li5 .
|
21
|
+
|
22
|
+
_:li5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g15 .
|
23
|
+
|
24
|
+
_:li5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li4 .
|
25
|
+
|
26
|
+
_:li4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g19 .
|
27
|
+
|
28
|
+
_:li4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
29
|
+
|
30
|
+
_:g43 <http://www.w3.org/2002/07/owl#oneOf> _:li6 .
|
31
|
+
|
32
|
+
_:li6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g27 .
|
33
|
+
|
34
|
+
_:li6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
35
|
+
|
36
|
+
_:g44 <http://www.w3.org/2002/07/owl#oneOf> _:li7 .
|
37
|
+
|
38
|
+
_:li7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g11 .
|
39
|
+
|
40
|
+
_:li7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
41
|
+
|
42
|
+
_:g8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/10/swap/log#Truth> .
|
43
|
+
|
44
|
+
_:g8 <http://www.w3.org/2004/06/rei#existentials> _:g39 .
|
45
|
+
|
46
|
+
_:g8 <http://www.w3.org/2004/06/rei#statements> _:g44 .
|
47
|
+
|
48
|
+
_:g8 <http://www.w3.org/2004/06/rei#universals> _:g40 .
|
49
|
+
|
50
|
+
_:g11 <http://www.w3.org/2004/06/rei#object> _:g24 .
|
51
|
+
|
52
|
+
_:g11 <http://www.w3.org/2004/06/rei#predicate> _:g23 .
|
53
|
+
|
54
|
+
_:g11 <http://www.w3.org/2004/06/rei#subject> _:g12 .
|
55
|
+
|
56
|
+
_:g12 <http://www.w3.org/2004/06/rei#existentials> _:g41 .
|
57
|
+
|
58
|
+
_:g12 <http://www.w3.org/2004/06/rei#statements> _:g42 .
|
59
|
+
|
60
|
+
_:g12 <http://www.w3.org/2004/06/rei#universals> _:g39 .
|
61
|
+
|
62
|
+
_:g15 <http://www.w3.org/2004/06/rei#object> _:g18 .
|
63
|
+
|
64
|
+
_:g15 <http://www.w3.org/2004/06/rei#predicate> _:g17 .
|
65
|
+
|
66
|
+
_:g15 <http://www.w3.org/2004/06/rei#subject> _:g16 .
|
67
|
+
|
68
|
+
_:g16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/06/rei#BlankNode> .
|
69
|
+
|
70
|
+
_:g17 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#parent" .
|
71
|
+
|
72
|
+
_:g18 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#b" .
|
73
|
+
|
74
|
+
_:g19 <http://www.w3.org/2004/06/rei#object> _:g21 .
|
75
|
+
|
76
|
+
_:g19 <http://www.w3.org/2004/06/rei#predicate> _:g20 .
|
77
|
+
|
78
|
+
_:g19 <http://www.w3.org/2004/06/rei#subject> _:g16 .
|
79
|
+
|
80
|
+
_:g20 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#sister" .
|
81
|
+
|
82
|
+
_:g21 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#c" .
|
83
|
+
|
84
|
+
_:g23 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/log#implies" .
|
85
|
+
|
86
|
+
_:g24 <http://www.w3.org/2004/06/rei#existentials> _:g39 .
|
87
|
+
|
88
|
+
_:g24 <http://www.w3.org/2004/06/rei#statements> _:g43 .
|
89
|
+
|
90
|
+
_:g24 <http://www.w3.org/2004/06/rei#universals> _:g39 .
|
91
|
+
|
92
|
+
_:g27 <http://www.w3.org/2004/06/rei#object> _:g30 .
|
93
|
+
|
94
|
+
_:g27 <http://www.w3.org/2004/06/rei#predicate> _:g29 .
|
95
|
+
|
96
|
+
_:g27 <http://www.w3.org/2004/06/rei#subject> _:g28 .
|
97
|
+
|
98
|
+
_:g28 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#b" .
|
99
|
+
|
100
|
+
_:g29 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#aunt" .
|
101
|
+
|
102
|
+
_:g30 <http://www.w3.org/2004/06/rei#uri> "file:/home/syosi/CVS-local/WWW/2000/10/swap/test/syntax/qvars2.n3#c" .
|
103
|
+
|
@@ -0,0 +1,3 @@
|
|
1
|
+
|
2
|
+
" @prefix : <http://www.w3.org/2000/10/swap/test/crypto/acc.n3#> .\n @prefix crypto: <http://www.w3.org/2000/10/swap/crypto#> .\n @prefix log: <http://www.w3.org/2000/10/swap/log#> .\n @prefix os: <http://www.w3.org/2000/10/swap/os#> .\n @prefix string: <http://www.w3.org/2000/10/swap/string#> .\n \n \"\"\"\nMzE5MDcKCjM2ODkyMzAyMDE1MzgwMjY2NTU5MzgzNjMyMDQyOTM1Mjc4MDk3MzAwNzE4ODMzOTY3\nNTY3NTk1Njg5MjE2Mjk0NzkyMzUyNTQ3OTQzMjI4MjM2MDEwNjQwMTAyMjcxODk0OTY2MzgzNjQ1\nNDQyODQ5Njg3MzUzOTM2NzAyMTI5NDgxNDg4MzIxMzUyODEyMTc1NjIxNjE0NjE5Mzk2MDY4MjE2\nNzk1MzY0NjAxNjE0MzM5NDYzOTIyMDMwMDE4NTEyODMyMTg0NDIyMzI3MzcxNzE5MjcxMzY0ODY1\nMjEzMzU1OTc4Nzk0OTIyMzQ4NDU5NTUxMTQ2MTcyNjE0MTk3ODI2NTg0NDA2Mzg2OTQwMTcwNTE4\nOTY0MDQzNzMxNzEyODc1OTk3NjAyNjE4ODUzNDQ1Mw=3D=3D\n\"\"\" a :RequestKey;\n :authorityName <Tiina>;\n :junk \"327462sjsdfjsakdhfkjsafd32164321\" .\n" <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/10/swap/test/syntax/lstring.n3#test_string> .
|
3
|
+
|
@@ -0,0 +1,151 @@
|
|
1
|
+
|
2
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2000/10/swap/test/test#b> .
|
3
|
+
|
4
|
+
_:li3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li2 .
|
5
|
+
|
6
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2000/10/swap/test/test#c> .
|
7
|
+
|
8
|
+
_:li2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li1 .
|
9
|
+
|
10
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2000/10/swap/test/test#d> .
|
11
|
+
|
12
|
+
_:li1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
13
|
+
|
14
|
+
_:li9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2000/10/swap/test/test#first> .
|
15
|
+
|
16
|
+
_:li9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li8 .
|
17
|
+
|
18
|
+
_:li8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2000/10/swap/test/test#second> .
|
19
|
+
|
20
|
+
_:li8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li7 .
|
21
|
+
|
22
|
+
_:li7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:li5 .
|
23
|
+
|
24
|
+
_:li7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li6 .
|
25
|
+
|
26
|
+
_:li6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2000/10/swap/test/test#fourth> .
|
27
|
+
|
28
|
+
_:li6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
29
|
+
|
30
|
+
_:li5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2000/10/swap/test/test#left3> .
|
31
|
+
|
32
|
+
_:li5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li4 .
|
33
|
+
|
34
|
+
_:li4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/2000/10/swap/test/test#right3> .
|
35
|
+
|
36
|
+
_:li4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
37
|
+
|
38
|
+
_:li11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
39
|
+
|
40
|
+
_:li11 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li10 .
|
41
|
+
|
42
|
+
_:li10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
43
|
+
|
44
|
+
_:li10 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
45
|
+
|
46
|
+
_:li13 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:L17C14 .
|
47
|
+
|
48
|
+
_:li13 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li12 .
|
49
|
+
|
50
|
+
_:li12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:L17C25 .
|
51
|
+
|
52
|
+
_:li12 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
53
|
+
|
54
|
+
_:li14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "subj1" .
|
55
|
+
|
56
|
+
_:li14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
57
|
+
|
58
|
+
_:li16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "subj2a" .
|
59
|
+
|
60
|
+
_:li16 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li15 .
|
61
|
+
|
62
|
+
_:li15 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "subj2b" .
|
63
|
+
|
64
|
+
_:li15 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
65
|
+
|
66
|
+
_:li17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
|
67
|
+
|
68
|
+
_:li17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
69
|
+
|
70
|
+
_:g28 <http://www.w3.org/2002/07/owl#oneOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
71
|
+
|
72
|
+
_:g29 <http://www.w3.org/2002/07/owl#oneOf> _:li20 .
|
73
|
+
|
74
|
+
_:li20 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g12 .
|
75
|
+
|
76
|
+
_:li20 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
77
|
+
|
78
|
+
_:g30 <http://www.w3.org/2002/07/owl#oneOf> _:li21 .
|
79
|
+
|
80
|
+
_:li21 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g20 .
|
81
|
+
|
82
|
+
_:li21 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
83
|
+
|
84
|
+
_:li23 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g9 .
|
85
|
+
|
86
|
+
_:li23 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:li22 .
|
87
|
+
|
88
|
+
_:li22 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:g17 .
|
89
|
+
|
90
|
+
_:li22 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
91
|
+
|
92
|
+
<http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <http://www.w3.org/2000/10/swap/test/test#verb0> <http://www.w3.org/2000/10/swap/test/test#object0> .
|
93
|
+
|
94
|
+
_:li14 <http://www.w3.org/2000/10/swap/test/test#verb1> <http://www.w3.org/2000/10/swap/test/test#object1> .
|
95
|
+
|
96
|
+
_:li16 <http://www.w3.org/2000/10/swap/test/test#verb2> <http://www.w3.org/2000/10/swap/test/test#object2> .
|
97
|
+
|
98
|
+
_:li17 <http://www.w3.org/2000/10/swap/test/lists.n3#linksEqualLists> _:li17 .
|
99
|
+
|
100
|
+
<http://www.w3.org/2000/10/swap/test/test#emptyList> <http://www.w3.org/2002/07/owl#sameAs> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
|
101
|
+
|
102
|
+
<http://www.w3.org/2000/10/swap/test/test#listOf2Empties> <http://www.w3.org/2002/07/owl#sameAs> _:li11 .
|
103
|
+
|
104
|
+
<http://www.w3.org/2000/10/swap/test/test#nested> <http://www.w3.org/2002/07/owl#sameAs> _:li9 .
|
105
|
+
|
106
|
+
<http://www.w3.org/2000/10/swap/test/test#threeItems> <http://www.w3.org/2002/07/owl#sameAs> _:li3 .
|
107
|
+
|
108
|
+
<http://www.w3.org/2000/10/swap/test/test#twoAnons> <http://www.w3.org/2002/07/owl#sameAs> _:li13 .
|
109
|
+
|
110
|
+
<http://www.w3.org/2000/10/swap/test/test#twoFormulae> <http://www.w3.org/2002/07/owl#sameAs> _:li23 .
|
111
|
+
|
112
|
+
_:L17C14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/10/swap/test/test#mother> .
|
113
|
+
|
114
|
+
_:L17C25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/10/swap/test/test#father> .
|
115
|
+
|
116
|
+
_:g9 <http://www.w3.org/2004/06/rei#existentials> _:g28 .
|
117
|
+
|
118
|
+
_:g9 <http://www.w3.org/2004/06/rei#statements> _:g29 .
|
119
|
+
|
120
|
+
_:g9 <http://www.w3.org/2004/06/rei#universals> _:g28 .
|
121
|
+
|
122
|
+
_:g12 <http://www.w3.org/2004/06/rei#object> _:g15 .
|
123
|
+
|
124
|
+
_:g12 <http://www.w3.org/2004/06/rei#predicate> _:g14 .
|
125
|
+
|
126
|
+
_:g12 <http://www.w3.org/2004/06/rei#subject> _:g13 .
|
127
|
+
|
128
|
+
_:g13 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/test#a" .
|
129
|
+
|
130
|
+
_:g14 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" .
|
131
|
+
|
132
|
+
_:g15 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/test#mother" .
|
133
|
+
|
134
|
+
_:g17 <http://www.w3.org/2004/06/rei#existentials> _:g28 .
|
135
|
+
|
136
|
+
_:g17 <http://www.w3.org/2004/06/rei#statements> _:g30 .
|
137
|
+
|
138
|
+
_:g17 <http://www.w3.org/2004/06/rei#universals> _:g28 .
|
139
|
+
|
140
|
+
_:g20 <http://www.w3.org/2004/06/rei#object> _:g23 .
|
141
|
+
|
142
|
+
_:g20 <http://www.w3.org/2004/06/rei#predicate> _:g22 .
|
143
|
+
|
144
|
+
_:g20 <http://www.w3.org/2004/06/rei#subject> _:g21 .
|
145
|
+
|
146
|
+
_:g21 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/test#b" .
|
147
|
+
|
148
|
+
_:g22 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" .
|
149
|
+
|
150
|
+
_:g23 <http://www.w3.org/2004/06/rei#uri> "http://www.w3.org/2000/10/swap/test/test#father" .
|
151
|
+
|