rdf_context 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +2 -0
- data/.gitignore +10 -0
- data/.gitmodules +3 -0
- data/History.txt +73 -0
- data/README.rdoc +145 -0
- data/Rakefile +77 -0
- data/VERSION +1 -0
- data/bin/reddy +59 -0
- data/lib/rdf_context.rb +60 -0
- data/lib/rdf_context/bnode.rb +99 -0
- data/lib/rdf_context/conjunctive_graph.rb +47 -0
- data/lib/rdf_context/exceptions.rb +11 -0
- data/lib/rdf_context/graph.rb +333 -0
- data/lib/rdf_context/literal.rb +340 -0
- data/lib/rdf_context/n3_grammar.rb +2171 -0
- data/lib/rdf_context/n3_grammar.treetop +143 -0
- data/lib/rdf_context/n3parser.rb +152 -0
- data/lib/rdf_context/namespace.rb +82 -0
- data/lib/rdf_context/nokogiri_hacks.rb +8 -0
- data/lib/rdf_context/parser.rb +119 -0
- data/lib/rdf_context/rdfaparser.rb +398 -0
- data/lib/rdf_context/rdfxmlparser.rb +525 -0
- data/lib/rdf_context/store/abstract_sql_store.rb +843 -0
- data/lib/rdf_context/store/abstract_store.rb +64 -0
- data/lib/rdf_context/store/list_store.rb +63 -0
- data/lib/rdf_context/store/memory_store.rb +323 -0
- data/lib/rdf_context/store/sqlite3_store.rb +223 -0
- data/lib/rdf_context/string_hacks.rb +108 -0
- data/lib/rdf_context/term_utils.rb +196 -0
- data/lib/rdf_context/triple.rb +144 -0
- data/lib/rdf_context/uriref.rb +95 -0
- data/script/console +10 -0
- data/spec/bnode_spec.rb +58 -0
- data/spec/conjunctive_graph_spec.rb +60 -0
- data/spec/graph_spec.rb +390 -0
- data/spec/list_store_spec.rb +12 -0
- data/spec/literal_spec.rb +314 -0
- data/spec/matchers.rb +150 -0
- data/spec/memory_store_spec.rb +23 -0
- data/spec/n3parser_spec.rb +229 -0
- data/spec/namespaces_spec.rb +66 -0
- data/spec/ntriples/test.nt +78 -0
- data/spec/parser_spec.rb +29 -0
- data/spec/rdfa-triples/0001.nt +1 -0
- data/spec/rdfa-triples/0006.nt +2 -0
- data/spec/rdfa-triples/0007.nt +3 -0
- data/spec/rdfa-triples/0008.nt +1 -0
- data/spec/rdfa-triples/0009.nt +1 -0
- data/spec/rdfa-triples/0010.nt +2 -0
- data/spec/rdfa-triples/0011.nt +3 -0
- data/spec/rdfa-triples/0012.nt +1 -0
- data/spec/rdfa-triples/0013.nt +1 -0
- data/spec/rdfa-triples/0014.nt +1 -0
- data/spec/rdfa-triples/0015.nt +2 -0
- data/spec/rdfa-triples/0017.nt +3 -0
- data/spec/rdfa-triples/0018.nt +1 -0
- data/spec/rdfa-triples/0019.nt +1 -0
- data/spec/rdfa-triples/0020.nt +1 -0
- data/spec/rdfa-triples/0021.nt +1 -0
- data/spec/rdfa-triples/0023.nt +1 -0
- data/spec/rdfa-triples/0025.nt +2 -0
- data/spec/rdfa-triples/0026.nt +1 -0
- data/spec/rdfa-triples/0027.nt +1 -0
- data/spec/rdfa-triples/0029.nt +1 -0
- data/spec/rdfa-triples/0030.nt +1 -0
- data/spec/rdfa-triples/0031.nt +1 -0
- data/spec/rdfa-triples/0032.nt +1 -0
- data/spec/rdfa-triples/0033.nt +2 -0
- data/spec/rdfa-triples/0034.nt +1 -0
- data/spec/rdfa-triples/0035.nt +1 -0
- data/spec/rdfa-triples/0036.nt +1 -0
- data/spec/rdfa-triples/0037.nt +1 -0
- data/spec/rdfa-triples/0038.nt +1 -0
- data/spec/rdfa-triples/0039.nt +1 -0
- data/spec/rdfa-triples/0040.nt +1 -0
- data/spec/rdfa-triples/0041.nt +1 -0
- data/spec/rdfa-triples/0042.nt +0 -0
- data/spec/rdfa-triples/0046.nt +3 -0
- data/spec/rdfa-triples/0047.nt +3 -0
- data/spec/rdfa-triples/0048.nt +3 -0
- data/spec/rdfa-triples/0049.nt +2 -0
- data/spec/rdfa-triples/0050.nt +2 -0
- data/spec/rdfa-triples/0051.nt +2 -0
- data/spec/rdfa-triples/0052.nt +1 -0
- data/spec/rdfa-triples/0053.nt +2 -0
- data/spec/rdfa-triples/0054.nt +2 -0
- data/spec/rdfa-triples/0055.nt +2 -0
- data/spec/rdfa-triples/0056.nt +3 -0
- data/spec/rdfa-triples/0057.nt +4 -0
- data/spec/rdfa-triples/0058.nt +6 -0
- data/spec/rdfa-triples/0059.nt +6 -0
- data/spec/rdfa-triples/0060.nt +2 -0
- data/spec/rdfa-triples/0061.nt +1 -0
- data/spec/rdfa-triples/0062.nt +1 -0
- data/spec/rdfa-triples/0063.nt +1 -0
- data/spec/rdfa-triples/0064.nt +1 -0
- data/spec/rdfa-triples/0065.nt +3 -0
- data/spec/rdfa-triples/0066.nt +1 -0
- data/spec/rdfa-triples/0067.nt +1 -0
- data/spec/rdfa-triples/0068.nt +1 -0
- data/spec/rdfa-triples/0069.nt +1 -0
- data/spec/rdfa-triples/0070.nt +1 -0
- data/spec/rdfa-triples/0071.nt +1 -0
- data/spec/rdfa-triples/0072.nt +1 -0
- data/spec/rdfa-triples/0073.nt +1 -0
- data/spec/rdfa-triples/0074.nt +1 -0
- data/spec/rdfa-triples/0075.nt +1 -0
- data/spec/rdfa-triples/0076.nt +23 -0
- data/spec/rdfa-triples/0077.nt +23 -0
- data/spec/rdfa-triples/0078.nt +6 -0
- data/spec/rdfa-triples/0079.nt +3 -0
- data/spec/rdfa-triples/0080.nt +1 -0
- data/spec/rdfa-triples/0081.nt +6 -0
- data/spec/rdfa-triples/0082.nt +8 -0
- data/spec/rdfa-triples/0083.nt +6 -0
- data/spec/rdfa-triples/0084.nt +8 -0
- data/spec/rdfa-triples/0085.nt +4 -0
- data/spec/rdfa-triples/0086.nt +0 -0
- data/spec/rdfa-triples/0087.nt +23 -0
- data/spec/rdfa-triples/0088.nt +3 -0
- data/spec/rdfa-triples/0089.nt +1 -0
- data/spec/rdfa-triples/0090.nt +1 -0
- data/spec/rdfa-triples/0091.nt +3 -0
- data/spec/rdfa-triples/0092.nt +3 -0
- data/spec/rdfa-triples/0093.nt +2 -0
- data/spec/rdfa-triples/0094.nt +3 -0
- data/spec/rdfa-triples/0099.nt +1 -0
- data/spec/rdfa-triples/0100.nt +3 -0
- data/spec/rdfa-triples/0101.nt +3 -0
- data/spec/rdfa-triples/0102.nt +1 -0
- data/spec/rdfa-triples/0103.nt +1 -0
- data/spec/rdfa-triples/0104.nt +3 -0
- data/spec/rdfa-triples/0105.nt +1 -0
- data/spec/rdfa-triples/0106.nt +1 -0
- data/spec/rdfa-triples/0107.nt +0 -0
- data/spec/rdfa-triples/0108.nt +1 -0
- data/spec/rdfa-triples/0109.nt +1 -0
- data/spec/rdfa-triples/0110.nt +1 -0
- data/spec/rdfa-triples/0111.nt +2 -0
- data/spec/rdfa-triples/0112.nt +1 -0
- data/spec/rdfa-triples/0113.nt +2 -0
- data/spec/rdfa-triples/0114.nt +3 -0
- data/spec/rdfa-triples/0115.nt +4 -0
- data/spec/rdfa-triples/0116.nt +2 -0
- data/spec/rdfa-triples/0117.nt +2 -0
- data/spec/rdfa-triples/0118.nt +1 -0
- data/spec/rdfa-triples/0119.nt +1 -0
- data/spec/rdfa-triples/0120.nt +1 -0
- data/spec/rdfa-triples/0121.nt +2 -0
- data/spec/rdfa-triples/0122.nt +1 -0
- data/spec/rdfa-triples/0123.nt +3 -0
- data/spec/rdfa-triples/0124.nt +4 -0
- data/spec/rdfa-triples/0125.nt +1 -0
- data/spec/rdfa-triples/0126.nt +3 -0
- data/spec/rdfa-triples/1001.nt +6 -0
- data/spec/rdfa_helper.rb +189 -0
- data/spec/rdfa_parser_spec.rb +148 -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/rdfxml_helper.rb +137 -0
- data/spec/rdfxml_spec.rb +362 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +23 -0
- data/spec/sqlite3_store_spec.rb +41 -0
- data/spec/store_helper.rb +231 -0
- data/spec/string_hacks_spec.rb +21 -0
- data/spec/triple_spec.rb +172 -0
- data/spec/uriref_spec.rb +117 -0
- data/test/longtests_spec.rb +25 -0
- data/test/n3_tests/lcsh/sh85062913.n3 +41 -0
- data/test/n3_tests/lcsh/sh85062913.nt +21 -0
- data/test/n3_tests/lcsh/sh85082139.n3 +157 -0
- data/test/n3_tests/lcsh/sh85082139.nt +79 -0
- data/test/n3_tests/lcsh/sh85118553.n3 +123 -0
- data/test/n3_tests/lcsh/sh85118553.nt +63 -0
- data/test/n3_tests/misc/on_now-01.n3 +30 -0
- data/test/n3_tests/misc/on_now-01.nt +15 -0
- data/test/n3_tests/n3p/simple-01.n3 +1 -0
- data/test/n3_tests/n3p/simple-01.nt +0 -0
- data/test/n3_tests/n3p/simple-02.n3 +4 -0
- data/test/n3_tests/n3p/simple-02.nt +0 -0
- data/test/n3_tests/n3p/simple-03.n3 +5 -0
- data/test/n3_tests/n3p/simple-03.nt +1 -0
- data/test/n3_tests/n3p/simple-04.n3 +6 -0
- data/test/n3_tests/n3p/simple-04.nt +3 -0
- data/test/n3_tests/n3p/simple-05.n3 +7 -0
- data/test/n3_tests/n3p/simple-05.nt +2 -0
- data/test/n3_tests/n3p/simple-06.n3 +6 -0
- data/test/n3_tests/n3p/simple-06.nt +4 -0
- data/test/n3_tests/n3p/simple-07.n3 +7 -0
- data/test/n3_tests/n3p/simple-07.nt +6 -0
- data/test/perf_test/test.rb +11 -0
- data/test/perf_test/tommorris.rdf +2267 -0
- data/test/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.nt +24 -0
- data/test/rdf_tests/cc197bad-dc9c-440d-a5b5-d52ba2e14234.rdf +46 -0
- data/test/rdf_tests/tm_001.nt +1 -0
- data/test/rdf_tests/tm_001.rdf +7 -0
- data/test/rdf_tests/xml-literal-mixed.nt +7 -0
- data/test/rdf_tests/xml-literal-mixed.rdf +15 -0
- data/test/xml.rdf +6 -0
- metadata +696 -0
@@ -0,0 +1,123 @@
|
|
1
|
+
|
2
|
+
@prefix lcsh_10: <http://lcsh.info/sh2005005260#>.
|
3
|
+
@prefix lcsh_11: <http://lcsh.info/sh89003285#>.
|
4
|
+
@prefix lcsh_12: <http://lcsh.info/sh85051625#>.
|
5
|
+
@prefix lcsh_13: <http://lcsh.info/sh89001061#>.
|
6
|
+
@prefix lcsh_14: <http://lcsh.info/sh88007833#>.
|
7
|
+
@prefix lcsh_15: <http://lcsh.info/sh85079823#>.
|
8
|
+
@prefix lcsh_16: <http://lcsh.info/sh2006008078#>.
|
9
|
+
@prefix lcsh_17: <http://lcsh.info/sh92004048#>.
|
10
|
+
@prefix lcsh_18: <http://lcsh.info/sh85088165#>.
|
11
|
+
@prefix lcsh_19: <http://lcsh.info/sh85120210#>.
|
12
|
+
@prefix lcsh_20: <http://lcsh.info/sh98005795#>.
|
13
|
+
@prefix lcsh_21: <http://lcsh.info/sh00002690#>.
|
14
|
+
@prefix lcsh_22: <http://lcsh.info/sh96010624#>.
|
15
|
+
@prefix lcsh_23: <http://lcsh.info/sh85076841#>.
|
16
|
+
@prefix lcsh_24: <http://lcsh.info/sh88007926#>.
|
17
|
+
@prefix lcsh_25: <http://lcsh.info/sh2003008595#>.
|
18
|
+
@prefix lcsh_26: <http://lcsh.info/sh85056179#>.
|
19
|
+
@prefix lcsh_27: <http://lcsh.info/sh90001487#>.
|
20
|
+
@prefix lcsh_28: <http://lcsh.info/sh86000064#>.
|
21
|
+
@prefix lcsh_29: <http://lcsh.info/sh85060947#>.
|
22
|
+
@prefix lcsh_30: <http://lcsh.info/sh2001002975#>.
|
23
|
+
@prefix lcsh_31: <http://lcsh.info/sh99002551#>.
|
24
|
+
@prefix lcsh_32: <http://lcsh.info/sh85072992#>.
|
25
|
+
@prefix lcsh_33: <http://lcsh.info/sh85133573#>.
|
26
|
+
@prefix lcsh_34: <http://lcsh.info/sh85101000#>.
|
27
|
+
@prefix lcsh_35: <http://lcsh.info/sh85144367#>.
|
28
|
+
@prefix lcsh_36: <http://lcsh.info/sh2002000242#>.
|
29
|
+
@prefix lcsh_37: <http://lcsh.info/sh88006179#>.
|
30
|
+
@prefix lcsh_38: <http://lcsh.info/sh85013804#>.
|
31
|
+
@prefix lcsh_39: <http://lcsh.info/sh85097903#>.
|
32
|
+
@prefix lcsh_40: <http://lcsh.info/sh85112579#>.
|
33
|
+
@prefix lcsh_41: <http://lcsh.info/sh89005705#>.
|
34
|
+
@prefix lcsh_42: <http://lcsh.info/sh89005450#>.
|
35
|
+
@prefix lcsh_43: <http://lcsh.info/sh2001008470#>.
|
36
|
+
@prefix lcsh_44: <http://lcsh.info/sh85006246#>.
|
37
|
+
@prefix lcsh_45: <http://lcsh.info/sh85149727#>.
|
38
|
+
@prefix lcsh_46: <http://lcsh.info/sh85029094#>.
|
39
|
+
@prefix lcsh_47: <http://lcsh.info/sh85082139#>.
|
40
|
+
@prefix lcsh_48: <http://lcsh.info/sh85147604#>.
|
41
|
+
@prefix lcsh_49: <http://lcsh.info/sh85085833#>.
|
42
|
+
@prefix lcsh_50: <http://lcsh.info/sh2006004914#>.
|
43
|
+
@prefix lcsh_51: <http://lcsh.info/sh2006001308#>.
|
44
|
+
@prefix lcsh_52: <http://lcsh.info/sh85017514#>.
|
45
|
+
@prefix lcsh_53: <http://lcsh.info/sh85122441#>.
|
46
|
+
@prefix lcsh_54: <http://lcsh.info/sh85070881#>.
|
47
|
+
@prefix lcsh_55: <http://lcsh.info/sh85090222#>.
|
48
|
+
@prefix lcsh_56: <http://lcsh.info/sh85029164#>.
|
49
|
+
@prefix lcsh_57: <http://lcsh.info/sh85125953#>.
|
50
|
+
@prefix lcsh_58: <http://lcsh.info/sh2004002205#>.
|
51
|
+
@prefix lcsh_59: <http://lcsh.info/sh85133147#>.
|
52
|
+
@prefix lcsh_6: <http://lcsh.info/sh85118553#>.
|
53
|
+
@prefix lcsh_60: <http://lcsh.info/sh90000823#>.
|
54
|
+
@prefix lcsh_7: <http://lcsh.info/sh86002531#>.
|
55
|
+
@prefix lcsh_8: <http://lcsh.info/sh95008762#>.
|
56
|
+
@prefix lcsh_9: <http://lcsh.info/sh85068424#>.
|
57
|
+
@prefix dcterms: <http://purl.org/dc/terms/>.
|
58
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
|
59
|
+
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
|
60
|
+
|
61
|
+
lcsh_6:concept a skos:Concept;
|
62
|
+
dcterms:LCC "Q";
|
63
|
+
dcterms:created "2000-06-20"^^<http://www.w3.org/2001/XMLSchema#date>;
|
64
|
+
dcterms:modified "2000-07-31T10:18:10"^^<http://www.w3.org/2001/XMLSchema#dateTime>;
|
65
|
+
skos:altLabel "Natural science"@en,
|
66
|
+
"Science of science"@en,
|
67
|
+
"Sciences"@en;
|
68
|
+
skos:inScheme <http://lcsh.info/>;
|
69
|
+
skos:narrower lcsh_21:concept,
|
70
|
+
lcsh_30:concept,
|
71
|
+
lcsh_43:concept,
|
72
|
+
lcsh_36:concept,
|
73
|
+
lcsh_25:concept,
|
74
|
+
lcsh_58:concept,
|
75
|
+
lcsh_10:concept,
|
76
|
+
lcsh_51:concept,
|
77
|
+
lcsh_50:concept,
|
78
|
+
lcsh_16:concept,
|
79
|
+
lcsh_44:concept,
|
80
|
+
lcsh_38:concept,
|
81
|
+
lcsh_52:concept,
|
82
|
+
lcsh_46:concept,
|
83
|
+
lcsh_56:concept,
|
84
|
+
lcsh_12:concept,
|
85
|
+
lcsh_26:concept,
|
86
|
+
lcsh_29:concept,
|
87
|
+
lcsh_9:concept,
|
88
|
+
lcsh_54:concept,
|
89
|
+
lcsh_32:concept,
|
90
|
+
lcsh_23:concept,
|
91
|
+
lcsh_15:concept,
|
92
|
+
lcsh_47:concept,
|
93
|
+
lcsh_49:concept,
|
94
|
+
lcsh_18:concept,
|
95
|
+
lcsh_55:concept,
|
96
|
+
lcsh_39:concept,
|
97
|
+
lcsh_34:concept,
|
98
|
+
lcsh_40:concept,
|
99
|
+
lcsh_19:concept,
|
100
|
+
lcsh_53:concept,
|
101
|
+
lcsh_57:concept,
|
102
|
+
lcsh_59:concept,
|
103
|
+
lcsh_33:concept,
|
104
|
+
lcsh_35:concept,
|
105
|
+
lcsh_48:concept,
|
106
|
+
lcsh_45:concept,
|
107
|
+
lcsh_28:concept,
|
108
|
+
lcsh_7:concept,
|
109
|
+
lcsh_37:concept,
|
110
|
+
lcsh_14:concept,
|
111
|
+
lcsh_24:concept,
|
112
|
+
lcsh_13:concept,
|
113
|
+
lcsh_11:concept,
|
114
|
+
lcsh_42:concept,
|
115
|
+
lcsh_41:concept,
|
116
|
+
lcsh_60:concept,
|
117
|
+
lcsh_27:concept,
|
118
|
+
lcsh_17:concept,
|
119
|
+
lcsh_8:concept,
|
120
|
+
lcsh_22:concept,
|
121
|
+
lcsh_20:concept,
|
122
|
+
lcsh_31:concept;
|
123
|
+
skos:prefLabel "Science"@en.
|
@@ -0,0 +1,63 @@
|
|
1
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
2
|
+
<http://lcsh.info/sh85118553#concept> <http://purl.org/dc/terms/LCC> "Q" .
|
3
|
+
<http://lcsh.info/sh85118553#concept> <http://purl.org/dc/terms/created> "2000-06-20"^^<http://www.w3.org/2001/XMLSchema#date> .
|
4
|
+
<http://lcsh.info/sh85118553#concept> <http://purl.org/dc/terms/modified> "2000-07-31T10:18:10"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
|
5
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#altLabel> "Natural science"@en .
|
6
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#altLabel> "Science of science"@en .
|
7
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#altLabel> "Sciences"@en .
|
8
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#inScheme> <http://lcsh.info/> .
|
9
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh00002690#concept> .
|
10
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2001002975#concept> .
|
11
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2001008470#concept> .
|
12
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2002000242#concept> .
|
13
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2003008595#concept> .
|
14
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2004002205#concept> .
|
15
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2005005260#concept> .
|
16
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2006001308#concept> .
|
17
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2006004914#concept> .
|
18
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh2006008078#concept> .
|
19
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85006246#concept> .
|
20
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85013804#concept> .
|
21
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85017514#concept> .
|
22
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85029094#concept> .
|
23
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85029164#concept> .
|
24
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85051625#concept> .
|
25
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85056179#concept> .
|
26
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85060947#concept> .
|
27
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85068424#concept> .
|
28
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85070881#concept> .
|
29
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85072992#concept> .
|
30
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85076841#concept> .
|
31
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85079823#concept> .
|
32
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85082139#concept> .
|
33
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85085833#concept> .
|
34
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85088165#concept> .
|
35
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85090222#concept> .
|
36
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85097903#concept> .
|
37
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85101000#concept> .
|
38
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85112579#concept> .
|
39
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85120210#concept> .
|
40
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85122441#concept> .
|
41
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85125953#concept> .
|
42
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85133147#concept> .
|
43
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85133573#concept> .
|
44
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85144367#concept> .
|
45
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85147604#concept> .
|
46
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh85149727#concept> .
|
47
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh86000064#concept> .
|
48
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh86002531#concept> .
|
49
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh88006179#concept> .
|
50
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh88007833#concept> .
|
51
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh88007926#concept> .
|
52
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh89001061#concept> .
|
53
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh89003285#concept> .
|
54
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh89005450#concept> .
|
55
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh89005705#concept> .
|
56
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh90000823#concept> .
|
57
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh90001487#concept> .
|
58
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh92004048#concept> .
|
59
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh95008762#concept> .
|
60
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh96010624#concept> .
|
61
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh98005795#concept> .
|
62
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#narrower> <http://lcsh.info/sh99002551#concept> .
|
63
|
+
<http://lcsh.info/sh85118553#concept> <http://www.w3.org/2004/02/skos/core#prefLabel> "Science"@en .
|
@@ -0,0 +1,30 @@
|
|
1
|
+
@prefix dc: <http://purl.org/dc/elements/1.1/>.
|
2
|
+
@prefix po: <http://purl.org/ontology/po/>.
|
3
|
+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
|
4
|
+
_:broadcast
|
5
|
+
a po:Broadcast;
|
6
|
+
po:schedule_date """2008-06-24T12:00:00Z""";
|
7
|
+
po:broadcast_of _:version;
|
8
|
+
po:broadcast_on <http://www.bbc.co.uk/programmes/service/6music>;
|
9
|
+
.
|
10
|
+
_:version
|
11
|
+
a po:Version;
|
12
|
+
.
|
13
|
+
<http://www.bbc.co.uk/programmes/b0072l93>
|
14
|
+
dc:title """Nemone""";
|
15
|
+
a po:Brand;
|
16
|
+
.
|
17
|
+
<http://www.bbc.co.uk/programmes/b00c735d>
|
18
|
+
a po:Episode;
|
19
|
+
po:episode <http://www.bbc.co.uk/programmes/b0072l93>;
|
20
|
+
po:version _:version;
|
21
|
+
po:long_synopsis """Actor and comedian Rhys Darby chats to Nemone.""";
|
22
|
+
dc:title """Nemone""";
|
23
|
+
po:synopsis """Actor and comedian Rhys Darby chats to Nemone.""";
|
24
|
+
.
|
25
|
+
<http://www.bbc.co.uk/programmes/service/6music>
|
26
|
+
a po:Service;
|
27
|
+
dc:title """BBC 6 Music""";
|
28
|
+
.
|
29
|
+
|
30
|
+
#_:abcd a po:Episode.
|
@@ -0,0 +1,15 @@
|
|
1
|
+
_:broadcast <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/po/Broadcast> .
|
2
|
+
_:broadcast <http://purl.org/ontology/po/schedule_date> "2008-06-24T12:00:00Z" .
|
3
|
+
_:broadcast <http://purl.org/ontology/po/broadcast_of> _:version .
|
4
|
+
_:broadcast <http://purl.org/ontology/po/broadcast_on> <http://www.bbc.co.uk/programmes/service/6music> .
|
5
|
+
_:version <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/po/Version> .
|
6
|
+
<http://www.bbc.co.uk/programmes/b0072l93> <http://purl.org/dc/elements/1.1/title> "Nemone" .
|
7
|
+
<http://www.bbc.co.uk/programmes/b0072l93> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/po/Brand> .
|
8
|
+
<http://www.bbc.co.uk/programmes/b00c735d> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/po/Episode> .
|
9
|
+
<http://www.bbc.co.uk/programmes/b00c735d> <http://purl.org/ontology/po/episode> <http://www.bbc.co.uk/programmes/b0072l93> .
|
10
|
+
<http://www.bbc.co.uk/programmes/b00c735d> <http://purl.org/ontology/po/version> _:version .
|
11
|
+
<http://www.bbc.co.uk/programmes/b00c735d> <http://purl.org/ontology/po/long_synopsis> "Actor and comedian Rhys Darby chats to Nemone." .
|
12
|
+
<http://www.bbc.co.uk/programmes/b00c735d> <http://purl.org/dc/elements/1.1/title> "Nemone" .
|
13
|
+
<http://www.bbc.co.uk/programmes/b00c735d> <http://purl.org/ontology/po/synopsis> "Actor and comedian Rhys Darby chats to Nemone." .
|
14
|
+
<http://www.bbc.co.uk/programmes/service/6music> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/ontology/po/Service> .
|
15
|
+
<http://www.bbc.co.uk/programmes/service/6music> <http://purl.org/dc/elements/1.1/title> "BBC 6 Music" .
|
@@ -0,0 +1 @@
|
|
1
|
+
# simple-01.n3 - Empty file
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
_:Sean <http://xmlns.com/foaf/0.1/name> "Sean B. Palmer" .
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<http://example.org/#Subject> <http://example.org/#predicate> <http://example.org/#ObjectP> .
|
2
|
+
<http://example.org/#Subject> <http://example.org/#predicate> <http://example.org/#ObjectQ> .
|
3
|
+
<http://example.org/#Subject> <http://example.org/#predicate> <http://example.org/#ObjectR> .
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<http://example.org/#Subject> <http://example.org/#predicateOne> <http://example.org/#ObjectA> .
|
2
|
+
<http://example.org/#Subject> <http://example.org/#predicateOne> <http://example.org/#ObjectB> .
|
3
|
+
<http://example.org/#Subject> <http://example.org/#predicateTwo> <http://example.org/#ObjectC> .
|
4
|
+
<http://example.org/#Subject> <http://example.org/#predicateTwo> <http://example.org/#ObjectD> .
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# simple-07.n3 - Popairs and multiple objects, mixed types
|
2
|
+
|
3
|
+
@prefix : <http://example.org/#> .
|
4
|
+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
|
5
|
+
|
6
|
+
:Subject :predicateOne :ObjectP, <http://example.org/path#ObjectQ>;
|
7
|
+
:predicateTwo [ foaf:nick "spiggot" ], "ObjectR", _:ObjectS .
|
@@ -0,0 +1,6 @@
|
|
1
|
+
<http://example.org/#Subject> <http://example.org/#predicateOne> <http://example.org/#ObjectP> .
|
2
|
+
<http://example.org/#Subject> <http://example.org/#predicateOne> <http://example.org/path#ObjectQ> .
|
3
|
+
<http://example.org/#Subject> <http://example.org/#predicateTwo> _:a .
|
4
|
+
_:a <http://xmlns.com/foaf/0.1/nick> "spiggot" .
|
5
|
+
<http://example.org/#Subject> <http://example.org/#predicateTwo> "ObjectR" .
|
6
|
+
<http://example.org/#Subject> <http://example.org/#predicateTwo> _:ObjectS .
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require "test/unit"
|
2
|
+
require "lib/"
|
3
|
+
|
4
|
+
class TestRdfContextPerf < Test::Unit::TestCase
|
5
|
+
def test_tom_foaf
|
6
|
+
foaf = File.new("test/perf_test/tommorris.rdf", "r").readlines.join
|
7
|
+
50.times do
|
8
|
+
RdfContext::RdfXmlParser.new(foaf, "http://tommorris.org/foaf")
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,2267 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<rdf:RDF xmlns="http://xmlns.com/foaf/0.1/"
|
3
|
+
xmlns:blog="http://rdf.opiumfield.com/blog/0.1/"
|
4
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
5
|
+
xmlns:doac="http://ramonantonio.net/doac/0.1/"
|
6
|
+
xmlns:foaf="http://xmlns.com/foaf/0.1/"
|
7
|
+
xmlns:misc="http://rdf.opiumfield.com/misc/0.1/"
|
8
|
+
xmlns:owl="http://www.w3.org/2002/07/owl#"
|
9
|
+
xmlns:p="http://dbpedia.org/property/"
|
10
|
+
xmlns:pet="http://purl.org/stuff/pets/"
|
11
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
12
|
+
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
|
13
|
+
xmlns:rss="http://purl.org/rss/1.0/"
|
14
|
+
xmlns:veg="http://www.mindswap.org/2003/vegetarian.owl#"
|
15
|
+
xmlns:visit="http://purl.org/net/vocab/2004/07/visit#"
|
16
|
+
xmlns:wot="http://xmlns.com/wot/0.1/">
|
17
|
+
|
18
|
+
<rdf:Description rdf:about="">
|
19
|
+
<primaryTopic rdf:resource="#me"/>
|
20
|
+
<wot:assurance rdf:resource="tom.rdf.asc"/>
|
21
|
+
</rdf:Description>
|
22
|
+
|
23
|
+
<Document rdf:about="http://28481k.blogspot.com/">
|
24
|
+
<rdfs:seeAlso rdf:resource="http://28481k.blogspot.com/feeds/posts/default"/>
|
25
|
+
</Document>
|
26
|
+
|
27
|
+
<rss:channel rdf:about="http://28481k.blogspot.com/feeds/posts/default">
|
28
|
+
</rss:channel>
|
29
|
+
|
30
|
+
<Document rdf:about="http://adactio.com/">
|
31
|
+
<dc:lang>en</dc:lang>
|
32
|
+
<dc:title>Adactio</dc:title>
|
33
|
+
<rdfs:seeAlso rdf:resource="http://adactio.com/journal/rss"/>
|
34
|
+
</Document>
|
35
|
+
|
36
|
+
<rss:channel rdf:about="http://adactio.com/journal/rss">
|
37
|
+
</rss:channel>
|
38
|
+
|
39
|
+
<Document rdf:about="http://backstage.bbc.co.uk">
|
40
|
+
<dc:lang>en</dc:lang>
|
41
|
+
<dc:title>BBC Backstage</dc:title>
|
42
|
+
</Document>
|
43
|
+
|
44
|
+
<Document rdf:about="http://beissholz.de">
|
45
|
+
<dc:lang>de</dc:lang>
|
46
|
+
<dc:title>beissholz.de</dc:title>
|
47
|
+
<rdfs:seeAlso rdf:resource="http://feeds.feedburner.com/beissholz"/>
|
48
|
+
</Document>
|
49
|
+
|
50
|
+
<Document rdf:about="http://blog.bibrik.com">
|
51
|
+
<dc:lang>en</dc:lang>
|
52
|
+
<dc:title>Licence to Roam</dc:title>
|
53
|
+
<blog:tool rdf:resource="http://www.wordpress.org"/>
|
54
|
+
<rdfs:seeAlso rdf:resource="http://blog.bibrik.com/feed/"/>
|
55
|
+
</Document>
|
56
|
+
|
57
|
+
<rss:channel rdf:about="http://blog.bibrik.com/feed/">
|
58
|
+
</rss:channel>
|
59
|
+
|
60
|
+
<Document rdf:about="http://blog.broadbandmechanics.com">
|
61
|
+
<dc:lang>en</dc:lang>
|
62
|
+
<dc:title>Marc's Voice</dc:title>
|
63
|
+
<rdfs:seeAlso rdf:resource="http://blog.broadbandmechanics.com/feed/atom/"/>
|
64
|
+
</Document>
|
65
|
+
|
66
|
+
<rss:channel rdf:about="http://blog.broadbandmechanics.com/feed/atom/">
|
67
|
+
</rss:channel>
|
68
|
+
|
69
|
+
<Document rdf:about="http://blog.grazr.com">
|
70
|
+
<dc:lang>en</dc:lang>
|
71
|
+
<dc:title>Grazr Blog</dc:title>
|
72
|
+
<blog:tool rdf:resource="http://www.wordpress.org"/>
|
73
|
+
<rdfs:seeAlso rdf:resource="http://blog.grazr.com/index.php/feed/"/>
|
74
|
+
</Document>
|
75
|
+
|
76
|
+
<rss:channel rdf:about="http://blog.grazr.com/index.php/feed/">
|
77
|
+
</rss:channel>
|
78
|
+
|
79
|
+
<Document rdf:about="http://blog.leewilkins.com">
|
80
|
+
<dc:lang>en</dc:lang>
|
81
|
+
<dc:title>Lee Wilkins</dc:title>
|
82
|
+
<blog:rss rdf:resource="http://feeds.feedburner.com/leewilkins"/>
|
83
|
+
</Document>
|
84
|
+
|
85
|
+
<Document rdf:about="http://blogs.law.harvard.edu/jim/">
|
86
|
+
<dc:lang>en</dc:lang>
|
87
|
+
<dc:title>OPML, a book</dc:title>
|
88
|
+
<rdfs:seeAlso rdf:resource="http://blogs.law.harvard.edu/jim/feed/"/>
|
89
|
+
</Document>
|
90
|
+
|
91
|
+
<rss:channel rdf:about="http://blogs.law.harvard.edu/jim/feed/">
|
92
|
+
</rss:channel>
|
93
|
+
|
94
|
+
<rdf:Description rdf:about="http://blogs.law.harvard.edu/tech/rss">
|
95
|
+
<dc:title xml:lang="en">RSS</dc:title>
|
96
|
+
</rdf:Description>
|
97
|
+
|
98
|
+
<Document rdf:about="http://blogs.opml.org/koz">
|
99
|
+
<dc:lang>en</dc:lang>
|
100
|
+
<dc:title>KOZ - Kosso 2.0</dc:title>
|
101
|
+
</Document>
|
102
|
+
|
103
|
+
<Document rdf:about="http://blogs.opml.org/tommorris">
|
104
|
+
<dc:lang>en</dc:lang>
|
105
|
+
<blog:tool rdf:resource="http://support.opml.org"/>
|
106
|
+
<rdfs:seeAlso rdf:resource="http://feeds.feedburner.com/TomMorrisOPML"/>
|
107
|
+
</Document>
|
108
|
+
|
109
|
+
<Document rdf:about="http://bluestein.com">
|
110
|
+
<dc:lang>en</dc:lang>
|
111
|
+
<dc:title>Richard Bluestein's Weblog</dc:title>
|
112
|
+
<rdfs:seeAlso rdf:resource="http://bluestein.com/?feed=rss2"/>
|
113
|
+
</Document>
|
114
|
+
|
115
|
+
<rss:channel rdf:about="http://bluestein.com/?feed=rss2">
|
116
|
+
</rss:channel>
|
117
|
+
|
118
|
+
<rdf:Description rdf:about="http://chocnvodka.blogware.com/">
|
119
|
+
<dc:lang>en</dc:lang>
|
120
|
+
<dc:title>Chocolate and Vodka</dc:title>
|
121
|
+
</rdf:Description>
|
122
|
+
|
123
|
+
<rdf:Description rdf:about="http://conversationbase.com/blog/">
|
124
|
+
<dc:lang>en</dc:lang>
|
125
|
+
<dc:title>Conversation Base Blog</dc:title>
|
126
|
+
<blog:tool rdf:resource="http://www.wordpress.org"/>
|
127
|
+
<rdfs:seeAlso rdf:resource="http://conversationbase.com/blog/feed/"/>
|
128
|
+
</rdf:Description>
|
129
|
+
|
130
|
+
<rss:channel rdf:about="http://conversationbase.com/blog/feed/">
|
131
|
+
</rss:channel>
|
132
|
+
|
133
|
+
<Document rdf:about="http://crueltobekind.org">
|
134
|
+
<dc:lang>en</dc:lang>
|
135
|
+
<dc:title>cruel to be kind</dc:title>
|
136
|
+
<rdfs:seeAlso rdf:resource="http://feeds.feedburner.com/crueltobekind"/>
|
137
|
+
</Document>
|
138
|
+
|
139
|
+
<Document rdf:about="http://eirepreneur.blogs.com">
|
140
|
+
<dc:lang>en</dc:lang>
|
141
|
+
<dc:title>Eirepreneur</dc:title>
|
142
|
+
<blog:tool rdf:resource="http://www.typepad.com"/>
|
143
|
+
<rdfs:seeAlso rdf:resource="http://feeds.feedburner.com/Eirepreneur"/>
|
144
|
+
</Document>
|
145
|
+
|
146
|
+
<rdf:Description rdf:about="http://en.wikipedia.org/wiki/Friedrich_Nietzsche">
|
147
|
+
<dc:title xml:lang="en">Friedrich Nietzsche</dc:title>
|
148
|
+
</rdf:Description>
|
149
|
+
|
150
|
+
<rdf:Description rdf:about="http://en.wikipedia.org/wiki/Podcasting">
|
151
|
+
<dc:title xml:lang="en">Podcasting</dc:title>
|
152
|
+
</rdf:Description>
|
153
|
+
|
154
|
+
<rdf:Description rdf:about="http://en.wikipedia.org/wiki/S%C3%B8ren_Kierkegaard">
|
155
|
+
<dc:title xml:lang="en">Søren Kierkegaard</dc:title>
|
156
|
+
</rdf:Description>
|
157
|
+
|
158
|
+
<rdf:Description rdf:about="http://en.wikipedia.org/wiki/United_States">
|
159
|
+
<dc:title xml:lang="en">United States of America</dc:title>
|
160
|
+
</rdf:Description>
|
161
|
+
|
162
|
+
<Document rdf:about="http://epeus.blogspot.com">
|
163
|
+
<dc:lang>en</dc:lang>
|
164
|
+
<dc:name>Epeus' epigone</dc:name>
|
165
|
+
<blog:tool rdf:resource="http://www.blogger.com"/>
|
166
|
+
<rdfs:seeAlso rdf:resource="http://epeus.blogspot.com/atom.xml"/>
|
167
|
+
</Document>
|
168
|
+
|
169
|
+
<rss:channel rdf:about="http://epeus.blogspot.com/atom.xml">
|
170
|
+
</rss:channel>
|
171
|
+
|
172
|
+
<Document rdf:about="http://feedonomics.grazr.com">
|
173
|
+
<dc:lang>en</dc:lang>
|
174
|
+
<dc:title>Feedonomics</dc:title>
|
175
|
+
<blog:tool rdf:resource="http://www.wordpress.org"/>
|
176
|
+
<rdfs:seeAlso rdf:resource="http://feedonomics.grazr.com/index.php/feed/"/>
|
177
|
+
</Document>
|
178
|
+
|
179
|
+
<rss:channel rdf:about="http://feedonomics.grazr.com/index.php/feed/">
|
180
|
+
</rss:channel>
|
181
|
+
|
182
|
+
<rss:channel rdf:about="http://feeds.feedburner.com/Eirepreneur">
|
183
|
+
</rss:channel>
|
184
|
+
|
185
|
+
<rss:channel rdf:about="http://feeds.feedburner.com/NoDoubleStandards">
|
186
|
+
</rss:channel>
|
187
|
+
|
188
|
+
<rss:channel rdf:about="http://feeds.feedburner.com/TomMorrisOPML">
|
189
|
+
</rss:channel>
|
190
|
+
|
191
|
+
<rss:channel rdf:about="http://feeds.feedburner.com/beissholz">
|
192
|
+
</rss:channel>
|
193
|
+
|
194
|
+
<rss:channel rdf:about="http://feeds.feedburner.com/boingboing/iBag">
|
195
|
+
</rss:channel>
|
196
|
+
|
197
|
+
<rss:channel rdf:about="http://feeds.feedburner.com/crueltobekind">
|
198
|
+
</rss:channel>
|
199
|
+
|
200
|
+
<rss:channel rdf:about="http://feeds.feedburner.com/scienceblogs/pharyngula">
|
201
|
+
</rss:channel>
|
202
|
+
|
203
|
+
<rss:channel rdf:about="http://feeds.simonwillison.net/swn-everything">
|
204
|
+
</rss:channel>
|
205
|
+
|
206
|
+
<Document rdf:about="http://gigaom.com">
|
207
|
+
<dc:lang>en</dc:lang>
|
208
|
+
<dc:title>GigaOm</dc:title>
|
209
|
+
</Document>
|
210
|
+
|
211
|
+
<Document rdf:about="http://gigaom.com/about/about-om/">
|
212
|
+
<dc:lang>en</dc:lang>
|
213
|
+
<dc:title>About Om</dc:title>
|
214
|
+
</Document>
|
215
|
+
|
216
|
+
<Document rdf:about="http://impartialism.blogspot.com/">
|
217
|
+
<dc:lang>en</dc:lang>
|
218
|
+
<dc:title>No Double Standards</dc:title>
|
219
|
+
<rdfs:seeAlso rdf:resource="http://feeds.feedburner.com/NoDoubleStandards"/>
|
220
|
+
</Document>
|
221
|
+
|
222
|
+
<Document rdf:about="http://kosso.wordpress.com">
|
223
|
+
<dc:lang>en</dc:lang>
|
224
|
+
<dc:title>kosso's braingarden</dc:title>
|
225
|
+
<blog:tool rdf:resource="http://www.wordpress.com"/>
|
226
|
+
<rdfs:seeAlso rdf:resource="http://kosso.wordpress.com/feed/"/>
|
227
|
+
</Document>
|
228
|
+
|
229
|
+
<Document rdf:about="http://odeo.com/channel/126064/">
|
230
|
+
<dc:lang>en</dc:lang>
|
231
|
+
<dc:title>Boing Boing Boing</dc:title>
|
232
|
+
<blog:rss rdf:resource="http://odeo.com/channel/126064/rss"/>
|
233
|
+
</Document>
|
234
|
+
|
235
|
+
<rss:channel rdf:about="http://odeo.com/channel/126064/rss">
|
236
|
+
</rss:channel>
|
237
|
+
|
238
|
+
<rdf:Description rdf:about="http://relaxng.org">
|
239
|
+
<dc:title xml:lang="en">RELAX NG</dc:title>
|
240
|
+
</rdf:Description>
|
241
|
+
|
242
|
+
<Document rdf:about="http://scienceblogs.com/pharyngula">
|
243
|
+
<dc:lang>en</dc:lang>
|
244
|
+
<dc:title>Pharyngula</dc:title>
|
245
|
+
<rdfs:seeAlso rdf:resource="http://feeds.feedburner.com/scienceblogs/pharyngula"/>
|
246
|
+
</Document>
|
247
|
+
|
248
|
+
<Document rdf:about="http://scobleizer.com">
|
249
|
+
<dc:lang>en</dc:lang>
|
250
|
+
<dc:title>Scobleizer - Tech Geek Blogger</dc:title>
|
251
|
+
<blog:tool rdf:resource="http://www.wordpress.org"/>
|
252
|
+
<rdfs:seeAlso rdf:resource="http://scobleizer.wordpress.com/feed/"/>
|
253
|
+
</Document>
|
254
|
+
|
255
|
+
<rss:channel rdf:about="http://scobleizer.wordpress.com/feed/">
|
256
|
+
</rss:channel>
|
257
|
+
|
258
|
+
<rdf:Description rdf:about="http://scripting.wordpress.com">
|
259
|
+
<dc:lang>en</dc:lang>
|
260
|
+
<dc:title>Scripting News Annex</dc:title>
|
261
|
+
<blog:tool rdf:resource="http://www.wordpress.com"/>
|
262
|
+
<rdfs:seeAlso rdf:resource="http://scripting.wordpress.com/feed/"/>
|
263
|
+
</rdf:Description>
|
264
|
+
|
265
|
+
<rss:channel rdf:about="http://scripting.wordpress.com/feed/">
|
266
|
+
</rss:channel>
|
267
|
+
|
268
|
+
<rdf:Description rdf:about="http://share.opml.org">
|
269
|
+
<dc:title xml:lang="en">Share Your OPML</dc:title>
|
270
|
+
</rdf:Description>
|
271
|
+
|
272
|
+
<Document rdf:about="http://simonwillison.net">
|
273
|
+
<dc:title xml:lang="en">Simon Willison's Weblog</dc:title>
|
274
|
+
<rdfs:seeAlso rdf:resource="http://feeds.simonwillison.net/swn-everything"/>
|
275
|
+
</Document>
|
276
|
+
|
277
|
+
<rdf:Description rdf:about="http://strange.corante.com">
|
278
|
+
<dc:lang>en</dc:lang>
|
279
|
+
<dc:title>Strange Attractor</dc:title>
|
280
|
+
</rdf:Description>
|
281
|
+
|
282
|
+
<Document rdf:about="http://tantek.com/">
|
283
|
+
<dc:lang>en</dc:lang>
|
284
|
+
<dc:title xml:lang="en">Tantek's Thoughts</dc:title>
|
285
|
+
<rdfs:seeAlso rdf:resource="http://tantek.com/updates.atom"/>
|
286
|
+
</Document>
|
287
|
+
|
288
|
+
<rss:channel rdf:about="http://tantek.com/updates.atom">
|
289
|
+
</rss:channel>
|
290
|
+
|
291
|
+
<Document rdf:about="http://thelondonbiker.com/">
|
292
|
+
<rdfs:seeAlso rdf:resource="http://www.thelondonbiker.com/blog/?feed=rss2"/>
|
293
|
+
</Document>
|
294
|
+
|
295
|
+
<Person rdf:about="http://tommorris.org/foaf#alaric_bsm">
|
296
|
+
<rdfs:seeAlso rdf:resource="http://www.snell-pym.org.uk/alaric/alaric-foaf.rdf"/>
|
297
|
+
<owl:sameAs rdf:resource="urn:oid:1.2.826.0.1.4062548.2.1"/>
|
298
|
+
<name>Alaric Snell-Pym</name>
|
299
|
+
<wot:hasKey rdf:parseType="Resource">
|
300
|
+
<rdf:type rdf:resource="http://xmlns.com/wot/0.1/PubKey"/>
|
301
|
+
<wot:hex_id>737108A</wot:hex_id>
|
302
|
+
<wot:pubkeyAddress rdf:resource="http://snell-pym.org.uk/alaric/publickey.asc"/>
|
303
|
+
</wot:hasKey>
|
304
|
+
</Person>
|
305
|
+
|
306
|
+
<Person rdf:about="http://tommorris.org/foaf#ayers_danny">
|
307
|
+
</Person>
|
308
|
+
|
309
|
+
<Person rdf:about="http://tommorris.org/foaf#baker_keith">
|
310
|
+
<gender>male</gender>
|
311
|
+
<mbox_sha1sum>85ddadbdffb134fc6d7926a6a1a2cd1c9bbec9bd</mbox_sha1sum>
|
312
|
+
<name>Keith Baker</name>
|
313
|
+
<schoolHomepage rdf:resource="http://www.dmu.ac.uk"/>
|
314
|
+
<schoolHomepage rdf:resource="http://www.sussex.ac.uk"/>
|
315
|
+
</Person>
|
316
|
+
|
317
|
+
<Person rdf:about="http://tommorris.org/foaf#bernard_ian">
|
318
|
+
<gender>male</gender>
|
319
|
+
<name>Ian Bernard</name>
|
320
|
+
<workplaceHomepage rdf:resource="http://www.freetalklive.com"/>
|
321
|
+
</Person>
|
322
|
+
|
323
|
+
<Person rdf:about="http://tommorris.org/foaf#bluestein_richard">
|
324
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#DE"/>
|
325
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#FR"/>
|
326
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#IT"/>
|
327
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#NL"/>
|
328
|
+
<misc:alternateCharacter rdf:resource="http://tommorris.org/foaf#madge_weinstein"/>
|
329
|
+
<gender>male</gender>
|
330
|
+
<name>Richard Bluestein</name>
|
331
|
+
<weblog rdf:resource="http://bluestein.com"/>
|
332
|
+
</Person>
|
333
|
+
|
334
|
+
<Person rdf:about="http://tommorris.org/foaf#bowring_dan">
|
335
|
+
<gender>male</gender>
|
336
|
+
<name>Dan Bowring</name>
|
337
|
+
</Person>
|
338
|
+
|
339
|
+
<Person rdf:about="http://tommorris.org/foaf#brickley_dan">
|
340
|
+
<rdfs:seeAlso rdf:resource="http://danbri.org/foaf.rdf#danbri"/>
|
341
|
+
<name>Dan Brickley</name>
|
342
|
+
</Person>
|
343
|
+
|
344
|
+
<Person rdf:about="http://tommorris.org/foaf#budd_andy">
|
345
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/profile/andybudd/"/>
|
346
|
+
<owl:sameAs rdf:resource="http://www.last.fm/user/andybudd/"/>
|
347
|
+
<knows rdf:resource="http://tommorris.org/foaf#keith_jeremy"/>
|
348
|
+
<knows rdf:resource="http://tommorris.org/foaf#willison_simon"/>
|
349
|
+
<name>Andy Budd</name>
|
350
|
+
<openid rdf:resource="http://andybudd.com/"/>
|
351
|
+
<openid rdf:resource="http://andybudd.idproxy.net/"/>
|
352
|
+
<openid rdf:resource="http://www.andybudd.com/"/>
|
353
|
+
<weblog rdf:resource="http://www.andybudd.com/"/>
|
354
|
+
<weblog rdf:resource="http://www.andybudd.com/links/"/>
|
355
|
+
</Person>
|
356
|
+
|
357
|
+
<Person rdf:about="http://tommorris.org/foaf#canter_marc">
|
358
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#FR"/>
|
359
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#IN"/>
|
360
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#NL"/>
|
361
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#UK"/>
|
362
|
+
<gender>male</gender>
|
363
|
+
<name>Marc Canter</name>
|
364
|
+
<weblog rdf:resource="http://blog.broadbandmechanics.com"/>
|
365
|
+
<workplaceHomepage rdf:resource="http://www.broadbandmechanics.com"/>
|
366
|
+
</Person>
|
367
|
+
|
368
|
+
<Person rdf:about="http://tommorris.org/foaf#cashmore_matthew">
|
369
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/profile/matthewcashmore/"/>
|
370
|
+
<owl:sameAs rdf:resource="http://www.flickr.com/photos/mattcashmore/"/>
|
371
|
+
<owl:sameAs rdf:resource="http://www.last.fm/user/matthewcashmore/"/>
|
372
|
+
<gender>male</gender>
|
373
|
+
<knows rdf:resource="http://tommorris.org/foaf#forrester_ian"/>
|
374
|
+
<name>Matthew Cashmore</name>
|
375
|
+
<weblog rdf:resource="http://thelondonbiker.com/"/>
|
376
|
+
<workplaceHomepage rdf:resource="http://backstage.bbc.co.uk"/>
|
377
|
+
</Person>
|
378
|
+
|
379
|
+
<Person rdf:about="http://tommorris.org/foaf#celik_tantek">
|
380
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#UK"/>
|
381
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/t/rdf"/>
|
382
|
+
<owl:sameAs rdf:resource="http://twitter.com/t"/>
|
383
|
+
<gender>male</gender>
|
384
|
+
<name>Tantek Çelik</name>
|
385
|
+
<openid rdf:resource="http://tantek.com/"/>
|
386
|
+
<weblog rdf:resource="http://tantek.com/"/>
|
387
|
+
</Person>
|
388
|
+
|
389
|
+
<Person rdf:about="http://tommorris.org/foaf#charman_suw">
|
390
|
+
<gender>female</gender>
|
391
|
+
<homepage rdf:resource="http://www.suw.org.uk"/>
|
392
|
+
<mbox_sha1sum>37196d1d683d0d85e3d003cfbfcbfb84b32689e1</mbox_sha1sum>
|
393
|
+
<name>Suw Charman</name>
|
394
|
+
<weblog rdf:resource="http://chocnvodka.blogware.com"/>
|
395
|
+
<weblog rdf:resource="http://strange.corante.com"/>
|
396
|
+
<workplaceHomepage rdf:resource="http://www.openrightsgroup.org"/>
|
397
|
+
</Person>
|
398
|
+
|
399
|
+
<Person rdf:about="http://tommorris.org/foaf#clarke_rachel">
|
400
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/rachelclarke/rdf"/>
|
401
|
+
<owl:sameAs rdf:resource="http://twitter.com/rachelclarke"/>
|
402
|
+
<gender>female</gender>
|
403
|
+
<mbox_sha1sum>c4e35d2154d238d1fb59e8b1a805231fa57a487c</mbox_sha1sum>
|
404
|
+
<name>Rachel Clarke</name>
|
405
|
+
<openid rdf:resource="http://blog.bibrik.com/"/>
|
406
|
+
<openid rdf:resource="http://rachelc.myopenid.com/"/>
|
407
|
+
<weblog rdf:resource="http://blog.bibrik.com"/>
|
408
|
+
</Person>
|
409
|
+
|
410
|
+
<Person rdf:about="http://tommorris.org/foaf#corbett_james">
|
411
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#US"/>
|
412
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/eirepreneur/rdf"/>
|
413
|
+
<owl:sameAs rdf:resource="http://twitter.com/eirepreneur"/>
|
414
|
+
<gender>male</gender>
|
415
|
+
<knows rdf:resource="http://tommorris.org/foaf#higgins_walter"/>
|
416
|
+
<knows rdf:resource="http://tommorris.org/foaf#raftery_tom"/>
|
417
|
+
<mbox_sha1sum>da1cb73754e6703c6bb179ee73d818ecafb9c6fa</mbox_sha1sum>
|
418
|
+
<name>James Corbett</name>
|
419
|
+
<openid rdf:resource="http://eirepreneur.blogs.com/"/>
|
420
|
+
<openid rdf:resource="http://eirepreneur.blogs.com/eirepreneur/"/>
|
421
|
+
<openid rdf:resource="http://openid.claimid.com/eirepreneur"/>
|
422
|
+
<weblog rdf:resource="http://eirepreneur.blogs.com"/>
|
423
|
+
</Person>
|
424
|
+
|
425
|
+
<Person rdf:about="http://tommorris.org/foaf#doctorow_cory">
|
426
|
+
<blog:podcast rdf:resource="http://odeo.com/channel/126064/"/>
|
427
|
+
<gender>male</gender>
|
428
|
+
<mbox_sha1sum>90e44e19687abfba6cbf36246a21c0848ff7f2a1</mbox_sha1sum>
|
429
|
+
<name>Cory Doctorow</name>
|
430
|
+
<weblog rdf:resource="http://www.boingboing.net"/>
|
431
|
+
</Person>
|
432
|
+
|
433
|
+
<Person rdf:about="http://tommorris.org/foaf#downe_natalie">
|
434
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/profile/nataliedowne/"/>
|
435
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/natbat/rdf"/>
|
436
|
+
<owl:sameAs rdf:resource="http://twitter.com/natbat"/>
|
437
|
+
<owl:sameAs rdf:resource="http://www.last.fm/user/nataliedowne/"/>
|
438
|
+
<gender>female</gender>
|
439
|
+
<knows rdf:resource="http://tommorris.org/foaf#budd_andy"/>
|
440
|
+
<knows rdf:resource="http://tommorris.org/foaf#keith_jeremy"/>
|
441
|
+
<knows rdf:resource="http://tommorris.org/foaf#willison_simon"/>
|
442
|
+
<name>Natalie Downe</name>
|
443
|
+
<nick>Natbat</nick>
|
444
|
+
</Person>
|
445
|
+
|
446
|
+
<person rdf:about="http://tommorris.org/foaf#downey_paul">
|
447
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/psd/rdf"/>
|
448
|
+
<owl:sameAs rdf:resource="http://twitter.com/psd"/>
|
449
|
+
<name>Paul Downey</name>
|
450
|
+
<openid rdf:resource="http://blog.whatfettle.com/"/>
|
451
|
+
<weblog rdf:resource="http://blog.whatfettle.com/"/>
|
452
|
+
</person>
|
453
|
+
|
454
|
+
<Person rdf:about="http://tommorris.org/foaf#forrester_ian">
|
455
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#CA"/>
|
456
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#US"/>
|
457
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/friends/cubicgarden"/>
|
458
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/profile/cubicgarden"/>
|
459
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/recenttracks/cubicgarden"/>
|
460
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/cubicgarden/rdf"/>
|
461
|
+
<rdfs:seeAlso rdf:resource="http://www.cubicgarden.com/webdav/profile/foaf.rdf#me"/>
|
462
|
+
<owl:sameAs rdf:resource="http://twitter.com/cubicgarden"/>
|
463
|
+
<owl:sameAs rdf:resource="http://www.last.fm/users/cubicgarden/"/>
|
464
|
+
<gender>male</gender>
|
465
|
+
<mbox_sha1sum>4c068062c1aff081e20f1d7faf6beea4d2949f94</mbox_sha1sum>
|
466
|
+
<name>Ian Forrester</name>
|
467
|
+
<weblog rdf:resource="http://www.cubicgarden.com"/>
|
468
|
+
<workplaceHomepage rdf:resource="http://backstage.bbc.co.uk"/>
|
469
|
+
</Person>
|
470
|
+
|
471
|
+
<Person rdf:about="http://tommorris.org/foaf#forrester_sarah">
|
472
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/SarahForrester/rdf"/>
|
473
|
+
<owl:sameAs rdf:resource="http://twitter.com/SarahForrester"/>
|
474
|
+
<gender>female</gender>
|
475
|
+
<mbox_sha1sum>d9bdfd7bb7fd740ab50321aed2db680d82fd0954</mbox_sha1sum>
|
476
|
+
<name>Sarah Forrester</name>
|
477
|
+
<weblog rdf:resource="http://www.cubicgarden.com/blojsom/blog/sarah/"/>
|
478
|
+
</Person>
|
479
|
+
|
480
|
+
<Person rdf:about="http://tommorris.org/foaf#freedman_martin">
|
481
|
+
<gender>male</gender>
|
482
|
+
<name>Martin Freedman</name>
|
483
|
+
<weblog rdf:resource="http://impartialism.blogspot.com/"/>
|
484
|
+
</Person>
|
485
|
+
|
486
|
+
<Person rdf:about="http://tommorris.org/foaf#green_adam">
|
487
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#UK"/>
|
488
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/grazr/rdf"/>
|
489
|
+
<owl:sameAs rdf:resource="http://twitter.com/grazr"/>
|
490
|
+
<gender>male</gender>
|
491
|
+
<knows rdf:resource="http://tommorris.org/foaf#kowalchik_mike"/>
|
492
|
+
<mbox_sha1sum>18fe2726550129b0704c00abcb929f0d3776083a</mbox_sha1sum>
|
493
|
+
<name>Adam Green</name>
|
494
|
+
<weblog rdf:resource="http://feedonomics.grazr.com"/>
|
495
|
+
<workplaceHomepage rdf:resource="http://www.grazr.com"/>
|
496
|
+
</Person>
|
497
|
+
|
498
|
+
<Person rdf:about="http://tommorris.org/foaf#higgins_walter">
|
499
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#FR"/>
|
500
|
+
<gender>male</gender>
|
501
|
+
<knows rdf:resource="http://tommorris.org/foaf#corbett_james"/>
|
502
|
+
<knows rdf:resource="http://tommorris.org/foaf#tom_raftery"/>
|
503
|
+
<name>Walter Higgins</name>
|
504
|
+
</Person>
|
505
|
+
|
506
|
+
<Person rdf:about="http://tommorris.org/foaf#hogge_becky">
|
507
|
+
<gender>female</gender>
|
508
|
+
<mbox rdf:resource="mailto:becky.hogge@openDemocracy.net"/>
|
509
|
+
<name>Becky Hogge</name>
|
510
|
+
<workplaceHomepage rdf:resource="http://www.openrightsgroup.org"/>
|
511
|
+
</Person>
|
512
|
+
|
513
|
+
<Person rdf:about="http://tommorris.org/foaf#jarvis_critt">
|
514
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/Critt/rdf"/>
|
515
|
+
<owl:sameAs rdf:resource="http://twitter.com/Critt"/>
|
516
|
+
<gender>male</gender>
|
517
|
+
<mbox_sha1sum>a9895a027c6a1923e23819070fe20aa4b4e05c26</mbox_sha1sum>
|
518
|
+
<name>Critt Jarvis</name>
|
519
|
+
<weblog rdf:resource="http://conversationbase.com/blog/"/>
|
520
|
+
</Person>
|
521
|
+
|
522
|
+
<Person rdf:about="http://tommorris.org/foaf#keith_jeremy">
|
523
|
+
<rdfs:seeAlso rdf:resource="http://adactio.com/foaf.rdf#me"/>
|
524
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/profile/adactio/"/>
|
525
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/adactio/rdf"/>
|
526
|
+
<owl:sameAs rdf:resource="http://adactio.com/foaf.rdf#me"/>
|
527
|
+
<owl:sameAs rdf:resource="http://twitter.com/adactio"/>
|
528
|
+
<owl:sameAs rdf:resource="http://www.last.fm/user/adactio/"/>
|
529
|
+
<gender>male</gender>
|
530
|
+
<knows rdf:resource="http://tommorris.org/foaf#celik_tantek"/>
|
531
|
+
<knows rdf:resource="http://tommorris.org/foaf#willison_simon"/>
|
532
|
+
<name>Jeremy Keith</name>
|
533
|
+
<openid rdf:resource="http://adactio.com/"/>
|
534
|
+
<openid rdf:resource="http://www.adactio.com/"/>
|
535
|
+
<weblog rdf:resource="http://adactio.com/"/>
|
536
|
+
</Person>
|
537
|
+
|
538
|
+
<Person rdf:about="http://tommorris.org/foaf#kosso">
|
539
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#AU"/>
|
540
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#US"/>
|
541
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/kosso/rdf"/>
|
542
|
+
<owl:sameAs rdf:resource="http://twitter.com/kosso"/>
|
543
|
+
<gender>male</gender>
|
544
|
+
<mbox_sha1sum>812028b4795cbd8f24bba8750031f4e7f98a4cd9</mbox_sha1sum>
|
545
|
+
<name>Jon Kossman</name>
|
546
|
+
<nick>Kosso</nick>
|
547
|
+
<nick>Koz</nick>
|
548
|
+
<openid rdf:resource="http://kosso.wordpress.com/"/>
|
549
|
+
<weblog rdf:resource="http://blogs.opml.org/koz"/>
|
550
|
+
<weblog rdf:resource="http://kosso.wordpress.com"/>
|
551
|
+
<workplaceHomepage rdf:resource="http://www.podcast.com"/>
|
552
|
+
</Person>
|
553
|
+
|
554
|
+
<Person rdf:about="http://tommorris.org/foaf#kowalchik_mike">
|
555
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/mikepk/rdf"/>
|
556
|
+
<owl:sameAs rdf:resource="http://twitter.com/mikepk"/>
|
557
|
+
<gender>male</gender>
|
558
|
+
<knows rdf:resource="http://tommorris.org/foaf#green_adam"/>
|
559
|
+
<mbox_sha1sum>a9bb37c548a287683aa72dfa4e06b6ad0c0f3af5</mbox_sha1sum>
|
560
|
+
<name>Mike Kowalchik</name>
|
561
|
+
<weblog rdf:resource="http://blog.grazr.com"/>
|
562
|
+
<workplaceHomepage rdf:resource="http://www.grazr.com"/>
|
563
|
+
</Person>
|
564
|
+
|
565
|
+
<Person rdf:about="http://tommorris.org/foaf#lai_alan">
|
566
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/28481k/rdf"/>
|
567
|
+
<owl:sameAs rdf:resource="http://twitter.com/28481k"/>
|
568
|
+
<name>Alan Lai</name>
|
569
|
+
<openid rdf:resource="http://openid.aol.com/hk28481k"/>
|
570
|
+
<weblog rdf:resource="http://28481k.blogspot.com/"/>
|
571
|
+
</Person>
|
572
|
+
|
573
|
+
<pet:Pet rdf:about="http://tommorris.org/foaf#leo">
|
574
|
+
<p:dateOfBirth rdf:datatype="http://www.w3.org/2001/XMLSchema-datatypes#date">1993</p:dateOfBirth>
|
575
|
+
<p:dateOfDeath rdf:datatype="http://www.w3.org/2001/XMLSchema-datatypes#date">2008-08-01</p:dateOfDeath>
|
576
|
+
<pet:breed xml:lang="en">Rough Colly</pet:breed>
|
577
|
+
<pet:furStyle xml:lang="en">long-haired</pet:furStyle>
|
578
|
+
<pet:gender>Male</pet:gender>
|
579
|
+
<pet:neutered xml:lang="en">true</pet:neutered>
|
580
|
+
<pet:order rdf:resource="http://purl.org/stuff/pets/Mammal"/>
|
581
|
+
<pet:primaryColor xml:lang="en">brown</pet:primaryColor>
|
582
|
+
<pet:secondaryColors xml:lang="en">black</pet:secondaryColors>
|
583
|
+
<pet:secondaryColors xml:lang="en">white</pet:secondaryColors>
|
584
|
+
<pet:species rdf:resource="http://purl.org/stuff/pets/Dog"/>
|
585
|
+
<depiction rdf:resource="http://farm2.static.flickr.com/1043/978687648_94cc68b5ed_b.jpg"/>
|
586
|
+
<name>Leo</name>
|
587
|
+
</pet:Pet>
|
588
|
+
|
589
|
+
<Person rdf:about="http://tommorris.org/foaf#lewis_daniel">
|
590
|
+
<rdfs:seeAlso rdf:resource="http://www.vanirsystems.co.uk/foaf.rdf"/>
|
591
|
+
<owl:sameAs rdf:resource="http://www.vanirsystems.co.uk/foaf.rdf#danieljohnlewis"/>
|
592
|
+
<name>Daniel Lewis</name>
|
593
|
+
<weblog rdf:resource="http://vanirsystems.com/danielsblog/"/>
|
594
|
+
</Person>
|
595
|
+
|
596
|
+
<Agent rdf:about="http://tommorris.org/foaf#madge_weinstein">
|
597
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/bloatedlesbian/rdf"/>
|
598
|
+
<owl:sameAs rdf:resource="http://twitter.com/bloatedlesbian"/>
|
599
|
+
<homepage rdf:resource="http://yeastradio.podshow.com"/>
|
600
|
+
<name>Madge Wenstein</name>
|
601
|
+
</Agent>
|
602
|
+
|
603
|
+
<Person rdf:about="http://tommorris.org/foaf#malik_om">
|
604
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#UK"/>
|
605
|
+
<gender>male</gender>
|
606
|
+
<homepage rdf:resource="http://gigaom.com/about/about-om/"/>
|
607
|
+
<knows rdf:resource="http://tommorris.org/foaf#winer_dave"/>
|
608
|
+
<name>Om Malik</name>
|
609
|
+
<workplaceHomepage rdf:resource="http://gigaom.com"/>
|
610
|
+
</Person>
|
611
|
+
|
612
|
+
<Person rdf:about="http://tommorris.org/foaf#marks_kevin">
|
613
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/KevinMarks/rdf"/>
|
614
|
+
<owl:sameAs rdf:resource="http://twitter.com/KevinMarks"/>
|
615
|
+
<gender>male</gender>
|
616
|
+
<knows rdf:resource="http://tommorris.org/foaf#celik_tantek"/>
|
617
|
+
<mbox rdf:resource="mailto:kmarks@technorati.com"/>
|
618
|
+
<name>Kevin Marks</name>
|
619
|
+
<weblog rdf:resource="http://epeus.blogspot.com"/>
|
620
|
+
<workplaceHomepage rdf:resource="http://www.technorati.com"/>
|
621
|
+
</Person>
|
622
|
+
|
623
|
+
<veg:Ovo-LactoVegetarian rdf:about="http://tommorris.org/foaf#me">
|
624
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
625
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#BE"/>
|
626
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#DE"/>
|
627
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#DK"/>
|
628
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#FR"/>
|
629
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#IE"/>
|
630
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#IT"/>
|
631
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#NL"/>
|
632
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#US"/>
|
633
|
+
<visit:usstate rdf:resource="http://www.daml.ri.cmu.edu/ont/USRegionState.daml#MA"/>
|
634
|
+
<doac:education rdf:parseType="Resource">
|
635
|
+
<rdf:type rdf:resource="http://ramonantonio.net/doac/0.1/Degree"/>
|
636
|
+
<doac:end-date rdf:datatype="http://www.w3.org/2001/XMLSchema-datatypes#dateTime">2007-05</doac:end-date>
|
637
|
+
<doac:organization rdf:parseType="Resource">
|
638
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
|
639
|
+
<homepage rdf:resource="http://www.heythrop.ac.uk/"/>
|
640
|
+
<name xml:lang="en">Heythrop College, University of London</name>
|
641
|
+
</doac:organization>
|
642
|
+
<doac:start-date rdf:datatype="http://www.w3.org/2001/XMLSchema-datatypes#dateTime">2004-09</doac:start-date>
|
643
|
+
<doac:title xml:lang="en">Philosophy, Religion and Ethics</doac:title>
|
644
|
+
</doac:education>
|
645
|
+
<doac:skill rdf:parseType="Resource">
|
646
|
+
<doac:LanguageSkill rdf:parseType="Resource">
|
647
|
+
<doac:language>en</doac:language>
|
648
|
+
<doac:reads rdf:resource="http://ramonantonio.net/doac/0.1/nativeLevel"/>
|
649
|
+
<doac:speaks rdf:resource="http://ramonantonio.net/doac/0.1/nativeLevel"/>
|
650
|
+
<doac:writes rdf:resource="http://ramonantonio.net/doac/0.1/nativeLevel"/>
|
651
|
+
</doac:LanguageSkill>
|
652
|
+
</doac:skill>
|
653
|
+
<misc:address_sha1sum>391cfd47eba7934ef8faf4f0b690cacf4316cad3</misc:address_sha1sum>
|
654
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/friends/tommorris"/>
|
655
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/profile/tommorris"/>
|
656
|
+
<rdfs:seeAlso rdf:resource="http://rdf.opiumfield.com/lastfm/recenttracks/tommorris"/>
|
657
|
+
<rdfs:seeAlso rdf:resource="http://sioku.sioc-project.org/tofoaf/tommorris"/>
|
658
|
+
<rdfs:seeAlso rdf:resource="http://sioku.sioc-project.org/tosioc/tommorris"/>
|
659
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/tommorris/rdf"/>
|
660
|
+
<owl:sameAs rdf:resource="http://tommorris.jaiku.com#person"/>
|
661
|
+
<owl:sameAs rdf:resource="http://tommorris.jaiku.com#user"/>
|
662
|
+
<owl:sameAs rdf:resource="http://twitter.com/tommorris"/>
|
663
|
+
<owl:sameAs rdf:resource="http://www.last.fm/user/tommorris/"/>
|
664
|
+
<family_name>Morris</family_name>
|
665
|
+
<gender>male</gender>
|
666
|
+
<givenname>Tom</givenname>
|
667
|
+
<holdsAccount rdf:parseType="Resource">
|
668
|
+
<OnlineAccount rdf:parseType="Resource">
|
669
|
+
<accountName>271900013</accountName>
|
670
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
671
|
+
</OnlineAccount>
|
672
|
+
</holdsAccount>
|
673
|
+
<holdsAccount rdf:parseType="Resource">
|
674
|
+
<OnlineChatAccount rdf:parseType="Resource">
|
675
|
+
<accountName>tommorris</accountName>
|
676
|
+
<accountServiceHomepage rdf:resource="http://www.freenode.net/irc_servers.shtml"/>
|
677
|
+
</OnlineChatAccount>
|
678
|
+
</holdsAccount>
|
679
|
+
<holdsAccount rdf:parseType="Resource">
|
680
|
+
<OnlineAccount rdf:parseType="Resource">
|
681
|
+
<accountProfilePage rdf:resource="http://flickr.com/photos/tommorris/"/>
|
682
|
+
<accountServiceHomepage rdf:resource="http://flickr.com/"/>
|
683
|
+
</OnlineAccount>
|
684
|
+
</holdsAccount>
|
685
|
+
<holdsAccount rdf:parseType="Resource">
|
686
|
+
<OnlineAccount rdf:parseType="Resource">
|
687
|
+
<accountProfilePage rdf:resource="http://del.icio.us/tommorris"/>
|
688
|
+
<accountServiceHomepage rdf:resource="http://del.icio.us/"/>
|
689
|
+
</OnlineAccount>
|
690
|
+
</holdsAccount>
|
691
|
+
<holdsAccount rdf:parseType="Resource">
|
692
|
+
<OnlineAccount rdf:parseType="Resource">
|
693
|
+
<accountProfilePage rdf:resource="http://digg.com/users/tommorris"/>
|
694
|
+
<accountServiceHomepage rdf:resource="http://digg.com/"/>
|
695
|
+
</OnlineAccount>
|
696
|
+
</holdsAccount>
|
697
|
+
<holdsAccount rdf:parseType="Resource">
|
698
|
+
<OnlineAccount rdf:parseType="Resource">
|
699
|
+
<rdfs:seeAlso rdf:resource="http://tommorris.livejournal.com/data/foaf"/>
|
700
|
+
<accountProfilePage rdf:resource="http://tommorris.livejournal.com"/>
|
701
|
+
<accountServiceHomepage rdf:resource="http://livejournal.com/"/>
|
702
|
+
</OnlineAccount>
|
703
|
+
</holdsAccount>
|
704
|
+
<holdsAccount rdf:parseType="Resource">
|
705
|
+
<OnlineAccount rdf:parseType="Resource">
|
706
|
+
<accountProfilePage rdf:resource="http://tommorris.blip.tv/"/>
|
707
|
+
<accountServiceHomepage rdf:resource="http://blip.tv/"/>
|
708
|
+
</OnlineAccount>
|
709
|
+
</holdsAccount>
|
710
|
+
<holdsAccount rdf:parseType="Resource">
|
711
|
+
<OnlineAccount rdf:parseType="Resource">
|
712
|
+
<accountProfilePage rdf:resource="http://upcoming.org/user/12421/"/>
|
713
|
+
<accountServiceHomepage rdf:resource="http://upcoming.org/"/>
|
714
|
+
</OnlineAccount>
|
715
|
+
</holdsAccount>
|
716
|
+
<holdsAccount rdf:parseType="Resource">
|
717
|
+
<OnlineAccount rdf:parseType="Resource">
|
718
|
+
<accountProfilePage rdf:resource="http://www.citeulike.org/user/tommorris"/>
|
719
|
+
<accountServiceHomepage rdf:resource="http://www.citeulike.org/"/>
|
720
|
+
</OnlineAccount>
|
721
|
+
</holdsAccount>
|
722
|
+
<holdsAccount rdf:parseType="Resource">
|
723
|
+
<OnlineAccount rdf:parseType="Resource">
|
724
|
+
<accountProfilePage rdf:resource="http://tommorris.43people.com/"/>
|
725
|
+
<accountServiceHomepage rdf:resource="http://www.43people.com/"/>
|
726
|
+
</OnlineAccount>
|
727
|
+
</holdsAccount>
|
728
|
+
<holdsAccount rdf:parseType="Resource">
|
729
|
+
<OnlineAccount rdf:parseType="Resource">
|
730
|
+
<accountProfilePage rdf:resource="http://www.iamcal.com/users/632/"/>
|
731
|
+
<accountServiceHomepage rdf:resource="http://www.iamcal.com/"/>
|
732
|
+
</OnlineAccount>
|
733
|
+
</holdsAccount>
|
734
|
+
<holdsAccount rdf:parseType="Resource">
|
735
|
+
<OnlineAccount rdf:parseType="Resource">
|
736
|
+
<accountProfilePage rdf:resource="http://ma.gnolia.com/people/tommorris"/>
|
737
|
+
<accountServiceHomepage rdf:resource="http://ma.gnolia.com/"/>
|
738
|
+
</OnlineAccount>
|
739
|
+
</holdsAccount>
|
740
|
+
<holdsAccount rdf:parseType="Resource">
|
741
|
+
<OnlineAccount rdf:parseType="Resource">
|
742
|
+
<accountProfilePage rdf:resource="http://microsoftgadgets.com/People/23773"/>
|
743
|
+
<accountServiceHomepage rdf:resource="http://microsoftgadgets.com/"/>
|
744
|
+
</OnlineAccount>
|
745
|
+
</holdsAccount>
|
746
|
+
<holdsAccount rdf:parseType="Resource">
|
747
|
+
<OnlineAccount rdf:parseType="Resource">
|
748
|
+
<accountProfilePage rdf:resource="http://www.last.fm/user/tommorris/"/>
|
749
|
+
<accountServiceHomepage rdf:resource="http://www.last.fm/"/>
|
750
|
+
</OnlineAccount>
|
751
|
+
</holdsAccount>
|
752
|
+
<holdsAccount rdf:parseType="Resource">
|
753
|
+
<OnlineAccount rdf:parseType="Resource">
|
754
|
+
<accountProfilePage rdf:resource="http://tommorris.jaiku.com"/>
|
755
|
+
<accountServiceHomepage rdf:resource="http://www.jaiku.com/"/>
|
756
|
+
</OnlineAccount>
|
757
|
+
</holdsAccount>
|
758
|
+
<holdsAccount rdf:parseType="Resource">
|
759
|
+
<OnlineAccount rdf:parseType="Resource">
|
760
|
+
<accountProfilePage rdf:resource="http://www.metafilter.com/user/34736"/>
|
761
|
+
<accountServiceHomepage rdf:resource="http://www.metafilter.com/"/>
|
762
|
+
</OnlineAccount>
|
763
|
+
</holdsAccount>
|
764
|
+
<homepage rdf:resource="http://blogs.opml.org/tommorris"/>
|
765
|
+
<homepage rdf:resource="http://tom.opiumfield.com/blog/"/>
|
766
|
+
<interest rdf:resource="htp://www.ruby-lang.org"/>
|
767
|
+
<interest rdf:resource="http://blogs.law.harvard.edu/tech/rss"/>
|
768
|
+
<interest rdf:resource="http://en.wikipedia.org/wiki/Friedrich_Nietzsche"/>
|
769
|
+
<interest rdf:resource="http://en.wikipedia.org/wiki/Podcasting"/>
|
770
|
+
<interest rdf:resource="http://en.wikipedia.org/wiki/S%C3%B8ren_Kierkegaard"/>
|
771
|
+
<interest rdf:resource="http://en.wikipedia.org/wiki/United_States"/>
|
772
|
+
<interest rdf:resource="http://relaxng.org"/>
|
773
|
+
<interest rdf:resource="http://share.opml.org"/>
|
774
|
+
<interest rdf:resource="http://www.freestateproject.org"/>
|
775
|
+
<interest rdf:resource="http://www.grazr.com"/>
|
776
|
+
<interest rdf:resource="http://www.opml.org"/>
|
777
|
+
<interest rdf:resource="http://www.php.net"/>
|
778
|
+
<interest rdf:resource="http://www.python.org"/>
|
779
|
+
<interest rdf:resource="http://www.rubyonrails.org"/>
|
780
|
+
<interest rdf:resource="http://www.w3.org/2001/sw/"/>
|
781
|
+
<interest rdf:resource="http://www.w3.org/RDF/"/>
|
782
|
+
<interest rdf:resource="http://www.xml.com"/>
|
783
|
+
<knows rdf:resource="http://adactio.com/foaf.rdf#me"/>
|
784
|
+
<knows rdf:resource="http://dbpedia.org/resource/Andy_Budd"/>
|
785
|
+
<knows rdf:resource="http://dbpedia.org/resource/Dave_Winer"/>
|
786
|
+
<knows rdf:resource="http://dbpedia.org/resource/James_F._Moore"/>
|
787
|
+
<knows rdf:resource="http://suda.co.uk/contact/brian.suda.foaf.rdf#brian_suda.co.uk"/>
|
788
|
+
<knows rdf:resource="http://tommorris.org/foaf#alaric_bsm"/>
|
789
|
+
<knows rdf:resource="http://tommorris.org/foaf#ayers_danny"/>
|
790
|
+
<knows rdf:resource="http://tommorris.org/foaf#baker_keith"/>
|
791
|
+
<knows rdf:resource="http://tommorris.org/foaf#bernard_ian"/>
|
792
|
+
<knows rdf:resource="http://tommorris.org/foaf#bluestein_richard"/>
|
793
|
+
<knows rdf:resource="http://tommorris.org/foaf#bowring_dan"/>
|
794
|
+
<knows rdf:resource="http://tommorris.org/foaf#brickley_dan"/>
|
795
|
+
<knows rdf:resource="http://tommorris.org/foaf#budd_andy"/>
|
796
|
+
<knows rdf:resource="http://tommorris.org/foaf#canter_marc"/>
|
797
|
+
<knows rdf:resource="http://tommorris.org/foaf#cashmore_matthew"/>
|
798
|
+
<knows rdf:resource="http://tommorris.org/foaf#celik_tantek"/>
|
799
|
+
<knows rdf:resource="http://tommorris.org/foaf#charman_suw"/>
|
800
|
+
<knows rdf:resource="http://tommorris.org/foaf#clarke_rachel"/>
|
801
|
+
<knows rdf:resource="http://tommorris.org/foaf#corbett_james"/>
|
802
|
+
<knows rdf:resource="http://tommorris.org/foaf#doctorow_cory"/>
|
803
|
+
<knows rdf:resource="http://tommorris.org/foaf#downe_natalie"/>
|
804
|
+
<knows rdf:resource="http://tommorris.org/foaf#downey_paul"/>
|
805
|
+
<knows rdf:resource="http://tommorris.org/foaf#forrester_ian"/>
|
806
|
+
<knows rdf:resource="http://tommorris.org/foaf#forrester_sarah"/>
|
807
|
+
<knows rdf:resource="http://tommorris.org/foaf#freedman_martin"/>
|
808
|
+
<knows rdf:resource="http://tommorris.org/foaf#green_adam"/>
|
809
|
+
<knows rdf:resource="http://tommorris.org/foaf#higgins_walter"/>
|
810
|
+
<knows rdf:resource="http://tommorris.org/foaf#hogge_becky"/>
|
811
|
+
<knows rdf:resource="http://tommorris.org/foaf#jarvis_critt"/>
|
812
|
+
<knows rdf:resource="http://tommorris.org/foaf#keith_jeremy"/>
|
813
|
+
<knows rdf:resource="http://tommorris.org/foaf#kosso"/>
|
814
|
+
<knows rdf:resource="http://tommorris.org/foaf#kowalchik_mike"/>
|
815
|
+
<knows rdf:resource="http://tommorris.org/foaf#lai_alan"/>
|
816
|
+
<knows rdf:resource="http://tommorris.org/foaf#lewis_daniel"/>
|
817
|
+
<knows rdf:resource="http://tommorris.org/foaf#malik_om"/>
|
818
|
+
<knows rdf:resource="http://tommorris.org/foaf#marks_kevin"/>
|
819
|
+
<knows rdf:resource="http://tommorris.org/foaf#moore_jim"/>
|
820
|
+
<knows rdf:resource="http://tommorris.org/foaf#morris_mary"/>
|
821
|
+
<knows rdf:resource="http://tommorris.org/foaf#myers_pz"/>
|
822
|
+
<knows rdf:resource="http://tommorris.org/foaf#raftery_tom"/>
|
823
|
+
<knows rdf:resource="http://tommorris.org/foaf#scoble_robert"/>
|
824
|
+
<knows rdf:resource="http://tommorris.org/foaf#sethi_sam"/>
|
825
|
+
<knows rdf:resource="http://tommorris.org/foaf#simon_nicole"/>
|
826
|
+
<knows rdf:resource="http://tommorris.org/foaf#spence_ewan"/>
|
827
|
+
<knows rdf:resource="http://tommorris.org/foaf#suda_brian"/>
|
828
|
+
<knows rdf:resource="http://tommorris.org/foaf#tabor_indigo"/>
|
829
|
+
<knows rdf:resource="http://tommorris.org/foaf#wilkins_lee"/>
|
830
|
+
<knows rdf:resource="http://tommorris.org/foaf#willison_simon"/>
|
831
|
+
<knows rdf:resource="http://tommorris.org/foaf#winer_dave"/>
|
832
|
+
<knows rdf:parseType="Resource">
|
833
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
834
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/664/71/s11513437_6640.jpg"/>
|
835
|
+
<family_name>Howes</family_name>
|
836
|
+
<givenname>Phil</givenname>
|
837
|
+
<holdsAccount rdf:parseType="Resource">
|
838
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
839
|
+
<accountName>11513437</accountName>
|
840
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
841
|
+
</holdsAccount>
|
842
|
+
<name>Phil Howes</name>
|
843
|
+
</knows>
|
844
|
+
<knows rdf:parseType="Resource">
|
845
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
846
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1057/12/s61210614_3708.jpg"/>
|
847
|
+
<family_name>Mitchell</family_name>
|
848
|
+
<givenname>Andy</givenname>
|
849
|
+
<holdsAccount rdf:parseType="Resource">
|
850
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
851
|
+
<accountName>61210614</accountName>
|
852
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
853
|
+
</holdsAccount>
|
854
|
+
<name>Andy Mitchell</name>
|
855
|
+
</knows>
|
856
|
+
<knows rdf:parseType="Resource">
|
857
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
858
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile/886/79/s193106198_17242.jpg"/>
|
859
|
+
<family_name>Hardy</family_name>
|
860
|
+
<givenname>Georgina</givenname>
|
861
|
+
<holdsAccount rdf:parseType="Resource">
|
862
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
863
|
+
<accountName>193106198</accountName>
|
864
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
865
|
+
</holdsAccount>
|
866
|
+
<name>Georgina Hardy</name>
|
867
|
+
</knows>
|
868
|
+
<knows rdf:parseType="Resource">
|
869
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
870
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile2/1282/123/s197806225_26812.jpg"/>
|
871
|
+
<family_name>Mitchell</family_name>
|
872
|
+
<givenname>David</givenname>
|
873
|
+
<holdsAccount rdf:parseType="Resource">
|
874
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
875
|
+
<accountName>197806225</accountName>
|
876
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
877
|
+
</holdsAccount>
|
878
|
+
<name>David Mitchell</name>
|
879
|
+
</knows>
|
880
|
+
<knows rdf:parseType="Resource">
|
881
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
882
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/v52/633/53/s271900002_6653.jpg"/>
|
883
|
+
<family_name>Westbury</family_name>
|
884
|
+
<givenname>Rachel</givenname>
|
885
|
+
<holdsAccount rdf:parseType="Resource">
|
886
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
887
|
+
<accountName>271900002</accountName>
|
888
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
889
|
+
</holdsAccount>
|
890
|
+
<name>Rachel Westbury</name>
|
891
|
+
</knows>
|
892
|
+
<knows rdf:parseType="Resource">
|
893
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
894
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/175/87/s271900003_8486.jpg"/>
|
895
|
+
<family_name>Langstone</family_name>
|
896
|
+
<givenname>Emma</givenname>
|
897
|
+
<holdsAccount rdf:parseType="Resource">
|
898
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
899
|
+
<accountName>271900003</accountName>
|
900
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
901
|
+
</holdsAccount>
|
902
|
+
<name>Emma Langstone</name>
|
903
|
+
</knows>
|
904
|
+
<knows rdf:parseType="Resource">
|
905
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
906
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/684/48/s271900004_7737.jpg"/>
|
907
|
+
<family_name>Taliadoros</family_name>
|
908
|
+
<givenname>Alexandra</givenname>
|
909
|
+
<holdsAccount rdf:parseType="Resource">
|
910
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
911
|
+
<accountName>271900004</accountName>
|
912
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
913
|
+
</holdsAccount>
|
914
|
+
<name>Alexandra Taliadoros</name>
|
915
|
+
</knows>
|
916
|
+
<knows rdf:parseType="Resource">
|
917
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
918
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1942/120/s271900007_1409.jpg"/>
|
919
|
+
<family_name>Roussel</family_name>
|
920
|
+
<givenname>Alex</givenname>
|
921
|
+
<holdsAccount rdf:parseType="Resource">
|
922
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
923
|
+
<accountName>271900007</accountName>
|
924
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
925
|
+
</holdsAccount>
|
926
|
+
<name>Alex Roussel</name>
|
927
|
+
</knows>
|
928
|
+
<knows rdf:parseType="Resource">
|
929
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
930
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1143/96/s271900020_4326.jpg"/>
|
931
|
+
<family_name>Randall</family_name>
|
932
|
+
<givenname>Victoria</givenname>
|
933
|
+
<holdsAccount rdf:parseType="Resource">
|
934
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
935
|
+
<accountName>271900020</accountName>
|
936
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
937
|
+
</holdsAccount>
|
938
|
+
<name>Victoria Randall</name>
|
939
|
+
</knows>
|
940
|
+
<knows rdf:parseType="Resource">
|
941
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
942
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1272/0/s271900025_735.jpg"/>
|
943
|
+
<family_name>Hussey</family_name>
|
944
|
+
<givenname>Charlotte</givenname>
|
945
|
+
<holdsAccount rdf:parseType="Resource">
|
946
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
947
|
+
<accountName>271900025</accountName>
|
948
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
949
|
+
</holdsAccount>
|
950
|
+
<name>Charlotte Hussey</name>
|
951
|
+
</knows>
|
952
|
+
<knows rdf:parseType="Resource">
|
953
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
954
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/194/8/s271900026_2556.jpg"/>
|
955
|
+
<family_name>Pike</family_name>
|
956
|
+
<givenname>Alistair</givenname>
|
957
|
+
<holdsAccount rdf:parseType="Resource">
|
958
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
959
|
+
<accountName>271900026</accountName>
|
960
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
961
|
+
</holdsAccount>
|
962
|
+
<name>Alistair Pike</name>
|
963
|
+
</knows>
|
964
|
+
<knows rdf:parseType="Resource">
|
965
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
966
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/839/49/s271900041_4017.jpg"/>
|
967
|
+
<family_name>Williams</family_name>
|
968
|
+
<givenname>Hannah</givenname>
|
969
|
+
<holdsAccount rdf:parseType="Resource">
|
970
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
971
|
+
<accountName>271900041</accountName>
|
972
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
973
|
+
</holdsAccount>
|
974
|
+
<name>Hannah Williams</name>
|
975
|
+
</knows>
|
976
|
+
<knows rdf:parseType="Resource">
|
977
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
978
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1828/81/s271900046_4828.jpg"/>
|
979
|
+
<family_name>Morgan</family_name>
|
980
|
+
<givenname>Karl</givenname>
|
981
|
+
<holdsAccount rdf:parseType="Resource">
|
982
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
983
|
+
<accountName>271900046</accountName>
|
984
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
985
|
+
</holdsAccount>
|
986
|
+
<name>Karl Morgan</name>
|
987
|
+
</knows>
|
988
|
+
<knows rdf:parseType="Resource">
|
989
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
990
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1893/55/s271900056_9301.jpg"/>
|
991
|
+
<family_name>Hart</family_name>
|
992
|
+
<givenname>Stephen</givenname>
|
993
|
+
<holdsAccount rdf:parseType="Resource">
|
994
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
995
|
+
<accountName>271900056</accountName>
|
996
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
997
|
+
</holdsAccount>
|
998
|
+
<name>Stephen Hart</name>
|
999
|
+
</knows>
|
1000
|
+
<knows rdf:parseType="Resource">
|
1001
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1002
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/209/56/s271900077_2305.jpg"/>
|
1003
|
+
<family_name>Penny</family_name>
|
1004
|
+
<givenname>Gemma</givenname>
|
1005
|
+
<holdsAccount rdf:parseType="Resource">
|
1006
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1007
|
+
<accountName>271900077</accountName>
|
1008
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1009
|
+
</holdsAccount>
|
1010
|
+
<name>Gemma Penny</name>
|
1011
|
+
</knows>
|
1012
|
+
<knows rdf:parseType="Resource">
|
1013
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1014
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/982/118/s271900079_479.jpg"/>
|
1015
|
+
<family_name>Towli</family_name>
|
1016
|
+
<givenname>Freya</givenname>
|
1017
|
+
<holdsAccount rdf:parseType="Resource">
|
1018
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1019
|
+
<accountName>271900079</accountName>
|
1020
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1021
|
+
</holdsAccount>
|
1022
|
+
<name>Freya Towli</name>
|
1023
|
+
</knows>
|
1024
|
+
<knows rdf:parseType="Resource">
|
1025
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1026
|
+
<depiction rdf:resource=""/>
|
1027
|
+
<family_name>Tye</family_name>
|
1028
|
+
<givenname>Laura</givenname>
|
1029
|
+
<holdsAccount rdf:parseType="Resource">
|
1030
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1031
|
+
<accountName>278100237</accountName>
|
1032
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1033
|
+
</holdsAccount>
|
1034
|
+
<name>Laura Tye</name>
|
1035
|
+
</knows>
|
1036
|
+
<knows rdf:parseType="Resource">
|
1037
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1038
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile2/1948/37/s286106931_26530.jpg"/>
|
1039
|
+
<family_name>Campbell</family_name>
|
1040
|
+
<givenname>Joe</givenname>
|
1041
|
+
<holdsAccount rdf:parseType="Resource">
|
1042
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1043
|
+
<accountName>286106931</accountName>
|
1044
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1045
|
+
</holdsAccount>
|
1046
|
+
<name>Joe Campbell</name>
|
1047
|
+
</knows>
|
1048
|
+
<knows rdf:parseType="Resource">
|
1049
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1050
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1903/91/s500759021_1457.jpg"/>
|
1051
|
+
<family_name>Wright</family_name>
|
1052
|
+
<givenname>Huw</givenname>
|
1053
|
+
<holdsAccount rdf:parseType="Resource">
|
1054
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1055
|
+
<accountName>500759021</accountName>
|
1056
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1057
|
+
</holdsAccount>
|
1058
|
+
<name>Huw Wright</name>
|
1059
|
+
</knows>
|
1060
|
+
<knows rdf:parseType="Resource">
|
1061
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1062
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile3/317/52/s500857454_37843.jpg"/>
|
1063
|
+
<family_name>Winer</family_name>
|
1064
|
+
<givenname>Dave</givenname>
|
1065
|
+
<holdsAccount rdf:parseType="Resource">
|
1066
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1067
|
+
<accountName>500857454</accountName>
|
1068
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1069
|
+
</holdsAccount>
|
1070
|
+
<name>Dave Winer</name>
|
1071
|
+
</knows>
|
1072
|
+
<knows rdf:parseType="Resource">
|
1073
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1074
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1574/74/s500987582_7396.jpg"/>
|
1075
|
+
<family_name>Foster</family_name>
|
1076
|
+
<givenname>John</givenname>
|
1077
|
+
<holdsAccount rdf:parseType="Resource">
|
1078
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1079
|
+
<accountName>500987582</accountName>
|
1080
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1081
|
+
</holdsAccount>
|
1082
|
+
<name>John Foster</name>
|
1083
|
+
</knows>
|
1084
|
+
<knows rdf:parseType="Resource">
|
1085
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1086
|
+
<depiction rdf:resource=""/>
|
1087
|
+
<family_name>Kothari</family_name>
|
1088
|
+
<givenname>Amit</givenname>
|
1089
|
+
<holdsAccount rdf:parseType="Resource">
|
1090
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1091
|
+
<accountName>501087631</accountName>
|
1092
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1093
|
+
</holdsAccount>
|
1094
|
+
<name>Amit Kothari</name>
|
1095
|
+
</knows>
|
1096
|
+
<knows rdf:parseType="Resource">
|
1097
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1098
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1477/4/s501135811_8687.jpg"/>
|
1099
|
+
<family_name>Papafloratos</family_name>
|
1100
|
+
<givenname>Sokratis</givenname>
|
1101
|
+
<holdsAccount rdf:parseType="Resource">
|
1102
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1103
|
+
<accountName>501135811</accountName>
|
1104
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1105
|
+
</holdsAccount>
|
1106
|
+
<name>Sokratis Papafloratos</name>
|
1107
|
+
</knows>
|
1108
|
+
<knows rdf:parseType="Resource">
|
1109
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1110
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1783/43/s501319654_4230.jpg"/>
|
1111
|
+
<family_name>Scoble</family_name>
|
1112
|
+
<givenname>Robert</givenname>
|
1113
|
+
<holdsAccount rdf:parseType="Resource">
|
1114
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1115
|
+
<accountName>501319654</accountName>
|
1116
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1117
|
+
</holdsAccount>
|
1118
|
+
<name>Robert Scoble</name>
|
1119
|
+
</knows>
|
1120
|
+
<knows rdf:parseType="Resource">
|
1121
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1122
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1645/104/s501567614_8355.jpg"/>
|
1123
|
+
<family_name>Watts</family_name>
|
1124
|
+
<givenname>Donovan</givenname>
|
1125
|
+
<holdsAccount rdf:parseType="Resource">
|
1126
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1127
|
+
<accountName>501567614</accountName>
|
1128
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1129
|
+
</holdsAccount>
|
1130
|
+
<name>Donovan Watts</name>
|
1131
|
+
</knows>
|
1132
|
+
<knows rdf:parseType="Resource">
|
1133
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1134
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile3/1332/5/s501596161_36147.jpg"/>
|
1135
|
+
<family_name>Terenzio</family_name>
|
1136
|
+
<givenname>Matt</givenname>
|
1137
|
+
<holdsAccount rdf:parseType="Resource">
|
1138
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1139
|
+
<accountName>501596161</accountName>
|
1140
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1141
|
+
</holdsAccount>
|
1142
|
+
<name>Matt Terenzio</name>
|
1143
|
+
</knows>
|
1144
|
+
<knows rdf:parseType="Resource">
|
1145
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1146
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/575/66/s501730978_7421.jpg"/>
|
1147
|
+
<family_name>Brickley</family_name>
|
1148
|
+
<givenname>Dan</givenname>
|
1149
|
+
<holdsAccount rdf:parseType="Resource">
|
1150
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1151
|
+
<accountName>501730978</accountName>
|
1152
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1153
|
+
</holdsAccount>
|
1154
|
+
<name>Dan Brickley</name>
|
1155
|
+
</knows>
|
1156
|
+
<knows rdf:parseType="Resource">
|
1157
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1158
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/410/44/s502475506_5470.jpg"/>
|
1159
|
+
<family_name>Duffy</family_name>
|
1160
|
+
<givenname>Steven</givenname>
|
1161
|
+
<holdsAccount rdf:parseType="Resource">
|
1162
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1163
|
+
<accountName>502475506</accountName>
|
1164
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1165
|
+
</holdsAccount>
|
1166
|
+
<name>Steven Duffy</name>
|
1167
|
+
</knows>
|
1168
|
+
<knows rdf:parseType="Resource">
|
1169
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1170
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1836/63/s502683848_655.jpg"/>
|
1171
|
+
<family_name>Lawton</family_name>
|
1172
|
+
<givenname>Todd</givenname>
|
1173
|
+
<holdsAccount rdf:parseType="Resource">
|
1174
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1175
|
+
<accountName>502683848</accountName>
|
1176
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1177
|
+
</holdsAccount>
|
1178
|
+
<name>Todd Lawton</name>
|
1179
|
+
</knows>
|
1180
|
+
<knows rdf:parseType="Resource">
|
1181
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1182
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1633/20/s502974984_9022.jpg"/>
|
1183
|
+
<family_name>Davies</family_name>
|
1184
|
+
<givenname>Timothy</givenname>
|
1185
|
+
<holdsAccount rdf:parseType="Resource">
|
1186
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1187
|
+
<accountName>502974984</accountName>
|
1188
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1189
|
+
</holdsAccount>
|
1190
|
+
<name>Timothy Paul Stewart Davies</name>
|
1191
|
+
</knows>
|
1192
|
+
<knows rdf:parseType="Resource">
|
1193
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1194
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1166/98/s503325462_2051.jpg"/>
|
1195
|
+
<family_name>Weinstein</family_name>
|
1196
|
+
<givenname>Madge</givenname>
|
1197
|
+
<holdsAccount rdf:parseType="Resource">
|
1198
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1199
|
+
<accountName>503325462</accountName>
|
1200
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1201
|
+
</holdsAccount>
|
1202
|
+
<name>Madge Weinstein</name>
|
1203
|
+
</knows>
|
1204
|
+
<knows rdf:parseType="Resource">
|
1205
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1206
|
+
<depiction rdf:resource=""/>
|
1207
|
+
<family_name>Pettit</family_name>
|
1208
|
+
<givenname>Mark</givenname>
|
1209
|
+
<holdsAccount rdf:parseType="Resource">
|
1210
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1211
|
+
<accountName>504027156</accountName>
|
1212
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1213
|
+
</holdsAccount>
|
1214
|
+
<name>Mark Pettit</name>
|
1215
|
+
</knows>
|
1216
|
+
<knows rdf:parseType="Resource">
|
1217
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1218
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/270/83/s504565108_7864.jpg"/>
|
1219
|
+
<family_name>Patel</family_name>
|
1220
|
+
<givenname>Neesh</givenname>
|
1221
|
+
<holdsAccount rdf:parseType="Resource">
|
1222
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1223
|
+
<accountName>504565108</accountName>
|
1224
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1225
|
+
</holdsAccount>
|
1226
|
+
<name>Neesh Patel</name>
|
1227
|
+
</knows>
|
1228
|
+
<knows rdf:parseType="Resource">
|
1229
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1230
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/506/112/s504598293_688.jpg"/>
|
1231
|
+
<family_name>Calacanis</family_name>
|
1232
|
+
<givenname>Jason</givenname>
|
1233
|
+
<holdsAccount rdf:parseType="Resource">
|
1234
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1235
|
+
<accountName>504598293</accountName>
|
1236
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1237
|
+
</holdsAccount>
|
1238
|
+
<name>Jason McCabe Calacanis</name>
|
1239
|
+
</knows>
|
1240
|
+
<knows rdf:parseType="Resource">
|
1241
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1242
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/216/48/s504966280_303.jpg"/>
|
1243
|
+
<family_name>Wisdom</family_name>
|
1244
|
+
<givenname>Wanda</givenname>
|
1245
|
+
<holdsAccount rdf:parseType="Resource">
|
1246
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1247
|
+
<accountName>504966280</accountName>
|
1248
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1249
|
+
</holdsAccount>
|
1250
|
+
<name>Wanda Wisdom</name>
|
1251
|
+
</knows>
|
1252
|
+
<knows rdf:parseType="Resource">
|
1253
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1254
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/467/4/s507814848_1982.jpg"/>
|
1255
|
+
<family_name>Hillocks</family_name>
|
1256
|
+
<givenname>Stephen</givenname>
|
1257
|
+
<holdsAccount rdf:parseType="Resource">
|
1258
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1259
|
+
<accountName>507814848</accountName>
|
1260
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1261
|
+
</holdsAccount>
|
1262
|
+
<name>Stephen Hillocks</name>
|
1263
|
+
</knows>
|
1264
|
+
<knows rdf:parseType="Resource">
|
1265
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1266
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1990/97/s507997291_2212.jpg"/>
|
1267
|
+
<family_name>Hurry</family_name>
|
1268
|
+
<givenname>Rachel</givenname>
|
1269
|
+
<holdsAccount rdf:parseType="Resource">
|
1270
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1271
|
+
<accountName>507997291</accountName>
|
1272
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1273
|
+
</holdsAccount>
|
1274
|
+
<name>Rachel Hurry</name>
|
1275
|
+
</knows>
|
1276
|
+
<knows rdf:parseType="Resource">
|
1277
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1278
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/969/0/s510143354_3164.jpg"/>
|
1279
|
+
<family_name>Verwer</family_name>
|
1280
|
+
<givenname>Dave</givenname>
|
1281
|
+
<holdsAccount rdf:parseType="Resource">
|
1282
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1283
|
+
<accountName>510143354</accountName>
|
1284
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1285
|
+
</holdsAccount>
|
1286
|
+
<name>Dave Verwer</name>
|
1287
|
+
</knows>
|
1288
|
+
<knows rdf:parseType="Resource">
|
1289
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1290
|
+
<depiction rdf:resource=""/>
|
1291
|
+
<family_name>Stirland</family_name>
|
1292
|
+
<givenname>Stuart</givenname>
|
1293
|
+
<holdsAccount rdf:parseType="Resource">
|
1294
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1295
|
+
<accountName>510519130</accountName>
|
1296
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1297
|
+
</holdsAccount>
|
1298
|
+
<name>Stuart Stirland</name>
|
1299
|
+
</knows>
|
1300
|
+
<knows rdf:parseType="Resource">
|
1301
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1302
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1673/11/s515657266_6928.jpg"/>
|
1303
|
+
<family_name>Rahman</family_name>
|
1304
|
+
<givenname>Mohammed</givenname>
|
1305
|
+
<holdsAccount rdf:parseType="Resource">
|
1306
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1307
|
+
<accountName>515657266</accountName>
|
1308
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1309
|
+
</holdsAccount>
|
1310
|
+
<name>Mohammed Shahinur Rahman</name>
|
1311
|
+
</knows>
|
1312
|
+
<knows rdf:parseType="Resource">
|
1313
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1314
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/135/32/s517924264_1710.jpg"/>
|
1315
|
+
<family_name>Wilson</family_name>
|
1316
|
+
<givenname>Alex</givenname>
|
1317
|
+
<holdsAccount rdf:parseType="Resource">
|
1318
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1319
|
+
<accountName>517924264</accountName>
|
1320
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1321
|
+
</holdsAccount>
|
1322
|
+
<name>Alex Wilson</name>
|
1323
|
+
</knows>
|
1324
|
+
<knows rdf:parseType="Resource">
|
1325
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1326
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1092/101/s519560580_891.jpg"/>
|
1327
|
+
<family_name>Cunningham</family_name>
|
1328
|
+
<givenname>Camille</givenname>
|
1329
|
+
<holdsAccount rdf:parseType="Resource">
|
1330
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1331
|
+
<accountName>519560580</accountName>
|
1332
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1333
|
+
</holdsAccount>
|
1334
|
+
<name>Camille A Cunningham</name>
|
1335
|
+
</knows>
|
1336
|
+
<knows rdf:parseType="Resource">
|
1337
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1338
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/566/97/s519565580_1726.jpg"/>
|
1339
|
+
<family_name>Barker</family_name>
|
1340
|
+
<givenname>Hannah</givenname>
|
1341
|
+
<holdsAccount rdf:parseType="Resource">
|
1342
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1343
|
+
<accountName>519565580</accountName>
|
1344
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1345
|
+
</holdsAccount>
|
1346
|
+
<name>Hannah Barker</name>
|
1347
|
+
</knows>
|
1348
|
+
<knows rdf:parseType="Resource">
|
1349
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1350
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1375/0/s540980006_2020.jpg"/>
|
1351
|
+
<family_name>Summers</family_name>
|
1352
|
+
<givenname>Tom</givenname>
|
1353
|
+
<holdsAccount rdf:parseType="Resource">
|
1354
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1355
|
+
<accountName>540980006</accountName>
|
1356
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1357
|
+
</holdsAccount>
|
1358
|
+
<name>Tom Summers</name>
|
1359
|
+
</knows>
|
1360
|
+
<knows rdf:parseType="Resource">
|
1361
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1362
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/418/107/s542749457_4625.jpg"/>
|
1363
|
+
<family_name>Green</family_name>
|
1364
|
+
<givenname>Adam</givenname>
|
1365
|
+
<holdsAccount rdf:parseType="Resource">
|
1366
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1367
|
+
<accountName>542749457</accountName>
|
1368
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1369
|
+
</holdsAccount>
|
1370
|
+
<name>Adam Green</name>
|
1371
|
+
</knows>
|
1372
|
+
<knows rdf:parseType="Resource">
|
1373
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1374
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1285/112/s547636115_4766.jpg"/>
|
1375
|
+
<family_name>Lingard</family_name>
|
1376
|
+
<givenname>Alex</givenname>
|
1377
|
+
<holdsAccount rdf:parseType="Resource">
|
1378
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1379
|
+
<accountName>547636115</accountName>
|
1380
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1381
|
+
</holdsAccount>
|
1382
|
+
<name>Alex Lingard</name>
|
1383
|
+
</knows>
|
1384
|
+
<knows rdf:parseType="Resource">
|
1385
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1386
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1719/21/s548631968_4881.jpg"/>
|
1387
|
+
<family_name>Baker</family_name>
|
1388
|
+
<givenname>Keith</givenname>
|
1389
|
+
<holdsAccount rdf:parseType="Resource">
|
1390
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1391
|
+
<accountName>548631968</accountName>
|
1392
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1393
|
+
</holdsAccount>
|
1394
|
+
<name>Keith J. Baker</name>
|
1395
|
+
</knows>
|
1396
|
+
<knows rdf:parseType="Resource">
|
1397
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1398
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1489/6/s554812929_4813.jpg"/>
|
1399
|
+
<family_name>BojÄrs</family_name>
|
1400
|
+
<givenname>Uldis</givenname>
|
1401
|
+
<holdsAccount rdf:parseType="Resource">
|
1402
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1403
|
+
<accountName>554812929</accountName>
|
1404
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1405
|
+
</holdsAccount>
|
1406
|
+
<name>Uldis BojÄrs</name>
|
1407
|
+
</knows>
|
1408
|
+
<knows rdf:parseType="Resource">
|
1409
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1410
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/725/72/s557410572_3895.jpg"/>
|
1411
|
+
<family_name>Ly</family_name>
|
1412
|
+
<givenname>Jenny</givenname>
|
1413
|
+
<holdsAccount rdf:parseType="Resource">
|
1414
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1415
|
+
<accountName>557410572</accountName>
|
1416
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1417
|
+
</holdsAccount>
|
1418
|
+
<name>Jenny Ly</name>
|
1419
|
+
</knows>
|
1420
|
+
<knows rdf:parseType="Resource">
|
1421
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1422
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/295/62/s559950534_3534.jpg"/>
|
1423
|
+
<family_name>Haskell</family_name>
|
1424
|
+
<givenname>Lyn</givenname>
|
1425
|
+
<holdsAccount rdf:parseType="Resource">
|
1426
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1427
|
+
<accountName>559950534</accountName>
|
1428
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1429
|
+
</holdsAccount>
|
1430
|
+
<name>Lyn Haskell</name>
|
1431
|
+
</knows>
|
1432
|
+
<knows rdf:parseType="Resource">
|
1433
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1434
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1965/83/s560622844_7496.jpg"/>
|
1435
|
+
<family_name>Forrester</family_name>
|
1436
|
+
<givenname>Ian</givenname>
|
1437
|
+
<holdsAccount rdf:parseType="Resource">
|
1438
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1439
|
+
<accountName>560622844</accountName>
|
1440
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1441
|
+
</holdsAccount>
|
1442
|
+
<name>Ian Forrester</name>
|
1443
|
+
</knows>
|
1444
|
+
<knows rdf:parseType="Resource">
|
1445
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1446
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1162/114/s568846289_8974.jpg"/>
|
1447
|
+
<family_name>Wilson</family_name>
|
1448
|
+
<givenname>John</givenname>
|
1449
|
+
<holdsAccount rdf:parseType="Resource">
|
1450
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1451
|
+
<accountName>568846289</accountName>
|
1452
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1453
|
+
</holdsAccount>
|
1454
|
+
<name>John Wilson</name>
|
1455
|
+
</knows>
|
1456
|
+
<knows rdf:parseType="Resource">
|
1457
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1458
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1087/18/s569343372_9203.jpg"/>
|
1459
|
+
<family_name>Napier</family_name>
|
1460
|
+
<givenname>Sophie</givenname>
|
1461
|
+
<holdsAccount rdf:parseType="Resource">
|
1462
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1463
|
+
<accountName>569343372</accountName>
|
1464
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1465
|
+
</holdsAccount>
|
1466
|
+
<name>Sophie Napier</name>
|
1467
|
+
</knows>
|
1468
|
+
<knows rdf:parseType="Resource">
|
1469
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1470
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/145/77/s581274611_8808.jpg"/>
|
1471
|
+
<family_name>Pawson</family_name>
|
1472
|
+
<givenname>Dave</givenname>
|
1473
|
+
<holdsAccount rdf:parseType="Resource">
|
1474
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1475
|
+
<accountName>581274611</accountName>
|
1476
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1477
|
+
</holdsAccount>
|
1478
|
+
<name>Dave Pawson</name>
|
1479
|
+
</knows>
|
1480
|
+
<knows rdf:parseType="Resource">
|
1481
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1482
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/v52/798/81/s581291541_5700.jpg"/>
|
1483
|
+
<family_name>Balkan</family_name>
|
1484
|
+
<givenname>Aral</givenname>
|
1485
|
+
<holdsAccount rdf:parseType="Resource">
|
1486
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1487
|
+
<accountName>581291541</accountName>
|
1488
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1489
|
+
</holdsAccount>
|
1490
|
+
<name>Aral Balkan</name>
|
1491
|
+
</knows>
|
1492
|
+
<knows rdf:parseType="Resource">
|
1493
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1494
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1170/60/s583286302_8250.jpg"/>
|
1495
|
+
<family_name>Simon</family_name>
|
1496
|
+
<givenname>Nicole</givenname>
|
1497
|
+
<holdsAccount rdf:parseType="Resource">
|
1498
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1499
|
+
<accountName>583286302</accountName>
|
1500
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1501
|
+
</holdsAccount>
|
1502
|
+
<name>Nicole Simon</name>
|
1503
|
+
</knows>
|
1504
|
+
<knows rdf:parseType="Resource">
|
1505
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1506
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/930/52/s591017316_2614.jpg"/>
|
1507
|
+
<family_name>Carol</family_name>
|
1508
|
+
<givenname>Aunt</givenname>
|
1509
|
+
<holdsAccount rdf:parseType="Resource">
|
1510
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1511
|
+
<accountName>591017316</accountName>
|
1512
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1513
|
+
</holdsAccount>
|
1514
|
+
<name>Aunt Carol</name>
|
1515
|
+
</knows>
|
1516
|
+
<knows rdf:parseType="Resource">
|
1517
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1518
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/698/82/s593707475_6378.jpg"/>
|
1519
|
+
<family_name>Waigl</family_name>
|
1520
|
+
<givenname>Chris</givenname>
|
1521
|
+
<holdsAccount rdf:parseType="Resource">
|
1522
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1523
|
+
<accountName>593707475</accountName>
|
1524
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1525
|
+
</holdsAccount>
|
1526
|
+
<name>Chris F Waigl</name>
|
1527
|
+
</knows>
|
1528
|
+
<knows rdf:parseType="Resource">
|
1529
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1530
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/887/59/s599981268_4098.jpg"/>
|
1531
|
+
<family_name>Robertson</family_name>
|
1532
|
+
<givenname>Alison</givenname>
|
1533
|
+
<holdsAccount rdf:parseType="Resource">
|
1534
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1535
|
+
<accountName>599981268</accountName>
|
1536
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1537
|
+
</holdsAccount>
|
1538
|
+
<name>Alison Robertson</name>
|
1539
|
+
</knows>
|
1540
|
+
<knows rdf:parseType="Resource">
|
1541
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1542
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1517/15/s602322501_7069.jpg"/>
|
1543
|
+
<family_name>Ibrahim</family_name>
|
1544
|
+
<givenname>Mecca</givenname>
|
1545
|
+
<holdsAccount rdf:parseType="Resource">
|
1546
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1547
|
+
<accountName>602322501</accountName>
|
1548
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1549
|
+
</holdsAccount>
|
1550
|
+
<name>Mecca Ibrahim</name>
|
1551
|
+
</knows>
|
1552
|
+
<knows rdf:parseType="Resource">
|
1553
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1554
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1522/52/s605980750_5867.jpg"/>
|
1555
|
+
<family_name>Idehen</family_name>
|
1556
|
+
<givenname>Kingsley</givenname>
|
1557
|
+
<holdsAccount rdf:parseType="Resource">
|
1558
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1559
|
+
<accountName>605980750</accountName>
|
1560
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1561
|
+
</holdsAccount>
|
1562
|
+
<name>Kingsley Idehen</name>
|
1563
|
+
</knows>
|
1564
|
+
<knows rdf:parseType="Resource">
|
1565
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1566
|
+
<depiction rdf:resource=""/>
|
1567
|
+
<family_name>Johnson</family_name>
|
1568
|
+
<givenname>J. Scott</givenname>
|
1569
|
+
<holdsAccount rdf:parseType="Resource">
|
1570
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1571
|
+
<accountName>607051415</accountName>
|
1572
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1573
|
+
</holdsAccount>
|
1574
|
+
<name>J. Scott Johnson</name>
|
1575
|
+
</knows>
|
1576
|
+
<knows rdf:parseType="Resource">
|
1577
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1578
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/v52/522/4/s615300136_736.jpg"/>
|
1579
|
+
<family_name>Pullar</family_name>
|
1580
|
+
<givenname>Nick</givenname>
|
1581
|
+
<holdsAccount rdf:parseType="Resource">
|
1582
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1583
|
+
<accountName>615300136</accountName>
|
1584
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1585
|
+
</holdsAccount>
|
1586
|
+
<name>Nick Pullar</name>
|
1587
|
+
</knows>
|
1588
|
+
<knows rdf:parseType="Resource">
|
1589
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1590
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/940/7/s625380245_3714.jpg"/>
|
1591
|
+
<family_name>Freedman</family_name>
|
1592
|
+
<givenname>Martin</givenname>
|
1593
|
+
<holdsAccount rdf:parseType="Resource">
|
1594
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1595
|
+
<accountName>625380245</accountName>
|
1596
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1597
|
+
</holdsAccount>
|
1598
|
+
<name>Martin Freedman</name>
|
1599
|
+
</knows>
|
1600
|
+
<knows rdf:parseType="Resource">
|
1601
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1602
|
+
<depiction rdf:resource=""/>
|
1603
|
+
<family_name>Hansen</family_name>
|
1604
|
+
<givenname>Norman</givenname>
|
1605
|
+
<holdsAccount rdf:parseType="Resource">
|
1606
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1607
|
+
<accountName>645246253</accountName>
|
1608
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1609
|
+
</holdsAccount>
|
1610
|
+
<name>Norman Hansen</name>
|
1611
|
+
</knows>
|
1612
|
+
<knows rdf:parseType="Resource">
|
1613
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1614
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/592/47/s657852061_4088.jpg"/>
|
1615
|
+
<family_name>Cashmore</family_name>
|
1616
|
+
<givenname>Matthew</givenname>
|
1617
|
+
<holdsAccount rdf:parseType="Resource">
|
1618
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1619
|
+
<accountName>657852061</accountName>
|
1620
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1621
|
+
</holdsAccount>
|
1622
|
+
<name>Matthew Cashmore</name>
|
1623
|
+
</knows>
|
1624
|
+
<knows rdf:parseType="Resource">
|
1625
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1626
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1446/95/s660782493_7137.jpg"/>
|
1627
|
+
<family_name>Grammatica</family_name>
|
1628
|
+
<givenname>Daniella</givenname>
|
1629
|
+
<holdsAccount rdf:parseType="Resource">
|
1630
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1631
|
+
<accountName>660782493</accountName>
|
1632
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1633
|
+
</holdsAccount>
|
1634
|
+
<name>Daniella Grammatica</name>
|
1635
|
+
</knows>
|
1636
|
+
<knows rdf:parseType="Resource">
|
1637
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1638
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1340/125/s661086801_8210.jpg"/>
|
1639
|
+
<family_name>Hughson</family_name>
|
1640
|
+
<givenname>Dean</givenname>
|
1641
|
+
<holdsAccount rdf:parseType="Resource">
|
1642
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1643
|
+
<accountName>661086801</accountName>
|
1644
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1645
|
+
</holdsAccount>
|
1646
|
+
<name>Dean Hughson</name>
|
1647
|
+
</knows>
|
1648
|
+
<knows rdf:parseType="Resource">
|
1649
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1650
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1069/69/s664283486_788.jpg"/>
|
1651
|
+
<family_name>Hinchcliffe</family_name>
|
1652
|
+
<givenname>Robert</givenname>
|
1653
|
+
<holdsAccount rdf:parseType="Resource">
|
1654
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1655
|
+
<accountName>664283486</accountName>
|
1656
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1657
|
+
</holdsAccount>
|
1658
|
+
<name>Robert Hinchcliffe</name>
|
1659
|
+
</knows>
|
1660
|
+
<knows rdf:parseType="Resource">
|
1661
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1662
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1459/114/s688415356_7172.jpg"/>
|
1663
|
+
<family_name>Rawlings</family_name>
|
1664
|
+
<givenname>Dan</givenname>
|
1665
|
+
<holdsAccount rdf:parseType="Resource">
|
1666
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1667
|
+
<accountName>688415356</accountName>
|
1668
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1669
|
+
</holdsAccount>
|
1670
|
+
<name>Dan Rawlings</name>
|
1671
|
+
</knows>
|
1672
|
+
<knows rdf:parseType="Resource">
|
1673
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1674
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1041/4/s690736533_8139.jpg"/>
|
1675
|
+
<family_name>Lee-Cann</family_name>
|
1676
|
+
<givenname>Robert</givenname>
|
1677
|
+
<holdsAccount rdf:parseType="Resource">
|
1678
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1679
|
+
<accountName>690736533</accountName>
|
1680
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1681
|
+
</holdsAccount>
|
1682
|
+
<name>Robert Lee-Cann</name>
|
1683
|
+
</knows>
|
1684
|
+
<knows rdf:parseType="Resource">
|
1685
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1686
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/24/125/s695341580_5195.jpg"/>
|
1687
|
+
<family_name>Rushgrove</family_name>
|
1688
|
+
<givenname>Gareth</givenname>
|
1689
|
+
<holdsAccount rdf:parseType="Resource">
|
1690
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1691
|
+
<accountName>695341580</accountName>
|
1692
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1693
|
+
</holdsAccount>
|
1694
|
+
<name>Gareth Rushgrove</name>
|
1695
|
+
</knows>
|
1696
|
+
<knows rdf:parseType="Resource">
|
1697
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1698
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/159/43/s695716690_4071.jpg"/>
|
1699
|
+
<family_name>Molloy</family_name>
|
1700
|
+
<givenname>Deirdre</givenname>
|
1701
|
+
<holdsAccount rdf:parseType="Resource">
|
1702
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1703
|
+
<accountName>695716690</accountName>
|
1704
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1705
|
+
</holdsAccount>
|
1706
|
+
<name>Deirdre Molloy</name>
|
1707
|
+
</knows>
|
1708
|
+
<knows rdf:parseType="Resource">
|
1709
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1710
|
+
<depiction rdf:resource=""/>
|
1711
|
+
<family_name>Ford</family_name>
|
1712
|
+
<givenname>Neil</givenname>
|
1713
|
+
<holdsAccount rdf:parseType="Resource">
|
1714
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1715
|
+
<accountName>696551884</accountName>
|
1716
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1717
|
+
</holdsAccount>
|
1718
|
+
<name>Neil Ford</name>
|
1719
|
+
</knows>
|
1720
|
+
<knows rdf:parseType="Resource">
|
1721
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1722
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1278/60/s697107470_525.jpg"/>
|
1723
|
+
<family_name>Higgins</family_name>
|
1724
|
+
<givenname>Walter</givenname>
|
1725
|
+
<holdsAccount rdf:parseType="Resource">
|
1726
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1727
|
+
<accountName>697107470</accountName>
|
1728
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1729
|
+
</holdsAccount>
|
1730
|
+
<name>Walter Higgins</name>
|
1731
|
+
</knows>
|
1732
|
+
<knows rdf:parseType="Resource">
|
1733
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1734
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/110/39/s700837639_6537.jpg"/>
|
1735
|
+
<family_name>Smyth</family_name>
|
1736
|
+
<givenname>Garret</givenname>
|
1737
|
+
<holdsAccount rdf:parseType="Resource">
|
1738
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1739
|
+
<accountName>700837639</accountName>
|
1740
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1741
|
+
</holdsAccount>
|
1742
|
+
<name>Garret Smyth</name>
|
1743
|
+
</knows>
|
1744
|
+
<knows rdf:parseType="Resource">
|
1745
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1746
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1851/48/s705606289_831.jpg"/>
|
1747
|
+
<family_name>Kowalchik</family_name>
|
1748
|
+
<givenname>Michael</givenname>
|
1749
|
+
<holdsAccount rdf:parseType="Resource">
|
1750
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1751
|
+
<accountName>705606289</accountName>
|
1752
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1753
|
+
</holdsAccount>
|
1754
|
+
<name>Michael Kowalchik</name>
|
1755
|
+
</knows>
|
1756
|
+
<knows rdf:parseType="Resource">
|
1757
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1758
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/807/27/s721545991_159.jpg"/>
|
1759
|
+
<family_name>Jobling</family_name>
|
1760
|
+
<givenname>Martin</givenname>
|
1761
|
+
<holdsAccount rdf:parseType="Resource">
|
1762
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1763
|
+
<accountName>721545991</accountName>
|
1764
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1765
|
+
</holdsAccount>
|
1766
|
+
<name>Martin Jobling</name>
|
1767
|
+
</knows>
|
1768
|
+
<knows rdf:parseType="Resource">
|
1769
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1770
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/34/17/s729800602_6633.jpg"/>
|
1771
|
+
<family_name>Taylor</family_name>
|
1772
|
+
<givenname>Jeffrey</givenname>
|
1773
|
+
<holdsAccount rdf:parseType="Resource">
|
1774
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1775
|
+
<accountName>729800602</accountName>
|
1776
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1777
|
+
</holdsAccount>
|
1778
|
+
<name>Jeffrey Taylor</name>
|
1779
|
+
</knows>
|
1780
|
+
<knows rdf:parseType="Resource">
|
1781
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1782
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1778/8/s735455251_2397.jpg"/>
|
1783
|
+
<family_name>Barrass</family_name>
|
1784
|
+
<givenname>Gavin</givenname>
|
1785
|
+
<holdsAccount rdf:parseType="Resource">
|
1786
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1787
|
+
<accountName>735455251</accountName>
|
1788
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1789
|
+
</holdsAccount>
|
1790
|
+
<name>Gavin Barrass</name>
|
1791
|
+
</knows>
|
1792
|
+
<knows rdf:parseType="Resource">
|
1793
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1794
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1693/53/s736320224_4703.jpg"/>
|
1795
|
+
<family_name>Thomson</family_name>
|
1796
|
+
<givenname>Sheila</givenname>
|
1797
|
+
<holdsAccount rdf:parseType="Resource">
|
1798
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1799
|
+
<accountName>736320224</accountName>
|
1800
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1801
|
+
</holdsAccount>
|
1802
|
+
<name>Sheila Thomson</name>
|
1803
|
+
</knows>
|
1804
|
+
<knows rdf:parseType="Resource">
|
1805
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1806
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1128/108/s740045703_5716.jpg"/>
|
1807
|
+
<family_name>Harriyott</family_name>
|
1808
|
+
<givenname>Simon</givenname>
|
1809
|
+
<holdsAccount rdf:parseType="Resource">
|
1810
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1811
|
+
<accountName>740045703</accountName>
|
1812
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1813
|
+
</holdsAccount>
|
1814
|
+
<name>Simon Harriyott</name>
|
1815
|
+
</knows>
|
1816
|
+
<knows rdf:parseType="Resource">
|
1817
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1818
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1562/46/s751047456_599.jpg"/>
|
1819
|
+
<family_name>Corbett</family_name>
|
1820
|
+
<givenname>James</givenname>
|
1821
|
+
<holdsAccount rdf:parseType="Resource">
|
1822
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1823
|
+
<accountName>751047456</accountName>
|
1824
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1825
|
+
</holdsAccount>
|
1826
|
+
<name>James Corbett</name>
|
1827
|
+
</knows>
|
1828
|
+
<knows rdf:parseType="Resource">
|
1829
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1830
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1037/125/s808455513_9817.jpg"/>
|
1831
|
+
<family_name>Green</family_name>
|
1832
|
+
<givenname>David</givenname>
|
1833
|
+
<holdsAccount rdf:parseType="Resource">
|
1834
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1835
|
+
<accountName>808455513</accountName>
|
1836
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1837
|
+
</holdsAccount>
|
1838
|
+
<name>David Green</name>
|
1839
|
+
</knows>
|
1840
|
+
<knows rdf:parseType="Resource">
|
1841
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1842
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/v52/133/10/s809930304_4229.jpg"/>
|
1843
|
+
<family_name>Reynolds</family_name>
|
1844
|
+
<givenname>Tom</givenname>
|
1845
|
+
<holdsAccount rdf:parseType="Resource">
|
1846
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1847
|
+
<accountName>809930304</accountName>
|
1848
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1849
|
+
</holdsAccount>
|
1850
|
+
<name>Tom Reynolds</name>
|
1851
|
+
</knows>
|
1852
|
+
<knows rdf:parseType="Resource">
|
1853
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1854
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/1485/71/s830275789_3919.jpg"/>
|
1855
|
+
<family_name>Furniss</family_name>
|
1856
|
+
<givenname>Charlotte</givenname>
|
1857
|
+
<holdsAccount rdf:parseType="Resource">
|
1858
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1859
|
+
<accountName>830275789</accountName>
|
1860
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1861
|
+
</holdsAccount>
|
1862
|
+
<name>Charlotte Furniss</name>
|
1863
|
+
</knows>
|
1864
|
+
<knows rdf:parseType="Resource">
|
1865
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1866
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/1508/125/s860005407_7316.jpg"/>
|
1867
|
+
<family_name>Michel</family_name>
|
1868
|
+
<givenname>Sam</givenname>
|
1869
|
+
<holdsAccount rdf:parseType="Resource">
|
1870
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1871
|
+
<accountName>860005407</accountName>
|
1872
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1873
|
+
</holdsAccount>
|
1874
|
+
<name>Sam Michel</name>
|
1875
|
+
</knows>
|
1876
|
+
<knows rdf:parseType="Resource">
|
1877
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1878
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/2010/74/s877515150_6528.jpg"/>
|
1879
|
+
<family_name>Spence</family_name>
|
1880
|
+
<givenname>Ewan</givenname>
|
1881
|
+
<holdsAccount rdf:parseType="Resource">
|
1882
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1883
|
+
<accountName>877515150</accountName>
|
1884
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1885
|
+
</holdsAccount>
|
1886
|
+
<name>Ewan Spence</name>
|
1887
|
+
</knows>
|
1888
|
+
<knows rdf:parseType="Resource">
|
1889
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1890
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile6/138/9/s885495303_9177.jpg"/>
|
1891
|
+
<family_name>Kendall</family_name>
|
1892
|
+
<givenname>Tessa</givenname>
|
1893
|
+
<holdsAccount rdf:parseType="Resource">
|
1894
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1895
|
+
<accountName>885495303</accountName>
|
1896
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1897
|
+
</holdsAccount>
|
1898
|
+
<name>Tessa Kendall</name>
|
1899
|
+
</knows>
|
1900
|
+
<knows rdf:parseType="Resource">
|
1901
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1902
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile2/695/22/s890555121_23249.jpg"/>
|
1903
|
+
<family_name>Penn</family_name>
|
1904
|
+
<givenname>Christopher</givenname>
|
1905
|
+
<holdsAccount rdf:parseType="Resource">
|
1906
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1907
|
+
<accountName>890555121</accountName>
|
1908
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1909
|
+
</holdsAccount>
|
1910
|
+
<name>Christopher Penn</name>
|
1911
|
+
</knows>
|
1912
|
+
<knows rdf:parseType="Resource">
|
1913
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
|
1914
|
+
<depiction rdf:resource="http://profile.ak.facebook.com/profile5/429/125/s1612050075_1401.jpg"/>
|
1915
|
+
<family_name>Ross</family_name>
|
1916
|
+
<givenname>Hanni</givenname>
|
1917
|
+
<holdsAccount rdf:parseType="Resource">
|
1918
|
+
<rdf:type rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
|
1919
|
+
<accountName>1612050075</accountName>
|
1920
|
+
<accountServiceHomepage rdf:resource="http://www.facebook.com/"/>
|
1921
|
+
</holdsAccount>
|
1922
|
+
<name>Hanni Ross</name>
|
1923
|
+
</knows>
|
1924
|
+
<mbox rdf:resource="mailto:tom@tommorris.org"/>
|
1925
|
+
<mbox_sha1sum>802c68123e12bf69d99a25a87cef360f18813fe4</mbox_sha1sum>
|
1926
|
+
<mbox_sha1sum>bd9f81a05283ed85e699175ed057b4a497f20b77</mbox_sha1sum>
|
1927
|
+
<name>Tom Morris</name>
|
1928
|
+
<nick>tommorris</nick>
|
1929
|
+
<openid rdf:resource="http://blogs.opml.org/tommorris"/>
|
1930
|
+
<openid rdf:resource="http://claimid.com/tommorris"/>
|
1931
|
+
<openid rdf:resource="http://id.bloglines.com/TomMorris"/>
|
1932
|
+
<openid rdf:resource="http://openid.aol.com/bbtommorris"/>
|
1933
|
+
<openid rdf:resource="http://profile.typekey.com/tommorris/"/>
|
1934
|
+
<openid rdf:resource="http://technorati.com/people/technorati/tommorris"/>
|
1935
|
+
<openid rdf:resource="http://tom.identitu.de/"/>
|
1936
|
+
<openid rdf:resource="http://tom.opiumfield.com/"/>
|
1937
|
+
<openid rdf:resource="http://tommorris.idproxy.net/"/>
|
1938
|
+
<openid rdf:resource="http://tommorris.livejournal.com/"/>
|
1939
|
+
<openid rdf:resource="http://tommorris.myid.net/"/>
|
1940
|
+
<openid rdf:resource="http://tommorris.myopenid.com/"/>
|
1941
|
+
<openid rdf:resource="http://tommorris.org/"/>
|
1942
|
+
<openid rdf:resource="http://tommorris.org/yadis.xrdf"/>
|
1943
|
+
<openid rdf:resource="http://tommorris.pip.verisignlabs.com/"/>
|
1944
|
+
<openid rdf:resource="http://tommorris.vox.com/"/>
|
1945
|
+
<openid rdf:resource="http://tommorris.wordpress.com/"/>
|
1946
|
+
<schoolHomepage rdf:resource="http://www.heythrop.ac.uk"/>
|
1947
|
+
<title>Mr</title>
|
1948
|
+
<weblog rdf:resource="http://blogs.opml.org/tommorris"/>
|
1949
|
+
<weblog rdf:resource="http://tom.opiumfield.com/blog/"/>
|
1950
|
+
<wot:hasKey rdf:parseType="Resource">
|
1951
|
+
<wot:PubKey rdf:parseType="Resource">
|
1952
|
+
<wot:fingerprint>A41E1EC9E4CE8DF774B6 3E5F9B1B1938A6A4F54E</wot:fingerprint>
|
1953
|
+
<wot:hex_id>A6A4F54E</wot:hex_id>
|
1954
|
+
<wot:identity rdf:parseType="Resource">
|
1955
|
+
<wot:User rdf:parseType="Resource">
|
1956
|
+
<rdfs:seeAlso rdf:resource="#me"/>
|
1957
|
+
<name>Tom Morris</name>
|
1958
|
+
</wot:User>
|
1959
|
+
</wot:identity>
|
1960
|
+
<wot:length>1024</wot:length>
|
1961
|
+
<wot:pubKeyAddress rdf:resource="http://tommorris.org/gpg.asc"/>
|
1962
|
+
</wot:PubKey>
|
1963
|
+
</wot:hasKey>
|
1964
|
+
</veg:Ovo-LactoVegetarian>
|
1965
|
+
|
1966
|
+
<Person rdf:about="http://tommorris.org/foaf#moore_jim">
|
1967
|
+
<gender>male</gender>
|
1968
|
+
<mbox_sha1sum>bafdaa20bfcbb1746c8ac60a3e57d8a087e49964</mbox_sha1sum>
|
1969
|
+
<name>Jim Moore</name>
|
1970
|
+
<weblog rdf:resource="http://blogs.law.harvard.edu/jim/"/>
|
1971
|
+
</Person>
|
1972
|
+
|
1973
|
+
<Person rdf:about="http://tommorris.org/foaf#morris_mary">
|
1974
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#BE"/>
|
1975
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#DE"/>
|
1976
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#DK"/>
|
1977
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#FR"/>
|
1978
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#IT"/>
|
1979
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#NL"/>
|
1980
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#RU"/>
|
1981
|
+
<misc:address_sha1sum>391cfd47eba7934ef8faf4f0b690cacf4316cad3</misc:address_sha1sum>
|
1982
|
+
<gender>female</gender>
|
1983
|
+
<interest>Quilting</interest>
|
1984
|
+
<interest>Robert Rauschenberg</interest>
|
1985
|
+
<interest>Textile Art</interest>
|
1986
|
+
<mbox_sha1sum>b70c1a18f42340dcb8daa85a5f33d3dd3bd2f629</mbox_sha1sum>
|
1987
|
+
<name>Mary Morris</name>
|
1988
|
+
<schoolHomepage rdf:resource="http://www.eastberks.ac.uk"/>
|
1989
|
+
</Person>
|
1990
|
+
|
1991
|
+
<Person rdf:about="http://tommorris.org/foaf#myers_pz">
|
1992
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#UK"/>
|
1993
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/pzmyers/rdf"/>
|
1994
|
+
<owl:sameAs rdf:resource="http://twitter.com/pzmyers"/>
|
1995
|
+
<gender>male</gender>
|
1996
|
+
<interest>Evolution</interest>
|
1997
|
+
<interest>Invertebrates</interest>
|
1998
|
+
<interest>Science</interest>
|
1999
|
+
<interest rdf:resource="http://www.apple.com"/>
|
2000
|
+
<name>Paul Z. Myers</name>
|
2001
|
+
<weblog rdf:resource="http://scienceblogs.com/pharyngula"/>
|
2002
|
+
</Person>
|
2003
|
+
|
2004
|
+
<Person rdf:about="http://tommorris.org/foaf#raftery_tom">
|
2005
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#FR"/>
|
2006
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/TomRaftery/rdf"/>
|
2007
|
+
<owl:sameAs rdf:resource="http://twitter.com/TomRaftery"/>
|
2008
|
+
<gender>male</gender>
|
2009
|
+
<homepage rdf:resource="http://www.tomrafteryit.net"/>
|
2010
|
+
<knows rdf:resource="http://tommorris.org/foaf#corbett_james"/>
|
2011
|
+
<knows rdf:resource="http://tommorris.org/foaf#tom_raftery"/>
|
2012
|
+
<name>Tom Raftery</name>
|
2013
|
+
</Person>
|
2014
|
+
|
2015
|
+
<Person rdf:about="http://tommorris.org/foaf#scoble_robert">
|
2016
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#UK"/>
|
2017
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/Scobleizer/rdf"/>
|
2018
|
+
<owl:sameAs rdf:resource="http://twitter.com/Scobleizer"/>
|
2019
|
+
<gender>male</gender>
|
2020
|
+
<mbox_sha1sum>1f6e614b57c9bbde559840b3c002022991c97063</mbox_sha1sum>
|
2021
|
+
<name>Robert Scoble</name>
|
2022
|
+
<weblog rdf:resource="http://scobleizer.com"/>
|
2023
|
+
<workplaceHomepage rdf:resource="http://www.podtech.net"/>
|
2024
|
+
</Person>
|
2025
|
+
|
2026
|
+
<Person rdf:about="http://tommorris.org/foaf#sethi_sam">
|
2027
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/ssethi/rdf"/>
|
2028
|
+
<owl:sameAs rdf:resource="http://twitter.com/ssethi"/>
|
2029
|
+
<gender>male</gender>
|
2030
|
+
<knows rdf:resource="http://tommorris.org/foaf#simon_nicole"/>
|
2031
|
+
<name>Sam Sethi</name>
|
2032
|
+
<openid rdf:resource="http://samksethi.myopenid.com/"/>
|
2033
|
+
<workplaceHomepage rdf:resource="http://www.blognation.com/"/>
|
2034
|
+
</Person>
|
2035
|
+
|
2036
|
+
<Person rdf:about="http://tommorris.org/foaf#simon_nicole">
|
2037
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#DK"/>
|
2038
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#FR"/>
|
2039
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#UK"/>
|
2040
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/NicoleSimon/rdf"/>
|
2041
|
+
<owl:sameAs rdf:resource="http://twitter.com/NicoleSimon"/>
|
2042
|
+
<gender>female</gender>
|
2043
|
+
<name>Nicole Simon</name>
|
2044
|
+
<weblog rdf:resource="http://beissholz.de"/>
|
2045
|
+
<weblog rdf:resource="http://crueltobekind.org"/>
|
2046
|
+
</Person>
|
2047
|
+
|
2048
|
+
<Person rdf:about="http://tommorris.org/foaf#spence_ewan">
|
2049
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#FR"/>
|
2050
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/EwanSpence/rdf"/>
|
2051
|
+
<owl:sameAs rdf:resource="http://twitter.com/EwanSpence"/>
|
2052
|
+
<gender>male</gender>
|
2053
|
+
<name>Ewan Spence</name>
|
2054
|
+
<weblog rdf:resource="http://www.ewanspence.com/blog"/>
|
2055
|
+
</Person>
|
2056
|
+
|
2057
|
+
<Person rdf:about="http://tommorris.org/foaf#suda_brian">
|
2058
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/briansuda/rdf"/>
|
2059
|
+
<owl:sameAs rdf:resource="http://twitter.com/briansuda"/>
|
2060
|
+
<gender>male</gender>
|
2061
|
+
<name>Brian Suda</name>
|
2062
|
+
<openid rdf:resource="http://openid.claimid.com/briansuda"/>
|
2063
|
+
<openid rdf:resource="http://suda.co.uk/"/>
|
2064
|
+
</Person>
|
2065
|
+
|
2066
|
+
<Person rdf:about="http://tommorris.org/foaf#tabor_indigo">
|
2067
|
+
<gender>female</gender>
|
2068
|
+
<mbox_sha1sum>be723a3f238ac889e6657d587d4cb2e2ea644f42</mbox_sha1sum>
|
2069
|
+
<name>Indigio Tabor</name>
|
2070
|
+
<workplaceHomepage rdf:resource="http://www.toptensources.com"/>
|
2071
|
+
</Person>
|
2072
|
+
|
2073
|
+
<pet:Pet rdf:about="http://tommorris.org/foaf#tessa">
|
2074
|
+
<pet:fedBy rdf:resource="http://tommorris.org/foaf#me"/>
|
2075
|
+
<pet:fedBy rdf:resource="http://tommorris.org/foaf#morris_mary"/>
|
2076
|
+
<pet:furStyle xml:lang="en">long-haired</pet:furStyle>
|
2077
|
+
<pet:gender>Female</pet:gender>
|
2078
|
+
<pet:neutered xml:lang="en">true</pet:neutered>
|
2079
|
+
<pet:order rdf:resource="http://purl.org/stuff/pets/Mammal"/>
|
2080
|
+
<pet:primaryColor xml:lang="en">white</pet:primaryColor>
|
2081
|
+
<pet:secondaryColors xml:lang="en">brown</pet:secondaryColors>
|
2082
|
+
<pet:species rdf:resource="http://purl.org/stuff/pets/Dog"/>
|
2083
|
+
<misc:address_sha1sum>391cfd47eba7934ef8faf4f0b690cacf4316cad3</misc:address_sha1sum>
|
2084
|
+
<name>Tessa</name>
|
2085
|
+
</pet:Pet>
|
2086
|
+
|
2087
|
+
<Person rdf:about="http://tommorris.org/foaf#wilkins_lee">
|
2088
|
+
<gender>male</gender>
|
2089
|
+
<knows rdf:resource="http://tommorris.org/foaf#kosso"/>
|
2090
|
+
<name>Lee Wilkins</name>
|
2091
|
+
<weblog rdf:resource="http://blog.leewilkins.com"/>
|
2092
|
+
</Person>
|
2093
|
+
|
2094
|
+
<Person rdf:about="http://tommorris.org/foaf#willison_simon">
|
2095
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/simonw/rdf"/>
|
2096
|
+
<owl:sameAs rdf:resource="http://twitter.com/simonw"/>
|
2097
|
+
<gender>male</gender>
|
2098
|
+
<interest>Django</interest>
|
2099
|
+
<interest>Python</interest>
|
2100
|
+
<knows rdf:resource="http://tommorris.org/foaf#keith_jeremy"/>
|
2101
|
+
<knows rdf:resource="http://tommorris.org/foaf#me"/>
|
2102
|
+
<name>Simon Willison</name>
|
2103
|
+
<openid rdf:resource="http://simonwillison.net/"/>
|
2104
|
+
<weblog rdf:resource="http://simonwillison.net/"/>
|
2105
|
+
</Person>
|
2106
|
+
|
2107
|
+
<Person rdf:about="http://tommorris.org/foaf#winer_dave">
|
2108
|
+
<visit:country rdf:resource="http://www.daml.org/2001/09/countries/iso-3166-ont#NL"/>
|
2109
|
+
<rdfs:seeAlso rdf:resource="http://tools.opiumfield.com/twitter/davewiner/rdf"/>
|
2110
|
+
<owl:sameAs rdf:resource="http://twitter.com/davewiner"/>
|
2111
|
+
<gender>male</gender>
|
2112
|
+
<mbox_sha1sum>278666686905827bfa44b81b5202370dac0d7e5d</mbox_sha1sum>
|
2113
|
+
<name>Dave Winer</name>
|
2114
|
+
<openid rdf:resource="http://davew.myopenid.com/"/>
|
2115
|
+
<openid rdf:resource="http://scripting.com/"/>
|
2116
|
+
<openid rdf:resource="http://scripting.wordpress.com/"/>
|
2117
|
+
<openid rdf:resource="http://www.scripting.com/"/>
|
2118
|
+
<weblog rdf:resource="http://scripting.wordpress.com"/>
|
2119
|
+
<weblog rdf:resource="http://www.scripting.com"/>
|
2120
|
+
</Person>
|
2121
|
+
|
2122
|
+
<Document rdf:about="http://www.andybudd.com/">
|
2123
|
+
<rdfs:seeAlso rdf:resource="http://www.andybudd.com/index.rdf"/>
|
2124
|
+
</Document>
|
2125
|
+
|
2126
|
+
<rss:channel rdf:about="http://www.andybudd.com//links/index.rdf">
|
2127
|
+
</rss:channel>
|
2128
|
+
|
2129
|
+
<rss:channel rdf:about="http://www.andybudd.com/index.rdf">
|
2130
|
+
</rss:channel>
|
2131
|
+
|
2132
|
+
<Document rdf:about="http://www.andybudd.com/links/">
|
2133
|
+
<rdfs:seeAlso rdf:resource="http://www.andybudd.com//links/index.rdf"/>
|
2134
|
+
</Document>
|
2135
|
+
|
2136
|
+
<Document rdf:about="http://www.boingboing.net">
|
2137
|
+
<dc:lang>en</dc:lang>
|
2138
|
+
<dc:title>Boing Boing</dc:title>
|
2139
|
+
<rdfs:seeAlso rdf:resource="http://feeds.feedburner.com/boingboing/iBag"/>
|
2140
|
+
</Document>
|
2141
|
+
|
2142
|
+
<Document rdf:about="http://www.broadbandmechanics.com">
|
2143
|
+
<dc:title>Broadband Mechanics</dc:title>
|
2144
|
+
</Document>
|
2145
|
+
|
2146
|
+
<Document rdf:about="http://www.cubicgarden.com">
|
2147
|
+
<dc:lang>en</dc:lang>
|
2148
|
+
<dc:title>cubicgarden.com</dc:title>
|
2149
|
+
</Document>
|
2150
|
+
|
2151
|
+
<Document rdf:about="http://www.cubicgarden.com/blojsom/blog/sarah/">
|
2152
|
+
<dc:lang>en</dc:lang>
|
2153
|
+
<dc:title>Slightly Outraged</dc:title>
|
2154
|
+
<blog:rss rdf:resource="http://www.cubicgarden.com/blojsom/blog/sarah/?flavor=rss2"/>
|
2155
|
+
<blog:tool rdf:resource="http://www.blojsom.com"/>
|
2156
|
+
</Document>
|
2157
|
+
|
2158
|
+
<Document rdf:about="http://www.eastberks.ac.uk">
|
2159
|
+
<dc:lang>en</dc:lang>
|
2160
|
+
<dc:title>East Berkshire University College</dc:title>
|
2161
|
+
</Document>
|
2162
|
+
|
2163
|
+
<Document rdf:about="http://www.ewanspence.com/blog">
|
2164
|
+
<dc:lang>en</dc:lang>
|
2165
|
+
<dc:title>Ewan's Musings</dc:title>
|
2166
|
+
<rdfs:seeAlso rdf:resource="http://www.ewanspence.com/blog/feed/"/>
|
2167
|
+
</Document>
|
2168
|
+
|
2169
|
+
<rss:channel rdf:about="http://www.ewanspence.com/blog/feed/">
|
2170
|
+
</rss:channel>
|
2171
|
+
|
2172
|
+
<rdf:Description rdf:about="http://www.freestateproject.org">
|
2173
|
+
<dc:title xml:lang="en">Free State Project</dc:title>
|
2174
|
+
</rdf:Description>
|
2175
|
+
|
2176
|
+
<rdf:Description rdf:about="http://www.freetalklive.com">
|
2177
|
+
<dc:lang>en</dc:lang>
|
2178
|
+
<dc:title>Free Talk Live</dc:title>
|
2179
|
+
</rdf:Description>
|
2180
|
+
|
2181
|
+
<rdf:Description rdf:about="http://www.grazr.com">
|
2182
|
+
<dc:title xml:lang="en">Grazr</dc:title>
|
2183
|
+
</rdf:Description>
|
2184
|
+
|
2185
|
+
<rdf:Description rdf:about="http://www.heythrop.ac.uk">
|
2186
|
+
<dc:title xml:lang="en">Heythrop College</dc:title>
|
2187
|
+
</rdf:Description>
|
2188
|
+
|
2189
|
+
<rdf:Description rdf:about="http://www.openrightsgroup.org">
|
2190
|
+
<dc:lang>en</dc:lang>
|
2191
|
+
<dc:title>Open Rights Group</dc:title>
|
2192
|
+
</rdf:Description>
|
2193
|
+
|
2194
|
+
<rdf:Description rdf:about="http://www.opml.org">
|
2195
|
+
<dc:title xml:lang="en">OPML</dc:title>
|
2196
|
+
</rdf:Description>
|
2197
|
+
|
2198
|
+
<rdf:Description rdf:about="http://www.php.net">
|
2199
|
+
<dc:title xml:lang="en">PHP</dc:title>
|
2200
|
+
</rdf:Description>
|
2201
|
+
|
2202
|
+
<Document rdf:about="http://www.podcast.com">
|
2203
|
+
<dc:lang>en</dc:lang>
|
2204
|
+
<dc:title>Podcast.com</dc:title>
|
2205
|
+
</Document>
|
2206
|
+
|
2207
|
+
<rdf:Description rdf:about="http://www.podtech.net">
|
2208
|
+
<dc:lang>en</dc:lang>
|
2209
|
+
<dc:title>Podtech.net</dc:title>
|
2210
|
+
</rdf:Description>
|
2211
|
+
|
2212
|
+
<rdf:Description rdf:about="http://www.python.org">
|
2213
|
+
<dc:title xml:lang="en">Python</dc:title>
|
2214
|
+
</rdf:Description>
|
2215
|
+
|
2216
|
+
<rdf:Description rdf:about="http://www.ruby-lang.org">
|
2217
|
+
<dc:title xml:lang="en">Ruby</dc:title>
|
2218
|
+
</rdf:Description>
|
2219
|
+
|
2220
|
+
<rdf:Description rdf:about="http://www.rubyonrails.org">
|
2221
|
+
<dc:title xml:lang="en">Ruby on Rails</dc:title>
|
2222
|
+
</rdf:Description>
|
2223
|
+
|
2224
|
+
<Document rdf:about="http://www.scripting.com">
|
2225
|
+
<dc:lang>en</dc:lang>
|
2226
|
+
<dc:title>Scripting News</dc:title>
|
2227
|
+
<blog:tool rdf:resource="http://support.opml.org"/>
|
2228
|
+
<rdfs:seeAlso rdf:resource="http://www.scripting.com/rss.xml"/>
|
2229
|
+
</Document>
|
2230
|
+
|
2231
|
+
<rss:channel rdf:about="http://www.scripting.com/rss.xml">
|
2232
|
+
</rss:channel>
|
2233
|
+
|
2234
|
+
<Document rdf:about="http://www.technorati.com">
|
2235
|
+
<dc:lang>en</dc:lang>
|
2236
|
+
<dc:name>Technorati</dc:name>
|
2237
|
+
</Document>
|
2238
|
+
|
2239
|
+
<rss:channel rdf:about="http://www.thelondonbiker.com/blog/?feed=rss2">
|
2240
|
+
</rss:channel>
|
2241
|
+
|
2242
|
+
<Document rdf:about="http://www.tomrafteryit.net">
|
2243
|
+
<dc:lang>en</dc:lang>
|
2244
|
+
</Document>
|
2245
|
+
|
2246
|
+
<Document rdf:about="http://www.toptensources.com">
|
2247
|
+
<dc:lang>en</dc:lang>
|
2248
|
+
<dc:title>Top Ten Sources</dc:title>
|
2249
|
+
</Document>
|
2250
|
+
|
2251
|
+
<rdf:Description rdf:about="http://www.w3.org/2001/sw/">
|
2252
|
+
<dc:title xml:lang="en">Semantic Web</dc:title>
|
2253
|
+
</rdf:Description>
|
2254
|
+
|
2255
|
+
<rdf:Description rdf:about="http://www.w3.org/RDF/">
|
2256
|
+
<dc:title xml:lang="en">RDF</dc:title>
|
2257
|
+
</rdf:Description>
|
2258
|
+
|
2259
|
+
<rdf:Description rdf:about="http://www.xml.com">
|
2260
|
+
<dc:title xml:lang="en">XML</dc:title>
|
2261
|
+
</rdf:Description>
|
2262
|
+
|
2263
|
+
<Document rdf:about="http://yeastradio.podshow.com">
|
2264
|
+
<dc:lang>en</dc:lang>
|
2265
|
+
<dc:title>Yeast Radio</dc:title>
|
2266
|
+
</Document>
|
2267
|
+
</rdf:RDF>
|