rdf_context 0.4.8 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (248) hide show
  1. data/History.txt +27 -0
  2. data/README.rdoc +22 -9
  3. data/Rakefile +11 -6
  4. data/VERSION +1 -1
  5. data/bin/rdf_context +12 -4
  6. data/lib/rdf_context.rb +3 -1
  7. data/lib/rdf_context/aggregate_graph.rb +86 -0
  8. data/lib/rdf_context/array_hacks.rb +53 -0
  9. data/lib/rdf_context/conjunctive_graph.rb +1 -1
  10. data/lib/rdf_context/exceptions.rb +9 -7
  11. data/lib/rdf_context/graph.rb +174 -15
  12. data/lib/rdf_context/literal.rb +34 -2
  13. data/lib/rdf_context/n3_grammar.treetop +213 -129
  14. data/lib/rdf_context/n3parser.rb +281 -57
  15. data/lib/rdf_context/namespace.rb +23 -12
  16. data/lib/rdf_context/parser.rb +4 -3
  17. data/lib/rdf_context/quoted_graph.rb +38 -0
  18. data/lib/rdf_context/rdfaparser.rb +2 -1
  19. data/lib/rdf_context/rdfxmlparser.rb +4 -3
  20. data/lib/rdf_context/store/abstract_sql_store.rb +4 -4
  21. data/lib/rdf_context/store/abstract_store.rb +5 -1
  22. data/lib/rdf_context/store/sqlite3_store.rb +10 -8
  23. data/lib/rdf_context/string_hacks.rb +44 -21
  24. data/lib/rdf_context/term_utils.rb +73 -4
  25. data/lib/rdf_context/triple.rb +32 -47
  26. data/lib/rdf_context/uriref.rb +33 -26
  27. data/spec/aggregate_graph_spec.rb +59 -0
  28. data/spec/conjunctive_graph_spec.rb +1 -1
  29. data/spec/cwm_spec.rb +32 -0
  30. data/spec/graph_spec.rb +114 -3
  31. data/spec/literal_spec.rb +107 -5
  32. data/spec/matchers.rb +104 -51
  33. data/spec/n3parser_spec.rb +798 -99
  34. data/spec/namespaces_spec.rb +26 -0
  35. data/spec/quoted_graph_spec.rb +0 -0
  36. data/spec/rdf_helper.rb +197 -0
  37. data/spec/rdfa_helper.rb +15 -11
  38. data/spec/rdfa_parser_spec.rb +6 -8
  39. data/spec/rdfxml_spec.rb +21 -28
  40. data/spec/spec_helper.rb +20 -0
  41. data/spec/sqlite3_store_spec.rb +6 -5
  42. data/spec/store_helper.rb +9 -1
  43. data/spec/string_hacks_spec.rb +14 -0
  44. data/spec/{rdfxml_helper.rb → swap_helper.rb} +8 -9
  45. data/spec/swap_spec.rb +77 -0
  46. data/spec/swap_test/animal.rdf +17 -0
  47. data/spec/swap_test/anon-prop.n3 +14 -0
  48. data/spec/swap_test/anonymous_loop.n3 +2 -0
  49. data/spec/swap_test/contexts.n3 +16 -0
  50. data/spec/swap_test/daml-pref.n3 +10 -0
  51. data/spec/swap_test/i18n/hiragana.n3 +22 -0
  52. data/spec/swap_test/i18n/n3string.n3 +4 -0
  53. data/spec/swap_test/list/itemType.rdf +12 -0
  54. data/spec/swap_test/lists-simple.n3 +40 -0
  55. data/spec/swap_test/lists.n3 +35 -0
  56. data/spec/swap_test/n3/n3parser.tests_n3_10001.nt +3 -0
  57. data/spec/swap_test/n3/n3parser.tests_n3_10002.nt +7 -0
  58. data/spec/swap_test/n3/n3parser.tests_n3_10003.nt +3 -0
  59. data/spec/swap_test/n3/n3parser.tests_n3_10004.nt +119 -0
  60. data/spec/swap_test/n3/n3parser.tests_n3_10005.nt +3 -0
  61. data/spec/swap_test/n3/n3parser.tests_n3_10006.nt +225 -0
  62. data/spec/swap_test/n3/n3parser.tests_n3_10007.nt +79 -0
  63. data/spec/swap_test/n3/n3parser.tests_n3_10008.nt +5 -0
  64. data/spec/swap_test/n3/n3parser.tests_n3_10009.nt +13 -0
  65. data/spec/swap_test/n3/n3parser.tests_n3_10010.nt +21 -0
  66. data/spec/swap_test/n3/n3parser.tests_n3_10011.nt +9 -0
  67. data/spec/swap_test/n3/n3parser.tests_n3_10012.nt +53 -0
  68. data/spec/swap_test/n3/n3parser.tests_n3_10013.nt +19 -0
  69. data/spec/swap_test/n3/n3parser.tests_n3_10014.nt +103 -0
  70. data/spec/swap_test/n3/n3parser.tests_n3_10015.nt +103 -0
  71. data/spec/swap_test/n3/n3parser.tests_n3_10016.nt +3 -0
  72. data/spec/swap_test/n3/n3parser.tests_n3_10017.nt +151 -0
  73. data/spec/swap_test/n3/n3parser.tests_n3_10018.nt +9 -0
  74. data/spec/swap_test/n3/n3parser.tests_n3_10019.nt +3 -0
  75. data/spec/swap_test/n3/n3parser.tests_n3_10020.nt +13 -0
  76. data/spec/swap_test/n3parser.tests +160 -0
  77. data/spec/swap_test/nodeID/classes.n3 +9 -0
  78. data/spec/swap_test/nodeID/classes.ref.rdf +15 -0
  79. data/spec/swap_test/nodeID/ex1.rdf +15 -0
  80. data/spec/swap_test/norm/fix.rdf +33 -0
  81. data/spec/swap_test/owl-ex.rdf +150 -0
  82. data/spec/swap_test/ref/animal.n3 +11 -0
  83. data/spec/swap_test/ref/anon-prop-1.n3 +8 -0
  84. data/spec/swap_test/ref/anonymous_loop.ref +7 -0
  85. data/spec/swap_test/ref/bnode.n3 +6 -0
  86. data/spec/swap_test/ref/bnode.rdf +16 -0
  87. data/spec/swap_test/ref/colon-in-uri.n3 +15 -0
  88. data/spec/swap_test/ref/daml-ex.n3 +103 -0
  89. data/spec/swap_test/ref/daml-ont.n3 +289 -0
  90. data/spec/swap_test/ref/djb1a-out.n3 +4 -0
  91. data/spec/swap_test/ref/dot-dash.n3 +8 -0
  92. data/spec/swap_test/ref/in-xml-t.n3 +4 -0
  93. data/spec/swap_test/ref/itemType.n3 +9 -0
  94. data/spec/swap_test/ref/keywords1.n3 +11 -0
  95. data/spec/swap_test/ref/keywords2.n3 +11 -0
  96. data/spec/swap_test/ref/lists-simple-1.rdf +108 -0
  97. data/spec/swap_test/ref/lists.n3 +43 -0
  98. data/spec/swap_test/ref/lstring-out.n3 +20 -0
  99. data/spec/swap_test/ref/n3string.n3 +13 -0
  100. data/spec/swap_test/ref/no-last-nl.n3 +3 -0
  101. data/spec/swap_test/ref/numbers.n3 +18 -0
  102. data/spec/swap_test/ref/path1.n3 +8 -0
  103. data/spec/swap_test/ref/path2.n3 +39 -0
  104. data/spec/swap_test/ref/prefix1.rdf +31 -0
  105. data/spec/swap_test/ref/prefix3.rdf +31 -0
  106. data/spec/swap_test/ref/rdf-redefine.rdf +11 -0
  107. data/spec/swap_test/ref/reluri-1.rdf +18 -0
  108. data/spec/swap_test/ref/strquot.n3 +23 -0
  109. data/spec/swap_test/ref/strquot_a.n3 +23 -0
  110. data/spec/swap_test/ref/xml-base3.n3 +5 -0
  111. data/spec/swap_test/ref/xml-redefine.rdf +20 -0
  112. data/spec/swap_test/ref/xml-redefine2.rdf +23 -0
  113. data/spec/swap_test/ref/xml-syntax-basic-serialization.rdf +10 -0
  114. data/spec/swap_test/ref/xmllit.nt +3 -0
  115. data/spec/swap_test/regression.n3 +231 -0
  116. data/spec/swap_test/reluri-1.n3 +10 -0
  117. data/spec/swap_test/strquot.n3 +23 -0
  118. data/spec/swap_test/syntax/colon-in-uri.rdf +27 -0
  119. data/spec/swap_test/syntax/djb1a.n3 +3 -0
  120. data/spec/swap_test/syntax/dot-dash.n3 +15 -0
  121. data/spec/swap_test/syntax/equals1.n3 +1 -0
  122. data/spec/swap_test/syntax/equals2.n3 +1 -0
  123. data/spec/swap_test/syntax/keywords1.n3 +17 -0
  124. data/spec/swap_test/syntax/keywords2.n3 +18 -0
  125. data/spec/swap_test/syntax/lstring.n3 +26 -0
  126. data/spec/swap_test/syntax/neg-formula-predicate.n3 +1 -0
  127. data/spec/swap_test/syntax/neg-keywords3.n3 +1 -0
  128. data/spec/swap_test/syntax/neg-literal-predicate.n3 +1 -0
  129. data/spec/swap_test/syntax/neg-single-quote.n3 +1 -0
  130. data/spec/swap_test/syntax/neg-thisadoc.n3 +1 -0
  131. data/spec/swap_test/syntax/no-last-nl.n3 +2 -0
  132. data/spec/swap_test/syntax/numbers.n3 +26 -0
  133. data/spec/swap_test/syntax/path1.n3 +23 -0
  134. data/spec/swap_test/syntax/path2.n3 +31 -0
  135. data/spec/swap_test/syntax/qvars1.n3 +19 -0
  136. data/spec/swap_test/syntax/qvars2.n3 +19 -0
  137. data/spec/swap_test/syntax/this-quantifiers.n3 +164 -0
  138. data/spec/swap_test/syntax/this-rules.n3 +43 -0
  139. data/spec/swap_test/syntax/too-nested.n3 +25 -0
  140. data/spec/swap_test/syntax/trailing-semicolon.n3 +12 -0
  141. data/spec/swap_test/syntax/zero-objects.n3 +1 -0
  142. data/spec/swap_test/syntax/zero-predicates.n3 +3 -0
  143. data/spec/swap_test/tests-work.txt +25 -0
  144. data/spec/swap_test/xml-syntax/basic-serialization.n3 +8 -0
  145. data/spec/swap_test/xml-syntax/in-xml.xml +13 -0
  146. data/spec/swap_test/xml-syntax/non-ascii-pred.rdf +14 -0
  147. data/spec/swap_test/xml-syntax/rdf_prefix.n3 +2 -0
  148. data/spec/swap_test/xml-syntax/xml_prefix.n3 +7 -0
  149. data/spec/swap_test/xml-syntax/xml_prefix2.n3 +9 -0
  150. data/spec/swap_test/xml-syntax/xmlbase3.rdf +10 -0
  151. data/spec/swap_test/xml-syntax/xmllit.rdf +33 -0
  152. data/spec/triple_spec.rb +90 -46
  153. data/spec/turtle/README.txt +20 -0
  154. data/spec/turtle/bad-00.ttl +2 -0
  155. data/spec/turtle/bad-01.ttl +3 -0
  156. data/spec/turtle/bad-02.ttl +3 -0
  157. data/spec/turtle/bad-03.ttl +3 -0
  158. data/spec/turtle/bad-04.ttl +3 -0
  159. data/spec/turtle/bad-05.ttl +4 -0
  160. data/spec/turtle/bad-06.ttl +3 -0
  161. data/spec/turtle/bad-07.ttl +4 -0
  162. data/spec/turtle/bad-08.ttl +2 -0
  163. data/spec/turtle/bad-09.ttl +3 -0
  164. data/spec/turtle/bad-10.ttl +3 -0
  165. data/spec/turtle/bad-11.ttl +3 -0
  166. data/spec/turtle/bad-12.ttl +3 -0
  167. data/spec/turtle/bad-13.ttl +3 -0
  168. data/spec/turtle/bad-14.ttl +6 -0
  169. data/spec/turtle/manifest-bad.ttl +88 -0
  170. data/spec/turtle/manifest.ttl +215 -0
  171. data/spec/turtle/rdf-schema.out +126 -0
  172. data/spec/turtle/rdf-schema.ttl +156 -0
  173. data/spec/turtle/rdfq-results.out +36 -0
  174. data/spec/turtle/rdfq-results.ttl +39 -0
  175. data/spec/turtle/rdfs-namespace.out +131 -0
  176. data/spec/turtle/rdfs-namespace.ttl +160 -0
  177. data/spec/turtle/test-00.out +1 -0
  178. data/spec/turtle/test-00.ttl +2 -0
  179. data/spec/turtle/test-01.out +3 -0
  180. data/spec/turtle/test-01.ttl +7 -0
  181. data/spec/turtle/test-02.out +3 -0
  182. data/spec/turtle/test-02.ttl +5 -0
  183. data/spec/turtle/test-03.out +3 -0
  184. data/spec/turtle/test-03.ttl +5 -0
  185. data/spec/turtle/test-04.out +2 -0
  186. data/spec/turtle/test-04.ttl +4 -0
  187. data/spec/turtle/test-05.out +4 -0
  188. data/spec/turtle/test-05.ttl +4 -0
  189. data/spec/turtle/test-06.out +1 -0
  190. data/spec/turtle/test-06.ttl +3 -0
  191. data/spec/turtle/test-07.out +5 -0
  192. data/spec/turtle/test-07.ttl +3 -0
  193. data/spec/turtle/test-08.out +1 -0
  194. data/spec/turtle/test-08.ttl +3 -0
  195. data/spec/turtle/test-09.out +4 -0
  196. data/spec/turtle/test-09.ttl +10 -0
  197. data/spec/turtle/test-10.out +5 -0
  198. data/spec/turtle/test-10.ttl +5 -0
  199. data/spec/turtle/test-11.out +4 -0
  200. data/spec/turtle/test-11.ttl +10 -0
  201. data/spec/turtle/test-12.out +4 -0
  202. data/spec/turtle/test-12.ttl +9 -0
  203. data/spec/turtle/test-13.out +2 -0
  204. data/spec/turtle/test-13.ttl +7 -0
  205. data/spec/turtle/test-14.out +10000 -0
  206. data/spec/turtle/test-14.ttl +10002 -0
  207. data/spec/turtle/test-15.out +10000 -0
  208. data/spec/turtle/test-15.ttl +3 -0
  209. data/spec/turtle/test-16.out +10000 -0
  210. data/spec/turtle/test-16.ttl +10002 -0
  211. data/spec/turtle/test-17.out +1 -0
  212. data/spec/turtle/test-17.ttl +6 -0
  213. data/spec/turtle/test-18.out +2 -0
  214. data/spec/turtle/test-18.ttl +9 -0
  215. data/spec/turtle/test-19.out +1 -0
  216. data/spec/turtle/test-19.ttl +4 -0
  217. data/spec/turtle/test-20.out +2 -0
  218. data/spec/turtle/test-20.ttl +6 -0
  219. data/spec/turtle/test-21.out +3 -0
  220. data/spec/turtle/test-21.ttl +4 -0
  221. data/spec/turtle/test-22.out +3 -0
  222. data/spec/turtle/test-22.ttl +4 -0
  223. data/spec/turtle/test-23.out +1 -0
  224. data/spec/turtle/test-23.ttl +3 -0
  225. data/spec/turtle/test-24.out +2 -0
  226. data/spec/turtle/test-24.ttl +3 -0
  227. data/spec/turtle/test-25.out +7 -0
  228. data/spec/turtle/test-25.ttl +14 -0
  229. data/spec/turtle/test-26.out +1 -0
  230. data/spec/turtle/test-26.ttl +4 -0
  231. data/spec/turtle/test-27.out +1 -0
  232. data/spec/turtle/test-27.ttl +5 -0
  233. data/spec/turtle/test-28-out.ttl +6 -0
  234. data/spec/turtle/test-28.out +22 -0
  235. data/spec/turtle/test-28.ttl +22 -0
  236. data/spec/turtle/test-29.out +1 -0
  237. data/spec/turtle/test-29.ttl +1 -0
  238. data/spec/turtle/test-30.out +5 -0
  239. data/spec/turtle/test-30.ttl +12 -0
  240. data/spec/turtle_spec.rb +64 -0
  241. data/spec/uriref_spec.rb +74 -34
  242. data/test/n3_tests/rdflib/n3-writer-teset-26.n3 +31 -0
  243. data/test/n3_tests/rdflib/n3-writer-teset-26.nt +14 -0
  244. data/test/rdf_tests/xml-literal-mixed.nt +1 -2
  245. metadata +278 -39
  246. data/lib/rdf_context/n3_grammar.rb +0 -2171
  247. data/test/perf_test/test.rb +0 -11
  248. data/test/perf_test/tommorris.rdf +0 -2267
@@ -0,0 +1,4 @@
1
+ @prefix : <http://example.org/base2#> .
2
+
3
+ :a :b :c .
4
+
@@ -0,0 +1,8 @@
1
+ @prefix : <http://example.com/foo#> .
2
+
3
+ :a :b :c .
4
+
5
+ :hyphen-ated <http://example.com/foo#dot.ted> <http://example.com/foo#hyphen-and.dot> .
6
+
7
+ :minus-_underscore :under_score :underscore_-minus .
8
+
@@ -0,0 +1,4 @@
1
+
2
+ <%s> <http://mems-exchange.org/schema/file/1.0/Run> "45";
3
+ <http://purl.org/dc/elements/1.1/Creator> "%s" .
4
+
@@ -0,0 +1,9 @@
1
+ @prefix : <http://example/palmagent/danger#> .
2
+
3
+ <#2414> a :event;
4
+ :reminders (
5
+ [
6
+ a :reminders_item;
7
+ :seconds_prior 432000 ]
8
+ <http://example/foo#> ) .
9
+
@@ -0,0 +1,11 @@
1
+ @prefix : <foo.n3#> .
2
+
3
+ @forAll :x,
4
+ :y,
5
+ :z.
6
+ @forSome :a,
7
+ :b,
8
+ :c .
9
+
10
+ :b :a :c .
11
+
@@ -0,0 +1,11 @@
1
+ @prefix : <foo.n3#> .
2
+
3
+ @forAll :x,
4
+ :y,
5
+ :z.
6
+ @forSome :a,
7
+ :b,
8
+ :c .
9
+
10
+ :b :a :c .
11
+
@@ -0,0 +1,108 @@
1
+
2
+
3
+
4
+ <rdf:RDF xmlns="http://www.w3.org/2002/07/owl#"
5
+ xmlns:owl="http://www.w3.org/2002/07/owl#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:t="http://example.com/test#">
8
+
9
+ <rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil">
10
+ <t:verb0 rdf:resource="http://example.com/test#object0"/>
11
+ </rdf:Description>
12
+
13
+ <rdf:Description>
14
+ <rdf:first>subj1</rdf:first>
15
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
16
+ <t:verb1 rdf:resource="http://example.com/test#object1"/>
17
+ </rdf:Description>
18
+
19
+ <rdf:Description>
20
+ <rdf:first>subj2a</rdf:first>
21
+ <rdf:rest rdf:parseType="Resource">
22
+ <rdf:first>subj2b</rdf:first>
23
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
24
+ </rdf:rest>
25
+ <t:verb2 rdf:resource="http://example.com/test#object2"/>
26
+ </rdf:Description>
27
+
28
+ <rdf:Description rdf:about="http://example.com/test#a_threebrackets">
29
+ <sameAs rdf:parseType="Resource">
30
+ <rdf:first rdf:parseType="Resource">
31
+ <rdf:first rdf:parseType="Resource">
32
+ <rdf:first rdf:resource="http://example.com/test#fff"/>
33
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
34
+ </rdf:first>
35
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
36
+ </rdf:first>
37
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
38
+ </sameAs>
39
+ </rdf:Description>
40
+
41
+ <rdf:Description rdf:about="http://example.com/test#emptyList">
42
+ <sameAs rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
43
+ </rdf:Description>
44
+
45
+ <rdf:Description rdf:about="http://example.com/test#listOf2Empties">
46
+ <sameAs rdf:parseType="Resource">
47
+ <rdf:first rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
48
+ <rdf:rest rdf:parseType="Resource">
49
+ <rdf:first rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
50
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
51
+ </rdf:rest>
52
+ </sameAs>
53
+ </rdf:Description>
54
+
55
+ <rdf:Description rdf:about="http://example.com/test#nested">
56
+ <sameAs rdf:parseType="Resource">
57
+ <rdf:first rdf:resource="http://example.com/test#first"/>
58
+ <rdf:rest rdf:parseType="Resource">
59
+ <rdf:first rdf:resource="http://example.com/test#second"/>
60
+ <rdf:rest rdf:parseType="Resource">
61
+ <rdf:first rdf:parseType="Resource">
62
+ <rdf:first rdf:resource="http://example.com/test#left3"/>
63
+ <rdf:rest rdf:parseType="Resource">
64
+ <rdf:first rdf:resource="http://example.com/test#right3"/>
65
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
66
+ </rdf:rest>
67
+ </rdf:first>
68
+ <rdf:rest rdf:parseType="Resource">
69
+ <rdf:first rdf:resource="http://example.com/test#fourth"/>
70
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
71
+ </rdf:rest>
72
+ </rdf:rest>
73
+ </rdf:rest>
74
+ </sameAs>
75
+ </rdf:Description>
76
+
77
+ <rdf:Description rdf:about="http://example.com/test#threeItems">
78
+ <sameAs rdf:parseType="Resource">
79
+ <rdf:first rdf:resource="http://example.com/test#b"/>
80
+ <rdf:rest rdf:parseType="Resource">
81
+ <rdf:first rdf:resource="http://example.com/test#c"/>
82
+ <rdf:rest rdf:parseType="Resource">
83
+ <rdf:first rdf:resource="http://example.com/test#d"/>
84
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
85
+ </rdf:rest>
86
+ </rdf:rest>
87
+ </sameAs>
88
+ </rdf:Description>
89
+
90
+ <rdf:Description rdf:about="http://example.com/test#twoAnons">
91
+ <sameAs rdf:parseType="Resource">
92
+ <rdf:first rdf:parseType="Resource">
93
+ <rdf:type rdf:resource="http://example.com/test#mother"/>
94
+ </rdf:first>
95
+ <rdf:rest rdf:parseType="Resource">
96
+ <rdf:first rdf:parseType="Resource">
97
+ <rdf:type rdf:resource="http://example.com/test#father"/>
98
+ </rdf:first>
99
+ <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
100
+ </rdf:rest>
101
+ </sameAs>
102
+ </rdf:Description>
103
+
104
+ <rdf:Description>
105
+ <t:anonVerb12 rdf:resource="http://example.com/test#anonObj12"/>
106
+ <t:verb12 rdf:resource="http://example.com/test#obj12"/>
107
+ </rdf:Description>
108
+ </rdf:RDF>
@@ -0,0 +1,43 @@
1
+ @prefix : <test#> .
2
+
3
+ () :verb0 :object0 .
4
+ ( "subj1" )
5
+ :verb1 :object1 .
6
+ ( "subj2a"
7
+ "subj2b" )
8
+ :verb2 :object2 .
9
+ ( 1 )
10
+ <#linksEqualLists> (
11
+ 1 ) .
12
+
13
+ :emptyList = () .
14
+
15
+ :listOf2Empties = (
16
+ ()
17
+ () ) .
18
+
19
+ :nested = (
20
+ :first
21
+ :second
22
+ (
23
+ :left3
24
+ :right3 )
25
+ :fourth ) .
26
+
27
+ :threeItems = (
28
+ :b
29
+ :c
30
+ :d ) .
31
+
32
+ :twoAnons = (
33
+ [
34
+ a :mother ]
35
+ [
36
+ a :father ] ) .
37
+
38
+ :twoFormulae = (
39
+ {:a a :mother .
40
+ }
41
+ {:b a :father .
42
+ } ) .
43
+
@@ -0,0 +1,20 @@
1
+ @prefix : <#> .
2
+
3
+ """ @prefix : <http://www.w3.org/2000/10/swap/test/crypto/acc.n3#> .
4
+ @prefix crypto: <http://www.w3.org/2000/10/swap/crypto#> .
5
+ @prefix log: <http://www.w3.org/2000/10/swap/log#> .
6
+ @prefix os: <http://www.w3.org/2000/10/swap/os#> .
7
+ @prefix string: <http://www.w3.org/2000/10/swap/string#> .
8
+
9
+ \"""
10
+ MzE5MDcKCjM2ODkyMzAyMDE1MzgwMjY2NTU5MzgzNjMyMDQyOTM1Mjc4MDk3MzAwNzE4ODMzOTY3
11
+ NTY3NTk1Njg5MjE2Mjk0NzkyMzUyNTQ3OTQzMjI4MjM2MDEwNjQwMTAyMjcxODk0OTY2MzgzNjQ1
12
+ NDQyODQ5Njg3MzUzOTM2NzAyMTI5NDgxNDg4MzIxMzUyODEyMTc1NjIxNjE0NjE5Mzk2MDY4MjE2
13
+ Nzk1MzY0NjAxNjE0MzM5NDYzOTIyMDMwMDE4NTEyODMyMTg0NDIyMzI3MzcxNzE5MjcxMzY0ODY1
14
+ MjEzMzU1OTc4Nzk0OTIyMzQ4NDU5NTUxMTQ2MTcyNjE0MTk3ODI2NTg0NDA2Mzg2OTQwMTcwNTE4
15
+ OTY0MDQzNzMxNzEyODc1OTk3NjAyNjE4ODUzNDQ1Mw=3D=3D
16
+ \""" a :RequestKey;
17
+ :authorityName <Tiina>;
18
+ :junk "327462sjsdfjsakdhfkjsafd32164321" .
19
+ """ a :test_string .
20
+
@@ -0,0 +1,13 @@
1
+ @prefix : <#> .
2
+ @prefix log: <http://www.w3.org/2000/10/swap/log#> .
3
+
4
+ @forAll :x .
5
+ {
6
+ {
7
+ :㐭 :b :c .
8
+
9
+ } log:n3String :x .
10
+
11
+ } log:implies {:x a :interesting .
12
+ } .
13
+
@@ -0,0 +1,3 @@
1
+
2
+ <a> <b> <c> .
3
+
@@ -0,0 +1,18 @@
1
+ @prefix : <#> .
2
+
3
+ "Le chat"@fr :is "The french phrase 'Le chat'" .
4
+
5
+ "800/600"^^<http://example.com/types#rational> :is "800/600 with datatype http://example.com/types#rational" .
6
+
7
+ 2.0 :is "The number 2.0",
8
+ "The number 2.0 expressed with extra trailing zeroes" .
9
+
10
+ 2000.0e+00 :is "The double precision floating point 2.0e3" .
11
+
12
+ -2 :is "The integer -2" .
13
+
14
+ 0 :is "Zero" .
15
+
16
+ 2 :is "The integer 2",
17
+ "The integer 2 expressed with leading zeroes" .
18
+
@@ -0,0 +1,8 @@
1
+ @prefix : <foo.n3#> .
2
+ @prefix fam: <http://www.daml.example.org/2001/03/fam#> .
3
+
4
+ :albert fam:mother [
5
+ fam:sister :auntieAnne ] .
6
+ [ fam:father :albert;
7
+ fam:sister :nieceBertha ].
8
+
@@ -0,0 +1,39 @@
1
+ @prefix : <#> .
2
+ @prefix fam: <http://www.daml.example.org/2001/03/fam#> .
3
+ @prefix foo: <foo.n3#> .
4
+ @prefix lang: <http://www.daml.example.org/2000/10/lang#> .
5
+ @prefix math: <http://www.w3.org/2000/10/swap/math#> .
6
+ @prefix s: <http://www.w3.org/2000/01/rdf-schema#> .
7
+
8
+ @forSome :_g0,
9
+ :_g1,
10
+ :_g2,
11
+ :_g3 .
12
+ ( "1"
13
+ "2" )
14
+ math:sum [
15
+ a foo:THREE ] .
16
+ ( :_g2
17
+ [
18
+ <d> <c> ] )
19
+ :relatedTo (
20
+ :_g3 ) .
21
+
22
+ <a> <b> :_g2 .
23
+
24
+ <e> <f> [
25
+ <g> :_g3 ] .
26
+
27
+ foo:admires foo:converse :_g1 .
28
+
29
+ foo:albert fam:mother [
30
+ :_g0 foo:auntieAnne ];
31
+ :_g1 foo:grumpy .
32
+
33
+ foo:mentor foo:inverse :_g0 .
34
+
35
+ foo:x s:label [
36
+ lang:eng "Help!" ],
37
+ [
38
+ lang:fr "foo" ] .
39
+
@@ -0,0 +1,31 @@
1
+
2
+
3
+
4
+ <rdf:RDF xmlns="http://nwalsh.com/pim/Palm/Calendar#"
5
+ xmlns:cal="http://nwalsh.com/pim/Palm/Calendar#"
6
+ xmlns:da="file:/home79536262/ndw/.xmlDate.rdf#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
8
+
9
+ <rdf:Description rdf:about="http://nwalsh.com/pim/Palm/Calendar#_2002_2">
10
+ <da:appointments rdf:parseType="Resource">
11
+ <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"/>
12
+ <rdf:_1 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id166"/>
13
+ <rdf:_2 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id172"/>
14
+ <rdf:_3 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id93"/>
15
+ <rdf:_4 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id193"/>
16
+ <rdf:_5 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id192"/>
17
+ <rdf:_6 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id104"/>
18
+ <rdf:_7 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id157"/>
19
+ <rdf:_8 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id32"/>
20
+ </da:appointments>
21
+ <month>2</month>
22
+ <year>2002</year>
23
+ <rdf:Seq rdf:parseType="Resource">
24
+ <rdf:_1 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_1"/>
25
+ <rdf:_2 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_2"/>
26
+ <rdf:_3 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_3"/>
27
+ <rdf:_4 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_4"/>
28
+ <rdf:_5 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_5"/>
29
+ </rdf:Seq>
30
+ </rdf:Description>
31
+ </rdf:RDF>
@@ -0,0 +1,31 @@
1
+
2
+
3
+
4
+ <rdf:RDF xmlns="http://nwalsh.com/pim/Palm/Calendar#"
5
+ xmlns:cal="http://nwalsh.com/pim/Palm/Calendar#"
6
+ xmlns:da="file:/home79536262/ndw/.xmlDate.rdf#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
8
+
9
+ <rdf:Description rdf:about="http://nwalsh.com/pim/Palm/Calendar#_2002_2">
10
+ <da:appointments rdf:parseType="Resource">
11
+ <rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"/>
12
+ <rdf:_1 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id166"/>
13
+ <rdf:_2 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id172"/>
14
+ <rdf:_3 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id93"/>
15
+ <rdf:_4 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id193"/>
16
+ <rdf:_5 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id192"/>
17
+ <rdf:_6 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id104"/>
18
+ <rdf:_7 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id157"/>
19
+ <rdf:_8 rdf:resource="file:/home79536262/ndw/.xmlDate.rdf#id32"/>
20
+ </da:appointments>
21
+ <month>2</month>
22
+ <year>2002</year>
23
+ <rdf:Seq rdf:parseType="Resource">
24
+ <rdf:_1 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_1"/>
25
+ <rdf:_2 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_2"/>
26
+ <rdf:_3 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_3"/>
27
+ <rdf:_4 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_4"/>
28
+ <rdf:_5 rdf:resource="http://nwalsh.com/pim/Palm/Calendar#_week_2002_2_5"/>
29
+ </rdf:Seq>
30
+ </rdf:Description>
31
+ </rdf:RDF>
@@ -0,0 +1,11 @@
1
+
2
+
3
+
4
+ <ns:RDF xmlns:ns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
5
+ xmlns="http://example.com#"
6
+ xmlns:rdf="http://example.com#">
7
+
8
+ <ns:Description ns:about="#a">
9
+ <b ns:resource="#c"/>
10
+ </ns:Description>
11
+ </ns:RDF>
@@ -0,0 +1,18 @@
1
+
2
+
3
+
4
+ <rdf:RDF xmlns="file://www.example.org/meeting_organization#"
5
+ xmlns:m="file://www.example.org/meeting_organization#"
6
+ xmlns:p="file://www.example.org/personal_details#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
8
+
9
+ <rdf:Description rdf:about="file://meetings.example.com/cal#m1">
10
+ <homePage rdf:resource="file://meetings.example.com/m1/hp"/>
11
+ </rdf:Description>
12
+
13
+ <rdf:Description rdf:about="file://www.example.org/people#fred">
14
+ <attending rdf:resource="file://meetings.example.com/cal#m1"/>
15
+ <p:GivenName>Fred</p:GivenName>
16
+ <p:hasEmail rdf:resource="mailto:fred@example.com"/>
17
+ </rdf:Description>
18
+ </rdf:RDF>
@@ -0,0 +1,23 @@
1
+ @prefix : <#> .
2
+
3
+ <> <http://purl.org/dc/elements/1.1/description> """testing string parsing in N3.
4
+ Hmm... how much of this is in the primer?
5
+ How much should be there?
6
+ @@ Holding off on unicode until support
7
+ in python is sufficiently deployed
8
+ (e.g. python on tux doesn't grok,
9
+ nor does pythonwin on TimBL's laptop).
10
+
11
+ """ .
12
+
13
+ :martin :surname "D\u00FCrst" .
14
+
15
+ :x :prop "simple string" .
16
+
17
+ :y :prop """triple quoted
18
+ string with newlines in it.""" .
19
+
20
+ :z :prop """string with " escaped quote marks""" .
21
+
22
+ :zz :escapes "\\\"\a\b\f\r\t\v" .
23
+
@@ -0,0 +1,23 @@
1
+ @prefix : <#> .
2
+
3
+ <> <http://purl.org/dc/elements/1.1/description> """testing string parsing in N3.
4
+ Hmm... how much of this is in the primer?
5
+ How much should be there?
6
+ @@ Holding off on unicode until support
7
+ in python is sufficiently deployed
8
+ (e.g. python on tux doesn't grok,
9
+ nor does pythonwin on TimBL's laptop).
10
+
11
+ """ .
12
+
13
+ :martin :surname "Dürst" .
14
+
15
+ :x :prop "simple string" .
16
+
17
+ :y :prop """triple quoted
18
+ string with newlines in it.""" .
19
+
20
+ :z :prop """string with " escaped quote marks""" .
21
+
22
+ :zz :escapes "\\\"\a\b\f\r\t\v" .
23
+