rdf-rdfxml 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (386) hide show
  1. data/.gitignore +2 -0
  2. data/.yardopts +2 -1
  3. data/CONTRIBUTORS +1 -0
  4. data/History.txt +7 -0
  5. data/README.rdoc +19 -2
  6. data/Rakefile +14 -0
  7. data/VERSION +1 -1
  8. data/example.rb +0 -1
  9. data/lib/rdf/rdfxml.rb +14 -6
  10. data/lib/rdf/rdfxml/format.rb +6 -5
  11. data/lib/rdf/rdfxml/patches/array_hacks.rb +53 -0
  12. data/lib/rdf/rdfxml/patches/nokogiri_hacks.rb +8 -0
  13. data/lib/rdf/rdfxml/patches/rdf_escape.rb +131 -0
  14. data/lib/rdf/rdfxml/reader.rb +90 -57
  15. data/lib/rdf/rdfxml/version.rb +1 -1
  16. data/lib/rdf/rdfxml/vocab.rb +3 -0
  17. data/lib/rdf/rdfxml/writer.rb +399 -0
  18. data/rdf-rdfxml.gemspec +448 -0
  19. data/script/console +10 -0
  20. data/spec/format_spec.rb +22 -0
  21. data/spec/matchers.rb +121 -0
  22. data/spec/rdf_helper.rb +176 -0
  23. data/spec/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.nt +24 -0
  24. data/spec/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.rdf +46 -0
  25. data/spec/rdf_tests/tm_001.nt +1 -0
  26. data/spec/rdf_tests/tm_001.rdf +7 -0
  27. data/spec/rdf_tests/xml-literal-mixed.nt +6 -0
  28. data/spec/rdf_tests/xml-literal-mixed.rdf +15 -0
  29. data/spec/rdfcore/Manifest.rdf +5395 -0
  30. data/spec/rdfcore/Manifest.yml +1970 -0
  31. data/spec/rdfcore/amp-in-url/test001.nt +16 -0
  32. data/spec/rdfcore/amp-in-url/test001.rdf +40 -0
  33. data/spec/rdfcore/datatypes-intensional/test001.nt +18 -0
  34. data/spec/rdfcore/datatypes-intensional/test002.nt +18 -0
  35. data/spec/rdfcore/datatypes/test001.nt +15 -0
  36. data/spec/rdfcore/datatypes/test001.rdf +29 -0
  37. data/spec/rdfcore/datatypes/test002.nt +14 -0
  38. data/spec/rdfcore/datatypes/test002.rdf +27 -0
  39. data/spec/rdfcore/datatypes/test002b.nt +17 -0
  40. data/spec/rdfcore/datatypes/test003a.nt +16 -0
  41. data/spec/rdfcore/datatypes/test003b.nt +16 -0
  42. data/spec/rdfcore/datatypes/test005a.nt +16 -0
  43. data/spec/rdfcore/datatypes/test005b.nt +16 -0
  44. data/spec/rdfcore/datatypes/test006.nt +17 -0
  45. data/spec/rdfcore/datatypes/test008a.nt +15 -0
  46. data/spec/rdfcore/datatypes/test008b.nt +15 -0
  47. data/spec/rdfcore/datatypes/test009a.nt +15 -0
  48. data/spec/rdfcore/datatypes/test009b.nt +15 -0
  49. data/spec/rdfcore/datatypes/test010.nt +17 -0
  50. data/spec/rdfcore/datatypes/test011a.nt +17 -0
  51. data/spec/rdfcore/datatypes/test011b.nt +17 -0
  52. data/spec/rdfcore/horst-01/test001.rdf +38 -0
  53. data/spec/rdfcore/horst-01/test002.rdf +39 -0
  54. data/spec/rdfcore/horst-01/test003.rdf +40 -0
  55. data/spec/rdfcore/horst-01/test004.rdf +42 -0
  56. data/spec/rdfcore/pfps-10/test001a.nt +14 -0
  57. data/spec/rdfcore/pfps-10/test001b.nt +15 -0
  58. data/spec/rdfcore/rdf-charmod-literals/test001.nt +15 -0
  59. data/spec/rdfcore/rdf-charmod-literals/test001.rdf +34 -0
  60. data/spec/rdfcore/rdf-charmod-uris/test001.nt +14 -0
  61. data/spec/rdfcore/rdf-charmod-uris/test001.rdf +34 -0
  62. data/spec/rdfcore/rdf-charmod-uris/test002.nt +15 -0
  63. data/spec/rdfcore/rdf-charmod-uris/test002.rdf +33 -0
  64. data/spec/rdfcore/rdf-containers-syntax-vs-schema/error001.rdf +27 -0
  65. data/spec/rdfcore/rdf-containers-syntax-vs-schema/error002.rdf +34 -0
  66. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.nt +17 -0
  67. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test001.rdf +27 -0
  68. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.nt +19 -0
  69. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test002.rdf +37 -0
  70. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.nt +18 -0
  71. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test003.rdf +29 -0
  72. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.nt +29 -0
  73. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test004.rdf +33 -0
  74. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.nt +40 -0
  75. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test006.rdf +28 -0
  76. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.nt +20 -0
  77. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test007.rdf +32 -0
  78. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.nt +15 -0
  79. data/spec/rdfcore/rdf-containers-syntax-vs-schema/test008.rdf +28 -0
  80. data/spec/rdfcore/rdf-element-not-mandatory/test001.nt +10 -0
  81. data/spec/rdfcore/rdf-element-not-mandatory/test001.rdf +14 -0
  82. data/spec/rdfcore/rdf-ns-prefix-confusion/test0001.nt +14 -0
  83. data/spec/rdfcore/rdf-ns-prefix-confusion/test0001.rdf +35 -0
  84. data/spec/rdfcore/rdf-ns-prefix-confusion/test0003.nt +14 -0
  85. data/spec/rdfcore/rdf-ns-prefix-confusion/test0003.rdf +35 -0
  86. data/spec/rdfcore/rdf-ns-prefix-confusion/test0004.nt +14 -0
  87. data/spec/rdfcore/rdf-ns-prefix-confusion/test0004.rdf +34 -0
  88. data/spec/rdfcore/rdf-ns-prefix-confusion/test0005.nt +15 -0
  89. data/spec/rdfcore/rdf-ns-prefix-confusion/test0005.rdf +40 -0
  90. data/spec/rdfcore/rdf-ns-prefix-confusion/test0006.nt +14 -0
  91. data/spec/rdfcore/rdf-ns-prefix-confusion/test0006.rdf +32 -0
  92. data/spec/rdfcore/rdf-ns-prefix-confusion/test0009.nt +14 -0
  93. data/spec/rdfcore/rdf-ns-prefix-confusion/test0009.rdf +32 -0
  94. data/spec/rdfcore/rdf-ns-prefix-confusion/test0010.nt +14 -0
  95. data/spec/rdfcore/rdf-ns-prefix-confusion/test0010.rdf +38 -0
  96. data/spec/rdfcore/rdf-ns-prefix-confusion/test0011.nt +15 -0
  97. data/spec/rdfcore/rdf-ns-prefix-confusion/test0011.rdf +40 -0
  98. data/spec/rdfcore/rdf-ns-prefix-confusion/test0012.nt +15 -0
  99. data/spec/rdfcore/rdf-ns-prefix-confusion/test0012.rdf +40 -0
  100. data/spec/rdfcore/rdf-ns-prefix-confusion/test0013.nt +15 -0
  101. data/spec/rdfcore/rdf-ns-prefix-confusion/test0013.rdf +40 -0
  102. data/spec/rdfcore/rdf-ns-prefix-confusion/test0014.nt +15 -0
  103. data/spec/rdfcore/rdf-ns-prefix-confusion/test0014.rdf +42 -0
  104. data/spec/rdfcore/rdfms-abouteach/error001.rdf +35 -0
  105. data/spec/rdfcore/rdfms-abouteach/error002.rdf +35 -0
  106. data/spec/rdfcore/rdfms-difference-between-ID-and-about/error1.rdf +25 -0
  107. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.nt +14 -0
  108. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test1.rdf +22 -0
  109. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.nt +14 -0
  110. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test2.rdf +22 -0
  111. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.nt +14 -0
  112. data/spec/rdfcore/rdfms-difference-between-ID-and-about/test3.rdf +22 -0
  113. data/spec/rdfcore/rdfms-duplicate-member-props/test001.nt +17 -0
  114. data/spec/rdfcore/rdfms-duplicate-member-props/test001.rdf +30 -0
  115. data/spec/rdfcore/rdfms-empty-property-elements/error001.rdf +33 -0
  116. data/spec/rdfcore/rdfms-empty-property-elements/error002.rdf +33 -0
  117. data/spec/rdfcore/rdfms-empty-property-elements/error003.rdf +39 -0
  118. data/spec/rdfcore/rdfms-empty-property-elements/test001.nt +14 -0
  119. data/spec/rdfcore/rdfms-empty-property-elements/test001.rdf +33 -0
  120. data/spec/rdfcore/rdfms-empty-property-elements/test002.nt +14 -0
  121. data/spec/rdfcore/rdfms-empty-property-elements/test002.rdf +31 -0
  122. data/spec/rdfcore/rdfms-empty-property-elements/test003.nt +14 -0
  123. data/spec/rdfcore/rdfms-empty-property-elements/test003.rdf +32 -0
  124. data/spec/rdfcore/rdfms-empty-property-elements/test004.nt +14 -0
  125. data/spec/rdfcore/rdfms-empty-property-elements/test004.rdf +32 -0
  126. data/spec/rdfcore/rdfms-empty-property-elements/test005.nt +18 -0
  127. data/spec/rdfcore/rdfms-empty-property-elements/test005.rdf +32 -0
  128. data/spec/rdfcore/rdfms-empty-property-elements/test006.nt +18 -0
  129. data/spec/rdfcore/rdfms-empty-property-elements/test006.rdf +32 -0
  130. data/spec/rdfcore/rdfms-empty-property-elements/test007.nt +14 -0
  131. data/spec/rdfcore/rdfms-empty-property-elements/test007.rdf +32 -0
  132. data/spec/rdfcore/rdfms-empty-property-elements/test008.nt +14 -0
  133. data/spec/rdfcore/rdfms-empty-property-elements/test008.rdf +31 -0
  134. data/spec/rdfcore/rdfms-empty-property-elements/test009.nt +14 -0
  135. data/spec/rdfcore/rdfms-empty-property-elements/test009.rdf +32 -0
  136. data/spec/rdfcore/rdfms-empty-property-elements/test010.nt +14 -0
  137. data/spec/rdfcore/rdfms-empty-property-elements/test010.rdf +31 -0
  138. data/spec/rdfcore/rdfms-empty-property-elements/test011.nt +18 -0
  139. data/spec/rdfcore/rdfms-empty-property-elements/test011.rdf +30 -0
  140. data/spec/rdfcore/rdfms-empty-property-elements/test012.nt +18 -0
  141. data/spec/rdfcore/rdfms-empty-property-elements/test012.rdf +30 -0
  142. data/spec/rdfcore/rdfms-empty-property-elements/test013.nt +15 -0
  143. data/spec/rdfcore/rdfms-empty-property-elements/test013.rdf +35 -0
  144. data/spec/rdfcore/rdfms-empty-property-elements/test014.nt +15 -0
  145. data/spec/rdfcore/rdfms-empty-property-elements/test014.rdf +34 -0
  146. data/spec/rdfcore/rdfms-empty-property-elements/test015.nt +15 -0
  147. data/spec/rdfcore/rdfms-empty-property-elements/test015.rdf +38 -0
  148. data/spec/rdfcore/rdfms-empty-property-elements/test016.nt +14 -0
  149. data/spec/rdfcore/rdfms-empty-property-elements/test016.rdf +31 -0
  150. data/spec/rdfcore/rdfms-empty-property-elements/test017.nt +14 -0
  151. data/spec/rdfcore/rdfms-empty-property-elements/test017.rdf +38 -0
  152. data/spec/rdfcore/rdfms-identity-anon-resources/test001.nt +14 -0
  153. data/spec/rdfcore/rdfms-identity-anon-resources/test001.rdf +33 -0
  154. data/spec/rdfcore/rdfms-identity-anon-resources/test002.nt +15 -0
  155. data/spec/rdfcore/rdfms-identity-anon-resources/test002.rdf +33 -0
  156. data/spec/rdfcore/rdfms-identity-anon-resources/test003.nt +14 -0
  157. data/spec/rdfcore/rdfms-identity-anon-resources/test003.rdf +31 -0
  158. data/spec/rdfcore/rdfms-identity-anon-resources/test004.nt +15 -0
  159. data/spec/rdfcore/rdfms-identity-anon-resources/test004.rdf +33 -0
  160. data/spec/rdfcore/rdfms-identity-anon-resources/test005.nt +14 -0
  161. data/spec/rdfcore/rdfms-identity-anon-resources/test005.rdf +31 -0
  162. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.nt +19 -0
  163. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test001.rdf +29 -0
  164. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.nt +15 -0
  165. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test002.rdf +29 -0
  166. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.nt +18 -0
  167. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test004.rdf +29 -0
  168. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.nt +19 -0
  169. data/spec/rdfcore/rdfms-not-id-and-resource-attr/test005.rdf +29 -0
  170. data/spec/rdfcore/rdfms-para196/test001.nt +17 -0
  171. data/spec/rdfcore/rdfms-para196/test001.rdf +35 -0
  172. data/spec/rdfcore/rdfms-rdf-id/error001.rdf +26 -0
  173. data/spec/rdfcore/rdfms-rdf-id/error002.rdf +26 -0
  174. data/spec/rdfcore/rdfms-rdf-id/error003.rdf +29 -0
  175. data/spec/rdfcore/rdfms-rdf-id/error004.rdf +27 -0
  176. data/spec/rdfcore/rdfms-rdf-id/error005.rdf +31 -0
  177. data/spec/rdfcore/rdfms-rdf-id/error006.rdf +26 -0
  178. data/spec/rdfcore/rdfms-rdf-id/error007.rdf +29 -0
  179. data/spec/rdfcore/rdfms-rdf-names-use/error-001.rdf +23 -0
  180. data/spec/rdfcore/rdfms-rdf-names-use/error-002.rdf +23 -0
  181. data/spec/rdfcore/rdfms-rdf-names-use/error-003.rdf +23 -0
  182. data/spec/rdfcore/rdfms-rdf-names-use/error-004.rdf +23 -0
  183. data/spec/rdfcore/rdfms-rdf-names-use/error-005.rdf +23 -0
  184. data/spec/rdfcore/rdfms-rdf-names-use/error-006.rdf +23 -0
  185. data/spec/rdfcore/rdfms-rdf-names-use/error-007.rdf +23 -0
  186. data/spec/rdfcore/rdfms-rdf-names-use/error-008.rdf +23 -0
  187. data/spec/rdfcore/rdfms-rdf-names-use/error-009.rdf +23 -0
  188. data/spec/rdfcore/rdfms-rdf-names-use/error-010.rdf +23 -0
  189. data/spec/rdfcore/rdfms-rdf-names-use/error-011.rdf +25 -0
  190. data/spec/rdfcore/rdfms-rdf-names-use/error-012.rdf +25 -0
  191. data/spec/rdfcore/rdfms-rdf-names-use/error-013.rdf +25 -0
  192. data/spec/rdfcore/rdfms-rdf-names-use/error-014.rdf +25 -0
  193. data/spec/rdfcore/rdfms-rdf-names-use/error-015.rdf +25 -0
  194. data/spec/rdfcore/rdfms-rdf-names-use/error-016.rdf +25 -0
  195. data/spec/rdfcore/rdfms-rdf-names-use/error-017.rdf +25 -0
  196. data/spec/rdfcore/rdfms-rdf-names-use/error-018.rdf +25 -0
  197. data/spec/rdfcore/rdfms-rdf-names-use/error-019.rdf +25 -0
  198. data/spec/rdfcore/rdfms-rdf-names-use/error-020.rdf +25 -0
  199. data/spec/rdfcore/rdfms-rdf-names-use/test-001.nt +1 -0
  200. data/spec/rdfcore/rdfms-rdf-names-use/test-001.rdf +23 -0
  201. data/spec/rdfcore/rdfms-rdf-names-use/test-002.nt +1 -0
  202. data/spec/rdfcore/rdfms-rdf-names-use/test-002.rdf +23 -0
  203. data/spec/rdfcore/rdfms-rdf-names-use/test-003.nt +1 -0
  204. data/spec/rdfcore/rdfms-rdf-names-use/test-003.rdf +23 -0
  205. data/spec/rdfcore/rdfms-rdf-names-use/test-004.nt +1 -0
  206. data/spec/rdfcore/rdfms-rdf-names-use/test-004.rdf +23 -0
  207. data/spec/rdfcore/rdfms-rdf-names-use/test-005.nt +1 -0
  208. data/spec/rdfcore/rdfms-rdf-names-use/test-005.rdf +23 -0
  209. data/spec/rdfcore/rdfms-rdf-names-use/test-006.nt +1 -0
  210. data/spec/rdfcore/rdfms-rdf-names-use/test-006.rdf +23 -0
  211. data/spec/rdfcore/rdfms-rdf-names-use/test-007.nt +1 -0
  212. data/spec/rdfcore/rdfms-rdf-names-use/test-007.rdf +23 -0
  213. data/spec/rdfcore/rdfms-rdf-names-use/test-008.nt +1 -0
  214. data/spec/rdfcore/rdfms-rdf-names-use/test-008.rdf +23 -0
  215. data/spec/rdfcore/rdfms-rdf-names-use/test-009.nt +1 -0
  216. data/spec/rdfcore/rdfms-rdf-names-use/test-009.rdf +23 -0
  217. data/spec/rdfcore/rdfms-rdf-names-use/test-010.nt +1 -0
  218. data/spec/rdfcore/rdfms-rdf-names-use/test-010.rdf +23 -0
  219. data/spec/rdfcore/rdfms-rdf-names-use/test-011.nt +1 -0
  220. data/spec/rdfcore/rdfms-rdf-names-use/test-011.rdf +23 -0
  221. data/spec/rdfcore/rdfms-rdf-names-use/test-012.nt +1 -0
  222. data/spec/rdfcore/rdfms-rdf-names-use/test-012.rdf +23 -0
  223. data/spec/rdfcore/rdfms-rdf-names-use/test-013.nt +1 -0
  224. data/spec/rdfcore/rdfms-rdf-names-use/test-013.rdf +23 -0
  225. data/spec/rdfcore/rdfms-rdf-names-use/test-014.nt +1 -0
  226. data/spec/rdfcore/rdfms-rdf-names-use/test-014.rdf +23 -0
  227. data/spec/rdfcore/rdfms-rdf-names-use/test-015.nt +1 -0
  228. data/spec/rdfcore/rdfms-rdf-names-use/test-015.rdf +23 -0
  229. data/spec/rdfcore/rdfms-rdf-names-use/test-016.nt +1 -0
  230. data/spec/rdfcore/rdfms-rdf-names-use/test-016.rdf +23 -0
  231. data/spec/rdfcore/rdfms-rdf-names-use/test-017.nt +1 -0
  232. data/spec/rdfcore/rdfms-rdf-names-use/test-017.rdf +25 -0
  233. data/spec/rdfcore/rdfms-rdf-names-use/test-018.nt +1 -0
  234. data/spec/rdfcore/rdfms-rdf-names-use/test-018.rdf +25 -0
  235. data/spec/rdfcore/rdfms-rdf-names-use/test-019.nt +1 -0
  236. data/spec/rdfcore/rdfms-rdf-names-use/test-019.rdf +25 -0
  237. data/spec/rdfcore/rdfms-rdf-names-use/test-020.nt +1 -0
  238. data/spec/rdfcore/rdfms-rdf-names-use/test-020.rdf +25 -0
  239. data/spec/rdfcore/rdfms-rdf-names-use/test-021.nt +1 -0
  240. data/spec/rdfcore/rdfms-rdf-names-use/test-021.rdf +25 -0
  241. data/spec/rdfcore/rdfms-rdf-names-use/test-022.nt +1 -0
  242. data/spec/rdfcore/rdfms-rdf-names-use/test-022.rdf +25 -0
  243. data/spec/rdfcore/rdfms-rdf-names-use/test-023.nt +1 -0
  244. data/spec/rdfcore/rdfms-rdf-names-use/test-023.rdf +25 -0
  245. data/spec/rdfcore/rdfms-rdf-names-use/test-024.nt +1 -0
  246. data/spec/rdfcore/rdfms-rdf-names-use/test-024.rdf +25 -0
  247. data/spec/rdfcore/rdfms-rdf-names-use/test-025.nt +1 -0
  248. data/spec/rdfcore/rdfms-rdf-names-use/test-025.rdf +25 -0
  249. data/spec/rdfcore/rdfms-rdf-names-use/test-026.nt +1 -0
  250. data/spec/rdfcore/rdfms-rdf-names-use/test-026.rdf +25 -0
  251. data/spec/rdfcore/rdfms-rdf-names-use/test-027.nt +1 -0
  252. data/spec/rdfcore/rdfms-rdf-names-use/test-027.rdf +25 -0
  253. data/spec/rdfcore/rdfms-rdf-names-use/test-028.nt +1 -0
  254. data/spec/rdfcore/rdfms-rdf-names-use/test-028.rdf +25 -0
  255. data/spec/rdfcore/rdfms-rdf-names-use/test-029.nt +1 -0
  256. data/spec/rdfcore/rdfms-rdf-names-use/test-029.rdf +25 -0
  257. data/spec/rdfcore/rdfms-rdf-names-use/test-030.nt +1 -0
  258. data/spec/rdfcore/rdfms-rdf-names-use/test-030.rdf +25 -0
  259. data/spec/rdfcore/rdfms-rdf-names-use/test-031.nt +1 -0
  260. data/spec/rdfcore/rdfms-rdf-names-use/test-031.rdf +25 -0
  261. data/spec/rdfcore/rdfms-rdf-names-use/test-032.nt +1 -0
  262. data/spec/rdfcore/rdfms-rdf-names-use/test-032.rdf +24 -0
  263. data/spec/rdfcore/rdfms-rdf-names-use/test-033.nt +1 -0
  264. data/spec/rdfcore/rdfms-rdf-names-use/test-033.rdf +24 -0
  265. data/spec/rdfcore/rdfms-rdf-names-use/test-034.nt +1 -0
  266. data/spec/rdfcore/rdfms-rdf-names-use/test-034.rdf +24 -0
  267. data/spec/rdfcore/rdfms-rdf-names-use/test-035.nt +1 -0
  268. data/spec/rdfcore/rdfms-rdf-names-use/test-035.rdf +24 -0
  269. data/spec/rdfcore/rdfms-rdf-names-use/test-036.nt +1 -0
  270. data/spec/rdfcore/rdfms-rdf-names-use/test-036.rdf +24 -0
  271. data/spec/rdfcore/rdfms-rdf-names-use/test-037.nt +1 -0
  272. data/spec/rdfcore/rdfms-rdf-names-use/test-037.rdf +24 -0
  273. data/spec/rdfcore/rdfms-rdf-names-use/warn-001.nt +1 -0
  274. data/spec/rdfcore/rdfms-rdf-names-use/warn-001.rdf +23 -0
  275. data/spec/rdfcore/rdfms-rdf-names-use/warn-002.nt +1 -0
  276. data/spec/rdfcore/rdfms-rdf-names-use/warn-002.rdf +25 -0
  277. data/spec/rdfcore/rdfms-rdf-names-use/warn-003.nt +1 -0
  278. data/spec/rdfcore/rdfms-rdf-names-use/warn-003.rdf +24 -0
  279. data/spec/rdfcore/rdfms-reification-required/test001.nt +15 -0
  280. data/spec/rdfcore/rdfms-reification-required/test001.rdf +29 -0
  281. data/spec/rdfcore/rdfms-seq-representation/empty.nt +13 -0
  282. data/spec/rdfcore/rdfms-seq-representation/test001.nt +19 -0
  283. data/spec/rdfcore/rdfms-seq-representation/test001.rdf +33 -0
  284. data/spec/rdfcore/rdfms-seq-representation/test002.nt +14 -0
  285. data/spec/rdfcore/rdfms-seq-representation/test003a.nt +14 -0
  286. data/spec/rdfcore/rdfms-seq-representation/test003b.nt +14 -0
  287. data/spec/rdfcore/rdfms-seq-representation/test004.nt +14 -0
  288. data/spec/rdfcore/rdfms-syntax-incomplete/error001.rdf +26 -0
  289. data/spec/rdfcore/rdfms-syntax-incomplete/error002.rdf +26 -0
  290. data/spec/rdfcore/rdfms-syntax-incomplete/error003.rdf +29 -0
  291. data/spec/rdfcore/rdfms-syntax-incomplete/error004.rdf +25 -0
  292. data/spec/rdfcore/rdfms-syntax-incomplete/error005.rdf +25 -0
  293. data/spec/rdfcore/rdfms-syntax-incomplete/error006.rdf +28 -0
  294. data/spec/rdfcore/rdfms-syntax-incomplete/test001.nt +14 -0
  295. data/spec/rdfcore/rdfms-syntax-incomplete/test001.rdf +28 -0
  296. data/spec/rdfcore/rdfms-syntax-incomplete/test002.nt +19 -0
  297. data/spec/rdfcore/rdfms-syntax-incomplete/test002.rdf +38 -0
  298. data/spec/rdfcore/rdfms-syntax-incomplete/test003.nt +17 -0
  299. data/spec/rdfcore/rdfms-syntax-incomplete/test003.rdf +28 -0
  300. data/spec/rdfcore/rdfms-syntax-incomplete/test004.nt +21 -0
  301. data/spec/rdfcore/rdfms-syntax-incomplete/test004.rdf +36 -0
  302. data/spec/rdfcore/rdfms-uri-substructure/error001.nt +18 -0
  303. data/spec/rdfcore/rdfms-uri-substructure/test001.nt +17 -0
  304. data/spec/rdfcore/rdfms-uri-substructure/test001.rdf +29 -0
  305. data/spec/rdfcore/rdfms-xml-literal-namespaces/test001.nt +13 -0
  306. data/spec/rdfcore/rdfms-xml-literal-namespaces/test001.rdf +33 -0
  307. data/spec/rdfcore/rdfms-xml-literal-namespaces/test002.nt +14 -0
  308. data/spec/rdfcore/rdfms-xml-literal-namespaces/test002.rdf +47 -0
  309. data/spec/rdfcore/rdfms-xmllang/test001.nt +14 -0
  310. data/spec/rdfcore/rdfms-xmllang/test001.rdf +30 -0
  311. data/spec/rdfcore/rdfms-xmllang/test002.nt +14 -0
  312. data/spec/rdfcore/rdfms-xmllang/test002.rdf +29 -0
  313. data/spec/rdfcore/rdfms-xmllang/test003.nt +14 -0
  314. data/spec/rdfcore/rdfms-xmllang/test003.rdf +28 -0
  315. data/spec/rdfcore/rdfms-xmllang/test004.nt +14 -0
  316. data/spec/rdfcore/rdfms-xmllang/test004.rdf +28 -0
  317. data/spec/rdfcore/rdfms-xmllang/test005.nt +14 -0
  318. data/spec/rdfcore/rdfms-xmllang/test005.rdf +28 -0
  319. data/spec/rdfcore/rdfms-xmllang/test006.nt +14 -0
  320. data/spec/rdfcore/rdfms-xmllang/test006.rdf +29 -0
  321. data/spec/rdfcore/rdfms-xmllang/test007a.nt +14 -0
  322. data/spec/rdfcore/rdfms-xmllang/test007b.nt +14 -0
  323. data/spec/rdfcore/rdfms-xmllang/test007c.nt +14 -0
  324. data/spec/rdfcore/rdfs-container-membership-superProperty/not1C.rdf +13 -0
  325. data/spec/rdfcore/rdfs-container-membership-superProperty/not1P.rdf +14 -0
  326. data/spec/rdfcore/rdfs-domain-and-range/nonconclusions005.rdf +28 -0
  327. data/spec/rdfcore/rdfs-domain-and-range/nonconclusions006.rdf +28 -0
  328. data/spec/rdfcore/rdfs-domain-and-range/premises005.rdf +32 -0
  329. data/spec/rdfcore/rdfs-domain-and-range/premises006.rdf +32 -0
  330. data/spec/rdfcore/rdfs-domain-and-range/test001.nt +16 -0
  331. data/spec/rdfcore/rdfs-domain-and-range/test001.rdf +29 -0
  332. data/spec/rdfcore/rdfs-domain-and-range/test002.nt +16 -0
  333. data/spec/rdfcore/rdfs-domain-and-range/test002.rdf +29 -0
  334. data/spec/rdfcore/rdfs-entailment/test001.nt +16 -0
  335. data/spec/rdfcore/rdfs-entailment/test002.nt +15 -0
  336. data/spec/rdfcore/rdfs-no-cycles-in-subClassOf/test001.nt +18 -0
  337. data/spec/rdfcore/rdfs-no-cycles-in-subClassOf/test001.rdf +37 -0
  338. data/spec/rdfcore/rdfs-no-cycles-in-subPropertyOf/test001.nt +18 -0
  339. data/spec/rdfcore/rdfs-no-cycles-in-subPropertyOf/test001.rdf +40 -0
  340. data/spec/rdfcore/rdfs-subClassOf-a-Property/test001.nt +15 -0
  341. data/spec/rdfcore/rdfs-subPropertyOf-semantics/test001.nt +24 -0
  342. data/spec/rdfcore/rdfs-subPropertyOf-semantics/test002.nt +21 -0
  343. data/spec/rdfcore/statement-entailment/test001a.nt +12 -0
  344. data/spec/rdfcore/statement-entailment/test001b.nt +2 -0
  345. data/spec/rdfcore/statement-entailment/test002a.nt +2 -0
  346. data/spec/rdfcore/statement-entailment/test002b.nt +5 -0
  347. data/spec/rdfcore/tex-01/test001.rdf +34 -0
  348. data/spec/rdfcore/tex-01/test002.rdf +33 -0
  349. data/spec/rdfcore/unrecognised-xml-attributes/test001.nt +15 -0
  350. data/spec/rdfcore/unrecognised-xml-attributes/test001.rdf +31 -0
  351. data/spec/rdfcore/unrecognised-xml-attributes/test002.nt +14 -0
  352. data/spec/rdfcore/unrecognised-xml-attributes/test002.rdf +32 -0
  353. data/spec/rdfcore/xml-canon/test001.nt +16 -0
  354. data/spec/rdfcore/xml-canon/test001.rdf +28 -0
  355. data/spec/rdfcore/xmlbase/test001.nt +14 -0
  356. data/spec/rdfcore/xmlbase/test001.rdf +27 -0
  357. data/spec/rdfcore/xmlbase/test002.nt +14 -0
  358. data/spec/rdfcore/xmlbase/test002.rdf +28 -0
  359. data/spec/rdfcore/xmlbase/test003.nt +14 -0
  360. data/spec/rdfcore/xmlbase/test003.rdf +25 -0
  361. data/spec/rdfcore/xmlbase/test004.nt +18 -0
  362. data/spec/rdfcore/xmlbase/test004.rdf +27 -0
  363. data/spec/rdfcore/xmlbase/test006.nt +15 -0
  364. data/spec/rdfcore/xmlbase/test006.rdf +26 -0
  365. data/spec/rdfcore/xmlbase/test007.nt +14 -0
  366. data/spec/rdfcore/xmlbase/test007.rdf +25 -0
  367. data/spec/rdfcore/xmlbase/test008.nt +14 -0
  368. data/spec/rdfcore/xmlbase/test008.rdf +25 -0
  369. data/spec/rdfcore/xmlbase/test009.nt +14 -0
  370. data/spec/rdfcore/xmlbase/test009.rdf +26 -0
  371. data/spec/rdfcore/xmlbase/test010.nt +14 -0
  372. data/spec/rdfcore/xmlbase/test010.rdf +26 -0
  373. data/spec/rdfcore/xmlbase/test011.nt +14 -0
  374. data/spec/rdfcore/xmlbase/test011.rdf +27 -0
  375. data/spec/rdfcore/xmlbase/test013.nt +15 -0
  376. data/spec/rdfcore/xmlbase/test013.rdf +28 -0
  377. data/spec/rdfcore/xmlbase/test014.nt +15 -0
  378. data/spec/rdfcore/xmlbase/test014.rdf +28 -0
  379. data/spec/rdfcore/xmlsch-02/test001.rdf +34 -0
  380. data/spec/rdfcore/xmlsch-02/test002.rdf +34 -0
  381. data/spec/rdfcore/xmlsch-02/test003.rdf +37 -0
  382. data/spec/reader_spec.rb +421 -0
  383. data/spec/spec.opts +1 -0
  384. data/spec/spec_helper.rb +50 -0
  385. data/spec/xml_serializer_spec.rb +386 -0
  386. metadata +385 -6
@@ -0,0 +1,15 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: test001.nt,v 1.3 2002/04/05 11:32:03 bmcbride Exp $
12
+ #
13
+ #####################################################################
14
+ <http://example.org/> <http://example.org#prop> "10" .
15
+
@@ -0,0 +1,29 @@
1
+ <!--
2
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ Technology, Institut National de Recherche en Informatique et en
4
+ Automatique, Keio University).
5
+
6
+ All Rights Reserved.
7
+
8
+ Please see the full Copyright clause at
9
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+
11
+ $Id: test001.rdf,v 1.3 2002/04/05 11:32:03 bmcbride Exp $
12
+ -->
13
+ <!--
14
+
15
+ Assumed base URI:
16
+
17
+ http://www.w3.org/2000/10/rdf-tests/rdfcore/rdfms-reification-required/test001.rdf
18
+
19
+ Description:
20
+
21
+ A parser is not required to generate a bag of reified statements for all
22
+ description elements.
23
+ -->
24
+
25
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
26
+ xmlns:eg="http://example.org#">
27
+ <rdf:Description rdf:about="http://example.org/" eg:prop="10"/>
28
+ </rdf:RDF>
29
+
@@ -0,0 +1,13 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: empty.nt,v 1.1 2002/12/13 16:48:03 jgrant Exp $
12
+ #
13
+ #####################################################################
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: test001.nt,v 1.2 2003/07/24 15:51:04 jcarroll Exp $
12
+ #
13
+ #####################################################################
14
+ <http://example.org/eg#eric> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> _:a .
15
+ _:a <http://example.org/eg#intersectionOf> _:b .
16
+ _:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.org/eg#Person> .
17
+ _:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:c .
18
+ _:c <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.org/eg#Male> .
19
+ _:c <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
@@ -0,0 +1,33 @@
1
+ <!--
2
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ Technology, Institut National de Recherche en Informatique et en
4
+ Automatique, Keio University).
5
+
6
+ All Rights Reserved.
7
+
8
+ Please see the full Copyright clause at
9
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+
11
+ Description: rdf:parseType="Collection" is parsed like the
12
+ nonstandard daml:collection.
13
+ Author: Jos De Roo (test case), Jeremy Carroll (comment)
14
+
15
+ $Id: test001.rdf,v 1.1 2002/09/17 19:03:20 jcarroll Exp $
16
+
17
+ -->
18
+
19
+ <rdf:RDF
20
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
21
+ xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
22
+ xmlns:eg="http://example.org/eg#">
23
+
24
+ <rdf:Description rdf:about="http://example.org/eg#eric">
25
+ <rdf:type rdf:parseType="Resource">
26
+ <eg:intersectionOf rdf:parseType="Collection">
27
+ <rdf:Description rdf:about="http://example.org/eg#Person"/>
28
+ <rdf:Description rdf:about="http://example.org/eg#Male"/>
29
+ </eg:intersectionOf>
30
+ </rdf:type>
31
+ </rdf:Description>
32
+ </rdf:RDF>
33
+
@@ -0,0 +1,14 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: test002.nt,v 1.1 2002/12/13 16:48:03 jgrant Exp $
12
+ #
13
+ #####################################################################
14
+ <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty> .
@@ -0,0 +1,14 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: test003a.nt,v 1.1 2002/12/13 16:48:03 jgrant Exp $
12
+ #
13
+ #####################################################################
14
+ <http://example.org/a> <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> <http://example.org/b> .
@@ -0,0 +1,14 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: test003b.nt,v 1.1 2002/12/13 16:48:03 jgrant Exp $
12
+ #
13
+ #####################################################################
14
+ <http://example.org/a> <http://www.w3.org/2000/01/rdf-schema#member> <http://example.org/b> .
@@ -0,0 +1,14 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: test004.nt,v 1.1 2002/12/13 16:48:04 jgrant Exp $
12
+ #
13
+ #####################################################################
14
+ <http://www.w3.org/1999/02/22-rdf-syntax-ns#_1> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2000/01/rdf-schema#member> .
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
5
+ Technology, Institut National de Recherche en Informatique et en
6
+ Automatique, Keio University).
7
+
8
+ All Rights Reserved.
9
+
10
+ Please see the full Copyright clause at
11
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
+
13
+ -->
14
+ <!--
15
+
16
+ The value of rdf:nodeID must match the XML Name production,
17
+ (as modified by XML Namespaces).
18
+ $Id: error001.rdf,v 1.1 2002/07/30 09:45:51 jcarroll Exp $
19
+
20
+ -->
21
+
22
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
23
+
24
+ <rdf:Description rdf:nodeID='333-555-666' />
25
+
26
+ </rdf:RDF>
@@ -0,0 +1,26 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
5
+ Technology, Institut National de Recherche en Informatique et en
6
+ Automatique, Keio University).
7
+
8
+ All Rights Reserved.
9
+
10
+ Please see the full Copyright clause at
11
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
+
13
+ -->
14
+ <!--
15
+
16
+ The value of rdf:nodeID must match the XML Name production,
17
+ (as modified by XML Namespaces).
18
+ $Id: error002.rdf,v 1.1 2002/07/30 09:45:51 jcarroll Exp $
19
+
20
+ -->
21
+
22
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
23
+
24
+ <rdf:Description rdf:nodeID="_:bnode" />
25
+
26
+ </rdf:RDF>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
5
+ Technology, Institut National de Recherche en Informatique et en
6
+ Automatique, Keio University).
7
+
8
+ All Rights Reserved.
9
+
10
+ Please see the full Copyright clause at
11
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
+
13
+ -->
14
+ <!--
15
+
16
+ The value of rdf:nodeID must match the XML Name production,
17
+ (as modified by XML Namespaces).
18
+ $Id: error003.rdf,v 1.1 2002/07/30 09:45:51 jcarroll Exp $
19
+
20
+ -->
21
+
22
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
23
+ xmlns:eg="http://example.org/">
24
+
25
+ <rdf:Description>
26
+ <eg:prop rdf:nodeID="q:name" />
27
+ </rdf:Description>
28
+
29
+ </rdf:RDF>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
5
+ Technology, Institut National de Recherche en Informatique et en
6
+ Automatique, Keio University).
7
+
8
+ All Rights Reserved.
9
+
10
+ Please see the full Copyright clause at
11
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
+
13
+ -->
14
+ <!--
15
+
16
+ Cannot have rdf:nodeID and rdf:ID.
17
+ $Id: error004.rdf,v 1.1 2002/08/03 05:32:32 jcarroll Exp $
18
+
19
+ -->
20
+
21
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
22
+
23
+ <rdf:Description rdf:nodeID='a' rdf:ID='b'/>
24
+
25
+ </rdf:RDF>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
5
+ Technology, Institut National de Recherche en Informatique et en
6
+ Automatique, Keio University).
7
+
8
+ All Rights Reserved.
9
+
10
+ Please see the full Copyright clause at
11
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
+
13
+ -->
14
+ <!--
15
+
16
+ Cannot have rdf:nodeID and rdf:about
17
+ $Id: error005.rdf,v 1.1 2002/08/03 05:32:32 jcarroll Exp $
18
+
19
+ -->
20
+
21
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
22
+
23
+ <rdf:Description rdf:nodeID="a" rdf:about="http://example.org/"/>
24
+
25
+ </rdf:RDF>
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
5
+ Technology, Institut National de Recherche en Informatique et en
6
+ Automatique, Keio University).
7
+
8
+ All Rights Reserved.
9
+
10
+ Please see the full Copyright clause at
11
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
+
13
+ -->
14
+ <!--
15
+
16
+ Cannot have rdf:nodeID and rdf:resource.
17
+ $Id: error006.rdf,v 1.1 2002/08/03 05:32:31 jcarroll Exp $
18
+
19
+ -->
20
+
21
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
22
+ xmlns:eg="http://example.org/">
23
+
24
+ <rdf:Description>
25
+ <eg:prop rdf:nodeID="a" rdf:resource="http://www.example.org/" />
26
+ </rdf:Description>
27
+
28
+ </rdf:RDF>
@@ -0,0 +1,14 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: test001.nt,v 1.1 2002/07/30 09:46:05 jcarroll Exp $
12
+ #
13
+ #####################################################################
14
+ _:a <http://example.org/property> _:a .
@@ -0,0 +1,28 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
5
+ Technology, Institut National de Recherche en Informatique et en
6
+ Automatique, Keio University).
7
+
8
+ All Rights Reserved.
9
+
10
+ Please see the full Copyright clause at
11
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
+
13
+ -->
14
+ <!--
15
+
16
+ rdf:nodeID can be used to label a blank node.
17
+ $Id: test001.rdf,v 1.1 2002/07/30 09:46:05 jcarroll Exp $
18
+
19
+ -->
20
+
21
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
22
+ xmlns:eg="http://example.org/">
23
+
24
+ <rdf:Description rdf:nodeID="a">
25
+ <eg:property rdf:nodeID="a" />
26
+ </rdf:Description>
27
+
28
+ </rdf:RDF>
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright World Wide Web Consortium, (Massachusetts Institute of
3
+ # Technology, Institut National de Recherche en Informatique et en
4
+ # Automatique, Keio University).
5
+ #
6
+ # All Rights Reserved.
7
+ #
8
+ # Please see the full Copyright clause at
9
+ # <http://www.w3.org/Consortium/Legal/copyright-software.html>
10
+ #
11
+ # $Id: test002.nt,v 1.1 2002/07/30 09:46:05 jcarroll Exp $
12
+ #
13
+ #####################################################################
14
+ _:a <http://example.org/property1> _:a .
15
+ _:bn0 <http://example.org/property2> _:b .
16
+ _:b <http://example.org/property3> _:a .
17
+
18
+
19
+
@@ -0,0 +1,38 @@
1
+ <?xml version="1.0"?>
2
+
3
+ <!--
4
+ Copyright World Wide Web Consortium, (Massachusetts Institute of
5
+ Technology, Institut National de Recherche en Informatique et en
6
+ Automatique, Keio University).
7
+
8
+ All Rights Reserved.
9
+
10
+ Please see the full Copyright clause at
11
+ <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
+
13
+ -->
14
+ <!--
15
+
16
+ rdf:nodeID can be used to label a blank node.
17
+ These have file scope and are distinct from any
18
+ unlabelled blank nodes.
19
+ $Id: test002.rdf,v 1.1 2002/07/30 09:46:05 jcarroll Exp $
20
+
21
+ -->
22
+
23
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
24
+ xmlns:eg="http://example.org/">
25
+
26
+ <rdf:Description rdf:nodeID="a">
27
+ <eg:property1 rdf:nodeID="a" />
28
+ </rdf:Description>
29
+ <rdf:Description>
30
+ <eg:property2>
31
+ <!-- Note the rdf:nodeID="b" is redundant. -->
32
+ <rdf:Description rdf:nodeID="b">
33
+ <eg:property3 rdf:nodeID="a" />
34
+ </rdf:Description>
35
+ </eg:property2>
36
+ </rdf:Description>
37
+
38
+ </rdf:RDF>