From 8e248789dc6fbc7bb459ac4e8236a804908be8d7 Mon Sep 17 00:00:00 2001 From: Graham Higgins Date: Wed, 25 May 2022 19:15:35 +0100 Subject: [PATCH] Fix trix parser to allow lowercase `trix`, add tests (#1966) Changed TriX parser to allow `trix` and `TriX` The RDFLib TriX parser currently only accepts TriX documents conforming to the the [Nokia-published XSD](https://web.archive.org/web/20040821093939/http://swdev.nokia.com/trix/trix-1.0.xsd) which specifies (the mixed-case) `TriX`, contradicting the [W3C-published XSD spec for TriX](https://www.w3.org/2004/03/trix/trix-1/trix-1.0.xsd) which specifies (the lower-case) `trix`. We should accept both. We were also a bit light on a TriX test suite for exercising the parser, so I recruited some TriX test fixtures from NG4J and Jena and fleshed out the TriX test suite, using the W3C "Manifest"-style approach. --- rdflib/plugins/parsers/trix.py | 4 +- test/data/suites/trix/README | 42 + test/data/suites/trix/extension1.xsl | 20 + test/data/suites/trix/extension2.xsl | 33 + test/data/suites/trix/manifest.ttl | 726 +++++ test/data/suites/trix/test_trix.py | 127 + test/data/suites/trix/trix-aperture.nq | 24 + .../{aperture.trix => trix-aperture.trix} | 0 .../trix/trix-bnode-context-obj-bnodes.nq | 2 + .../trix/trix-bnode-context-obj-bnodes.trix | 18 + test/data/suites/trix/trix-bnode-context.nq | 2 + test/data/suites/trix/trix-bnode-context.trix | 18 + test/data/suites/trix/trix-example.nq | 485 ++++ test/data/suites/trix/trix-example.trix | 2475 +++++++++++++++++ test/data/suites/trix/trix-jena-01.nq | 0 test/data/suites/trix/trix-jena-01.trix | 4 + test/data/suites/trix/trix-jena-02.nq | 0 test/data/suites/trix/trix-jena-02.trix | 4 + test/data/suites/trix/trix-jena-03.nq | 0 test/data/suites/trix/trix-jena-03.trix | 7 + test/data/suites/trix/trix-jena-04.nq | 1 + test/data/suites/trix/trix-jena-04.trix | 9 + test/data/suites/trix/trix-jena-05.nq | 1 + test/data/suites/trix/trix-jena-05.trix | 10 + test/data/suites/trix/trix-jena-06.nq | 1 + test/data/suites/trix/trix-jena-06.trix | 10 + test/data/suites/trix/trix-jena-10.nq | 6 + test/data/suites/trix/trix-jena-10.trix | 36 + test/data/suites/trix/trix-jena-11.nq | 1 + test/data/suites/trix/trix-jena-11.trix | 13 + test/data/suites/trix/trix-jena-12.nq | 1 + test/data/suites/trix/trix-jena-12.trix | 14 + test/data/suites/trix/trix-jena-13.nq | 1 + test/data/suites/trix/trix-jena-13.trix | 13 + test/data/suites/trix/trix-jena-14.nq | 1 + test/data/suites/trix/trix-jena-14.trix | 20 + test/data/suites/trix/trix-jena-15.nq | 3 + test/data/suites/trix/trix-jena-15.trix | 21 + test/data/suites/trix/trix-jena-bad-00.trix | 4 + test/data/suites/trix/trix-jena-bad-01.trix | 6 + test/data/suites/trix/trix-jena-bad-02.trix | 7 + test/data/suites/trix/trix-jena-bad-03.trix | 8 + test/data/suites/trix/trix-jena-bad-04.trix | 10 + test/data/suites/trix/trix-jena-bad-05.trix | 11 + test/data/suites/trix/trix-jena-bad-06.trix | 10 + test/data/suites/trix/trix-jena-bad-07.trix | 7 + test/data/suites/trix/trix-jena-bad-08.trix | 11 + test/data/suites/trix/trix-jena-bad-09.trix | 11 + test/data/suites/trix/trix-jena-bad-10.trix | 9 + test/data/suites/trix/trix-jena-ex-1.trix | 26 + test/data/suites/trix/trix-jena-ex-2.trix | 32 + test/data/suites/trix/trix-jena-ex-3.trix | 30 + test/data/suites/trix/trix-jena-ex-4.trix | 34 + test/data/suites/trix/trix-jena-ex-5.trix | 42 + test/data/suites/trix/trix-jena-ns-1.nq | 2 + test/data/suites/trix/trix-jena-ns-1.trix | 27 + test/data/suites/trix/trix-jena-ns-2.nq | 2 + test/data/suites/trix/trix-jena-ns-2.trix | 26 + test/data/suites/trix/trix-jena-star-1.nq | 2 + test/data/suites/trix/trix-jena-star-1.trix | 22 + test/data/suites/trix/trix-jena-star-2.nq | 4 + test/data/suites/trix/trix-jena-star-2.trix | 62 + .../trix/trix-jena-star-bad-asserted-1.trix | 11 + .../trix/trix-jena-star-bad-asserted-2.trix | 9 + .../suites/trix/trix-jena-star-bad-emb-1.trix | 15 + .../suites/trix/trix-jena-star-bad-emb-2.trix | 17 + .../trix/trix-jena-star-bad-emb-nested-1.trix | 20 + .../trix/trix-jena-star-bad-emb-nested-2.trix | 16 + .../trix/trix-jena-star-bad-emb-nested-3.trix | 19 + test/data/suites/trix/trix-jena-w3c-1.nq | 0 test/data/suites/trix/trix-jena-w3c-1.trix | 2 + test/data/suites/trix/trix-jena-w3c-2.nq | 1 + test/data/suites/trix/trix-jena-w3c-2.trix | 9 + .../trix/trix-ng4j-alternateencoding.nq | 1 + .../trix/trix-ng4j-alternateencoding.trix | 10 + test/data/suites/trix/trix-ng4j-blanknodes.nq | 2 + .../suites/trix/trix-ng4j-blanknodes.trix | 14 + .../data/suites/trix/trix-ng4j-blanknodes2.nq | 2 + .../suites/trix/trix-ng4j-blanknodes2.trix | 14 + .../trix/trix-ng4j-datatyperequired.trix | 9 + .../trix/trix-ng4j-emptynamedgraph.trix | 5 + test/data/suites/trix/trix-ng4j-escape.nq | 1 + test/data/suites/trix/trix-ng4j-escape.trix | 10 + test/data/suites/trix/trix-ng4j-extended.nq | 1 + test/data/suites/trix/trix-ng4j-extended.trix | 11 + .../trix/trix-ng4j-ignoremultiplegraphs.nq | 3 + .../trix/trix-ng4j-ignoremultiplegraphs.trix | 26 + .../trix/trix-ng4j-ignorexmlcomments.nq | 1 + .../trix/trix-ng4j-ignorexmlcomments.trix | 9 + .../suites/trix/trix-ng4j-literalsubject.trix | 9 + .../data/suites/trix/trix-ng4j-malformed.trix | 1 + .../trix/trix-ng4j-malformedgraphuri.trix | 10 + .../trix/trix-ng4j-malformedobjecturi.trix | 9 + .../trix/trix-ng4j-malformedpredicateuri.trix | 9 + .../trix/trix-ng4j-malformedsubjecturi.trix | 9 + test/data/suites/trix/trix-ng4j-minimal.trix | 1 + .../suites/trix/trix-ng4j-missingnamespace.nq | 1 + .../trix/trix-ng4j-missingnamespace.trix | 9 + .../data/suites/trix/trix-ng4j-namedgraphs.nq | 2 + .../suites/trix/trix-ng4j-namedgraphs.trix | 19 + .../suites/trix/trix-ng4j-objectnodetypes.nq | 5 + .../trix/trix-ng4j-objectnodetypes.trix | 29 + .../suites/trix/trix-ng4j-relativeuris.nq | 1 + .../suites/trix/trix-ng4j-relativeuris.trix | 10 + .../suites/trix/trix-ng4j-singletriple.nq | 1 + .../suites/trix/trix-ng4j-singletriple.trix | 9 + .../suites/trix/trix-ng4j-specialchars.nq | 1 + .../suites/trix/trix-ng4j-specialchars.trix | 9 + .../suites/trix/trix-ng4j-subjectnodetypes.nq | 2 + .../trix/trix-ng4j-subjectnodetypes.trix | 29 + test/data/suites/trix/trix-ng4j-test-01.nq | 28 + .../{ng4jtest.trix => trix-ng4j-test-01.trix} | 0 test/data/suites/trix/trix-ng4j-test-02.nq | 2 + test/data/suites/trix/trix-ng4j-test-02.trix | 19 + .../suites/trix/trix-ng4j-twoemptygraphs.trix | 6 + .../trix/trix-ng4j-wrongpredicatetype.trix | 9 + .../suites/trix/trix-nokia-example-2010.nq | 19 + .../suites/trix/trix-nokia-example-2010.trix | 158 ++ test/data/suites/trix/trix-nokia-example.nq | 19 + ...a_example.trix => trix-nokia-example.trix} | 0 test/data/suites/trix/trix-nquads-example.nq | 485 ++++ .../data/suites/trix/trix-nquads-example.trix | 2475 +++++++++++++++++ test/data/suites/trix/trix-test1.nq | 5 + test/data/suites/trix/trix-test1.trix | 42 + test/data/suites/trix/trix-test2.nq | 400 +++ test/data/suites/trix/trix-test2.trix | 2065 ++++++++++++++ test/data/suites/trix/trix-test3.nq | 7 + test/data/suites/trix/trix-test3.trix | 46 + test/data/suites/trix/trix-test4.nq | 50 + test/data/suites/trix/trix-test4.trix | 264 ++ test/data/suites/trix/trix-test5.nq | 227 ++ test/data/suites/trix/trix-test5.trix | 1149 ++++++++ test/test_parsers/test_trix_parse.py | 8 +- test/utils/_RDFT.py | 4 + test/utils/manifest.py | 13 +- 135 files changed, 12464 insertions(+), 7 deletions(-) create mode 100644 test/data/suites/trix/README create mode 100644 test/data/suites/trix/extension1.xsl create mode 100644 test/data/suites/trix/extension2.xsl create mode 100644 test/data/suites/trix/manifest.ttl create mode 100644 test/data/suites/trix/test_trix.py create mode 100644 test/data/suites/trix/trix-aperture.nq rename test/data/suites/trix/{aperture.trix => trix-aperture.trix} (100%) create mode 100644 test/data/suites/trix/trix-bnode-context-obj-bnodes.nq create mode 100644 test/data/suites/trix/trix-bnode-context-obj-bnodes.trix create mode 100644 test/data/suites/trix/trix-bnode-context.nq create mode 100644 test/data/suites/trix/trix-bnode-context.trix create mode 100644 test/data/suites/trix/trix-example.nq create mode 100644 test/data/suites/trix/trix-example.trix create mode 100644 test/data/suites/trix/trix-jena-01.nq create mode 100644 test/data/suites/trix/trix-jena-01.trix create mode 100644 test/data/suites/trix/trix-jena-02.nq create mode 100644 test/data/suites/trix/trix-jena-02.trix create mode 100644 test/data/suites/trix/trix-jena-03.nq create mode 100644 test/data/suites/trix/trix-jena-03.trix create mode 100644 test/data/suites/trix/trix-jena-04.nq create mode 100644 test/data/suites/trix/trix-jena-04.trix create mode 100644 test/data/suites/trix/trix-jena-05.nq create mode 100644 test/data/suites/trix/trix-jena-05.trix create mode 100644 test/data/suites/trix/trix-jena-06.nq create mode 100644 test/data/suites/trix/trix-jena-06.trix create mode 100644 test/data/suites/trix/trix-jena-10.nq create mode 100644 test/data/suites/trix/trix-jena-10.trix create mode 100644 test/data/suites/trix/trix-jena-11.nq create mode 100644 test/data/suites/trix/trix-jena-11.trix create mode 100644 test/data/suites/trix/trix-jena-12.nq create mode 100644 test/data/suites/trix/trix-jena-12.trix create mode 100644 test/data/suites/trix/trix-jena-13.nq create mode 100644 test/data/suites/trix/trix-jena-13.trix create mode 100644 test/data/suites/trix/trix-jena-14.nq create mode 100644 test/data/suites/trix/trix-jena-14.trix create mode 100644 test/data/suites/trix/trix-jena-15.nq create mode 100644 test/data/suites/trix/trix-jena-15.trix create mode 100644 test/data/suites/trix/trix-jena-bad-00.trix create mode 100644 test/data/suites/trix/trix-jena-bad-01.trix create mode 100644 test/data/suites/trix/trix-jena-bad-02.trix create mode 100644 test/data/suites/trix/trix-jena-bad-03.trix create mode 100644 test/data/suites/trix/trix-jena-bad-04.trix create mode 100644 test/data/suites/trix/trix-jena-bad-05.trix create mode 100644 test/data/suites/trix/trix-jena-bad-06.trix create mode 100644 test/data/suites/trix/trix-jena-bad-07.trix create mode 100644 test/data/suites/trix/trix-jena-bad-08.trix create mode 100644 test/data/suites/trix/trix-jena-bad-09.trix create mode 100644 test/data/suites/trix/trix-jena-bad-10.trix create mode 100644 test/data/suites/trix/trix-jena-ex-1.trix create mode 100644 test/data/suites/trix/trix-jena-ex-2.trix create mode 100644 test/data/suites/trix/trix-jena-ex-3.trix create mode 100644 test/data/suites/trix/trix-jena-ex-4.trix create mode 100644 test/data/suites/trix/trix-jena-ex-5.trix create mode 100644 test/data/suites/trix/trix-jena-ns-1.nq create mode 100644 test/data/suites/trix/trix-jena-ns-1.trix create mode 100644 test/data/suites/trix/trix-jena-ns-2.nq create mode 100644 test/data/suites/trix/trix-jena-ns-2.trix create mode 100644 test/data/suites/trix/trix-jena-star-1.nq create mode 100644 test/data/suites/trix/trix-jena-star-1.trix create mode 100644 test/data/suites/trix/trix-jena-star-2.nq create mode 100644 test/data/suites/trix/trix-jena-star-2.trix create mode 100644 test/data/suites/trix/trix-jena-star-bad-asserted-1.trix create mode 100644 test/data/suites/trix/trix-jena-star-bad-asserted-2.trix create mode 100644 test/data/suites/trix/trix-jena-star-bad-emb-1.trix create mode 100644 test/data/suites/trix/trix-jena-star-bad-emb-2.trix create mode 100644 test/data/suites/trix/trix-jena-star-bad-emb-nested-1.trix create mode 100644 test/data/suites/trix/trix-jena-star-bad-emb-nested-2.trix create mode 100644 test/data/suites/trix/trix-jena-star-bad-emb-nested-3.trix create mode 100644 test/data/suites/trix/trix-jena-w3c-1.nq create mode 100644 test/data/suites/trix/trix-jena-w3c-1.trix create mode 100644 test/data/suites/trix/trix-jena-w3c-2.nq create mode 100644 test/data/suites/trix/trix-jena-w3c-2.trix create mode 100644 test/data/suites/trix/trix-ng4j-alternateencoding.nq create mode 100644 test/data/suites/trix/trix-ng4j-alternateencoding.trix create mode 100644 test/data/suites/trix/trix-ng4j-blanknodes.nq create mode 100644 test/data/suites/trix/trix-ng4j-blanknodes.trix create mode 100644 test/data/suites/trix/trix-ng4j-blanknodes2.nq create mode 100644 test/data/suites/trix/trix-ng4j-blanknodes2.trix create mode 100644 test/data/suites/trix/trix-ng4j-datatyperequired.trix create mode 100644 test/data/suites/trix/trix-ng4j-emptynamedgraph.trix create mode 100644 test/data/suites/trix/trix-ng4j-escape.nq create mode 100644 test/data/suites/trix/trix-ng4j-escape.trix create mode 100644 test/data/suites/trix/trix-ng4j-extended.nq create mode 100644 test/data/suites/trix/trix-ng4j-extended.trix create mode 100644 test/data/suites/trix/trix-ng4j-ignoremultiplegraphs.nq create mode 100644 test/data/suites/trix/trix-ng4j-ignoremultiplegraphs.trix create mode 100644 test/data/suites/trix/trix-ng4j-ignorexmlcomments.nq create mode 100644 test/data/suites/trix/trix-ng4j-ignorexmlcomments.trix create mode 100644 test/data/suites/trix/trix-ng4j-literalsubject.trix create mode 100644 test/data/suites/trix/trix-ng4j-malformed.trix create mode 100644 test/data/suites/trix/trix-ng4j-malformedgraphuri.trix create mode 100644 test/data/suites/trix/trix-ng4j-malformedobjecturi.trix create mode 100644 test/data/suites/trix/trix-ng4j-malformedpredicateuri.trix create mode 100644 test/data/suites/trix/trix-ng4j-malformedsubjecturi.trix create mode 100644 test/data/suites/trix/trix-ng4j-minimal.trix create mode 100644 test/data/suites/trix/trix-ng4j-missingnamespace.nq create mode 100644 test/data/suites/trix/trix-ng4j-missingnamespace.trix create mode 100644 test/data/suites/trix/trix-ng4j-namedgraphs.nq create mode 100644 test/data/suites/trix/trix-ng4j-namedgraphs.trix create mode 100644 test/data/suites/trix/trix-ng4j-objectnodetypes.nq create mode 100644 test/data/suites/trix/trix-ng4j-objectnodetypes.trix create mode 100644 test/data/suites/trix/trix-ng4j-relativeuris.nq create mode 100644 test/data/suites/trix/trix-ng4j-relativeuris.trix create mode 100644 test/data/suites/trix/trix-ng4j-singletriple.nq create mode 100644 test/data/suites/trix/trix-ng4j-singletriple.trix create mode 100644 test/data/suites/trix/trix-ng4j-specialchars.nq create mode 100644 test/data/suites/trix/trix-ng4j-specialchars.trix create mode 100644 test/data/suites/trix/trix-ng4j-subjectnodetypes.nq create mode 100644 test/data/suites/trix/trix-ng4j-subjectnodetypes.trix create mode 100644 test/data/suites/trix/trix-ng4j-test-01.nq rename test/data/suites/trix/{ng4jtest.trix => trix-ng4j-test-01.trix} (100%) create mode 100644 test/data/suites/trix/trix-ng4j-test-02.nq create mode 100644 test/data/suites/trix/trix-ng4j-test-02.trix create mode 100644 test/data/suites/trix/trix-ng4j-twoemptygraphs.trix create mode 100644 test/data/suites/trix/trix-ng4j-wrongpredicatetype.trix create mode 100644 test/data/suites/trix/trix-nokia-example-2010.nq create mode 100644 test/data/suites/trix/trix-nokia-example-2010.trix create mode 100644 test/data/suites/trix/trix-nokia-example.nq rename test/data/suites/trix/{nokia_example.trix => trix-nokia-example.trix} (100%) create mode 100644 test/data/suites/trix/trix-nquads-example.nq create mode 100644 test/data/suites/trix/trix-nquads-example.trix create mode 100644 test/data/suites/trix/trix-test1.nq create mode 100644 test/data/suites/trix/trix-test1.trix create mode 100644 test/data/suites/trix/trix-test2.nq create mode 100644 test/data/suites/trix/trix-test2.trix create mode 100644 test/data/suites/trix/trix-test3.nq create mode 100644 test/data/suites/trix/trix-test3.trix create mode 100644 test/data/suites/trix/trix-test4.nq create mode 100644 test/data/suites/trix/trix-test4.trix create mode 100644 test/data/suites/trix/trix-test5.nq create mode 100644 test/data/suites/trix/trix-test5.trix diff --git a/rdflib/plugins/parsers/trix.py b/rdflib/plugins/parsers/trix.py index aacfcbd88..5529b0fbd 100644 --- a/rdflib/plugins/parsers/trix.py +++ b/rdflib/plugins/parsers/trix.py @@ -56,7 +56,7 @@ def startElementNS(self, name, qname, attrs): % (name[0], TRIXNS) ) - if name[1] == "TriX": + if name[1].lower() == "trix": if self.state == 0: self.state = 1 else: @@ -205,7 +205,7 @@ def endElementNS(self, name, qname): self.graph = None self.state = 1 - elif name[1] == "TriX": + elif name[1].lower() == "trix": self.state = 0 else: diff --git a/test/data/suites/trix/README b/test/data/suites/trix/README new file mode 100644 index 000000000..6652126c6 --- /dev/null +++ b/test/data/suites/trix/README @@ -0,0 +1,42 @@ +This README is adapted from the README of the W3C RDF Working Group's +TriG test suite and modified for use with RDFLib's informally-assembled +TrIX test suite. This test suite contains three kinds of tests: + + Evaluation (rdft:TestTrixEval) - a pair of an input trig file + and reference ntriples file. + + Positive syntax (rdft:TestTrixPositiveSyntax) - an input trig + file with no syntax errors. + + Negative syntax (rdft:TestTrixNegativeSyntax) - an input trig + file with at least one syntax error. + +The manifest.ttl file in this directory lists all of the tests in the +RDFLib TriX test suite. Each test is one of the above tests. All +tests have a name (mf:name) and an input (mf:action). The Evaluation +tests have an expected result (mf:result). + +• An implementation passes an Evaluation test if it parses the input + into a graph, parses the expecte result into another graph, and + those two graphs are isomorphic (see + ). + +• An implementation passes a positive syntax test if it parses the + input. + +• An implementation passes a negative syntax test if it fails to parse + the input. + +The IRI for the test suite is . +Per RFC 3986 section 5.1.3, the base IRI for parsing each file is the +retrieval IRI for that file. For example, the tests trig-subm-01 and +trig-subm-27 require relative IRI resolution against a base of + and + respectively. + + +Adapted from https://github.com/w3c/rdf-tests/blob/main/trig/README, +authors: + +Eric Prud'hommeaux - 11 June 2013. +Gregg Kellogg - 12 June 2013. diff --git a/test/data/suites/trix/extension1.xsl b/test/data/suites/trix/extension1.xsl new file mode 100644 index 000000000..0bf6fcb4b --- /dev/null +++ b/test/data/suites/trix/extension1.xsl @@ -0,0 +1,20 @@ + + + + + + + + ex:a + ex:b + ex:c + + + + + \ No newline at end of file diff --git a/test/data/suites/trix/extension2.xsl b/test/data/suites/trix/extension2.xsl new file mode 100644 index 000000000..148a94d71 --- /dev/null +++ b/test/data/suites/trix/extension2.xsl @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/data/suites/trix/manifest.ttl b/test/data/suites/trix/manifest.ttl new file mode 100644 index 000000000..e3e65bf17 --- /dev/null +++ b/test/data/suites/trix/manifest.ttl @@ -0,0 +1,726 @@ +# TriX tests +## Distributed under both the W3C Test Suite License[1] and the W3C 3- +## clause BSD License[2]. To contribute to a W3C Test Suite, see the +## policies and contribution forms [3] +## +## 1. http://www.w3.org/Consortium/Legal/2008/04-testsuite-license +## 2. http://www.w3.org/Consortium/Legal/2008/03-bsd-license +## 3. http://www.w3.org/2004/10/27-testcases + +@prefix rdf: . +@prefix rdfs: . +@prefix mf: . +@prefix qt: . + +@prefix rdft: . + +<> rdf:type mf:Manifest ; + mf:name "TriX tests" ; + mf:entries + ( + + # Collected tests + <#trix-aperture> + <#trix-bnode-context-obj-bnodes> + <#trix-bnode-context> + <#trix-example> + + <#trix-nokia-example-2010> + <#trix-nokia-example> + <#trix-nquads-example> + + <#trix-jena-01> + <#trix-jena-02> + <#trix-jena-03> + <#trix-jena-04> + <#trix-jena-05> + <#trix-jena-06> + <#trix-jena-10> + <#trix-jena-11> + <#trix-jena-12> + <#trix-jena-13> + <#trix-jena-14> + <#trix-jena-15> + + <#trix-jena-w3c-1> + <#trix-jena-w3c-2> + + <#trix-jena-ns-1> + <#trix-jena-ns-2> + + <#trix-jena-ex-1> + <#trix-jena-ex-2> + <#trix-jena-ex-3> + <#trix-jena-ex-4> + <#trix-jena-ex-5> + + + <#trix-ng4j-test-01> + <#trix-ng4j-test-02> + + <#trix-test1> + <#trix-test2> + <#trix-test3> + <#trix-test4> + <#trix-test5> + + <#trix-ng4j-emptynamedgraph> + <#trix-ng4j-minimal> + <#trix-ng4j-namedgraphs> + <#trix-ng4j-twoemptygraphs> + <#trix-ng4j-alternateencoding> + <#trix-ng4j-blanknodes2> + <#trix-ng4j-blanknodes> + <#trix-ng4j-escape> + <#trix-ng4j-extended> + <#trix-ng4j-ignoremultiplegraphs> + <#trix-ng4j-ignorexmlcomments> + <#trix-ng4j-missingnamespace> + <#trix-ng4j-objectnodetypes> + <#trix-ng4j-relativeuris> + <#trix-ng4j-singletriple> + <#trix-ng4j-specialchars> + + + # Negative syntax tests + + <#trix-ng4j-datatyperequired> + <#trix-ng4j-malformed> + <#trix-ng4j-malformedgraphuri> + <#trix-ng4j-malformedobjecturi> + <#trix-ng4j-malformedpredicateuri> + <#trix-ng4j-malformedsubjecturi> + + + <#trix-jena-bad-00> + <#trix-jena-bad-01> + <#trix-jena-bad-02> + <#trix-jena-bad-03> + <#trix-jena-bad-04> + <#trix-jena-bad-05> + <#trix-jena-bad-06> + <#trix-jena-bad-07> + <#trix-jena-bad-08> + <#trix-jena-bad-09> + <#trix-jena-bad-10> + + # Skipped, NYI + <#trix-jena-star-1> + <#trix-jena-star-2> + <#trix-jena-star-bad-asserted-1> + <#trix-jena-star-bad-asserted-2> + <#trix-jena-star-bad-emb-1> + <#trix-jena-star-bad-emb-2> + <#trix-jena-star-bad-emb-nested-1> + <#trix-jena-star-bad-emb-nested-2> + <#trix-jena-star-bad-emb-nested-3> + ) . + +# TriX tests + +<#trix-jena-01> rdf:type rdft:TestTrixEval ; + mf:name "trix-01" ; + rdfs:comment "Blank source, rubric only" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-02> rdf:type rdft:TestTrixEval ; + mf:name "trix-02" ; + rdfs:comment "Empty default graph element" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-03> rdf:type rdft:TestTrixEval ; + mf:name "trix-03" ; + rdfs:comment "Empty named graph" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-04> rdf:type rdft:TestTrixEval ; + mf:name "trix-04" ; + rdfs:comment "Default graph containing one triple" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-05> rdf:type rdft:TestTrixEval ; + mf:name "trix-05" ; + rdfs:comment "Named graph containing one triple" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-06> rdf:type rdft:TestTrixEval ; + mf:name "trix-06" ; + rdfs:comment "BNode-named graph containing one triple" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-10> rdf:type rdft:TestTrixEval ; + mf:name "trix-10" ; + rdfs:comment "Default graph, with range of object types" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-11> rdf:type rdft:TestTrixEval ; + mf:name "trix-11" ; + rdfs:comment "Default graph with typedLiteral object" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-12> rdf:type rdft:TestTrixEval ; + mf:name "trix-12" ; + rdfs:comment "Default graph, typedLiteral XMLLiteral object has “Words,tags and white space”" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-13> rdf:type rdft:TestTrixEval ; + mf:name "trix-13" ; + rdfs:comment "Default graph typedLiteral XMLLiteral object with namespace" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-14> rdf:type rdft:TestTrixEval ; + mf:name "trix-14" ; + rdfs:comment "Default graph typedLiteral XMLLiteral object with white space and namespaces" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-15> rdf:type rdft:TestTrixEval ; + mf:name "trix-15" ; + rdfs:comment "Default graph with plain- and typed-Literal XMLLiteral objects with ampersanded content" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-w3c-1> rdf:type rdft:TestTrixEval ; + mf:name "trix-jena-w3c-1" ; + rdfs:comment "W3C example, blank content, rubric only" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-w3c-2> rdf:type rdft:TestTrixEval ; + mf:name "trix-jena-w3c-2" ; + rdfs:comment "W3C example, default graph containing one triple" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-ns-1> rdf:type rdft:TestTrixEval ; + mf:name "trix-jena-ns-1" ; + rdfs:comment "TriX with namespaces 1" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-ns-2> rdf:type rdft:TestTrixEval ; + mf:name "trix-jena-ns-2" ; + rdfs:comment "TriX with namespaces 2" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-ex-1> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-jena-ex-1" ; + rdfs:comment "Example 1 from the Carroll paper http://www.hpl.hp.com/techreports/2004/HPL-2004-56.html" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-ex-2> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-jena-ex-2" ; + rdfs:comment "Example 2 from the Carroll paper http://www.hpl.hp.com/techreports/2004/HPL-2004-56.html" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-ex-3> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-jena-ex-3" ; + rdfs:comment "Example 3 from the Carroll paper http://www.hpl.hp.com/techreports/2004/HPL-2004-56.html" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-ex-4> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-jena-ex-4" ; + rdfs:comment "Example 4 from the Carroll paper http://www.hpl.hp.com/techreports/2004/HPL-2004-56.html" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-ex-5> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-jena-ex-5" ; + rdfs:comment "Example 5 from the Carroll paper http://www.hpl.hp.com/techreports/2004/HPL-2004-56.html" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +# TriX tests +<#trix-aperture> rdf:type rdft:TestTrixEval ; + mf:name "aperture" ; + rdfs:comment "aperture" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-bnode-context-obj-bnodes> rdf:type rdft:TestTrixEval ; + mf:name "bnode-context-obj-bnodes" ; + rdfs:comment "bnode-context-obj-bnodes" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-bnode-context> rdf:type rdft:TestTrixEval ; + mf:name "bnode-context" ; + rdfs:comment "bnode-context" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-example> rdf:type rdft:TestTrixEval ; + mf:name "example" ; + rdfs:comment "bibliographica content example" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + + +<#trix-ng4j-test-01> rdf:type rdft:TestTrixEval ; + mf:name "ng4j-test-01" ; + rdfs:comment "Test fixture data copied from ng4j documentation http://wbsg.informatik.uni-mannheim.de/bizer/ng4j/example_output.txt" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-test-02> rdf:type rdft:TestTrixEval ; + mf:name "ng4j-test-02" ; + rdfs:comment "Test fixture data copied from ng4j sources" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-nokia-example-2010> rdf:type rdft:TestTrixEval ; + mf:name "nokia-example-2010" ; + rdfs:comment "Nokia example content updated in 2010, see https://web.archive.org/web/20100223084922/http://sw.nokia.com/trix/examples.xml" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-nokia-example> rdf:type rdft:TestTrixEval ; + mf:name "nokia-example" ; + rdfs:comment "Examples from “https://www.hpl.hp.com/techreports/2004/HPL-2004-56.pdf” published by Nokia (https://web.archive.org/web/20040604190103/http://sw.nokia.com/trix/examples.xml)" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-nquads-example> rdf:type rdft:TestTrixEval ; + mf:name "nquads-example" ; + rdfs:comment "Real-world output http://bibliographica.org" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-test1> rdf:type rdft:TestTrixEval ; + mf:name "test1" ; + rdfs:comment "NQuads test data serialized as TriX" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-test2> rdf:type rdft:TestTrixEval ; + mf:name "test2" ; + rdfs:comment "unirioja rkb explorer listing" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-test3> rdf:type rdft:TestTrixEval ; + mf:name "test3" ; + rdfs:comment "NQuads test data serialized as TriX" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-test4> rdf:type rdft:TestTrixEval ; + mf:name "test4" ; + rdfs:comment "Real-world output" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-test5> rdf:type rdft:TestTrixEval ; + mf:name "test5" ; + rdfs:comment "Real-world output from http://linkeddata.few.vu.nl/googleart" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +# Named Graphs for Jena + +<#trix-ng4j-emptynamedgraph> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-ng4j-emptynamedgraph" ; + rdfs:comment "trix-ng4j-emptynamedgraph" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-minimal> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-ng4j-minimal" ; + rdfs:comment "trix-ng4j-minimal" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-namedgraphs> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-ng4j-namedgraphs" ; + rdfs:comment "trix-ng4j-namedgraphs" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-twoemptygraphs> rdf:type rdft:TestTrixPositiveSyntax ; + mf:name "trix-ng4j-twoemptygraphs" ; + rdfs:comment "trix-ng4j-twoemptygraphs" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-alternateencoding> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-alternateencoding" ; + rdfs:comment "trix-ng4j-alternateencoding" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-blanknodes2> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-blanknodes2" ; + rdfs:comment "trix-ng4j-blanknodes2" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-blanknodes> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-blanknodes" ; + rdfs:comment "trix-ng4j-blanknodes" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-escape> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-escape" ; + rdfs:comment "trix-ng4j-escape" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-extended> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-extended" ; + rdfs:comment "trix-ng4j-extended" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-ignoremultiplegraphs> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-ignoremultiplegraphs" ; + rdfs:comment "trix-ng4j-ignoremultiplegraphs" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-ignorexmlcomments> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-ignorexmlcomments" ; + rdfs:comment "trix-ng4j-ignorexmlcomments" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-missingnamespace> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-missingnamespace" ; + rdfs:comment "trix-ng4j-missingnamespace" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-objectnodetypes> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-objectnodetypes" ; + rdfs:comment "trix-ng4j-objectnodetypes" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-relativeuris> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-relativeuris" ; + rdfs:comment "trix-ng4j-relativeuris" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-singletriple> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-singletriple" ; + rdfs:comment "trix-ng4j-singletriple" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-ng4j-specialchars> rdf:type rdft:TestTrixEval ; + mf:name "trix-ng4j-specialchars" ; + rdfs:comment "trix-ng4j-specialchars" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +# Negative syntax tests + +<#trix-ng4j-subjectnodetypes> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-ng4j-subjectnodetypes" ; + rdfs:comment "plain and typed Literals as subject nodes" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-datatyperequired> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-ng4j-datatyperequired" ; + rdfs:comment "typedLiteral without datatype" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-malformed> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-ng4j-malformed" ; + rdfs:comment "trix-ng4j-malformed" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-malformedgraphuri> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-ng4j-malformedgraphuri" ; + rdfs:comment "trix-ng4j-malformedgraphuri" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-malformedobjecturi> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-ng4j-malformedobjecturi" ; + rdfs:comment "trix-ng4j-malformedobjecturi" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-malformedpredicateuri> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-ng4j-malformedpredicateuri" ; + rdfs:comment "trix-ng4j-malformedpredicateuri" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-malformedsubjecturi> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-ng4j-malformedsubjecturi" ; + rdfs:comment "trix-ng4j-malformedsubjecturi" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-ng4j-namedgraphs> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-ng4j-namedgraphs" ; + rdfs:comment "A named graph and a doubly-named graph" ; + rdft:approval rdft:Approved ; + mf:action ; + . + + + + + +<#trix-jena-bad-00> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-00" ; + rdfs:comment "trix-jena-bad-00" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-01> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-01" ; + rdfs:comment "trix-jena-bad-01" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-02> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-02" ; + rdfs:comment "trix-jena-bad-02" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-03> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-03" ; + rdfs:comment "trix-jena-bad-03" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-04> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-04" ; + rdfs:comment "trix-jena-bad-04" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-05> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-05" ; + rdfs:comment "trix-jena-bad-05" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-06> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-06" ; + rdfs:comment "trix-jena-bad-06" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-07> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-07" ; + rdfs:comment "trix-jena-bad-07" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-08> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-08" ; + rdfs:comment "trix-jena-bad-08" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-09> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-09" ; + rdfs:comment "trix-jena-bad-09" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-bad-10> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-bad-10" ; + rdfs:comment "trix-jena-bad-10" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-star-1> rdf:type rdft:TestTrixEval ; + mf:name "trix-jena-star-1" ; + rdfs:comment "trix-jena-star-1" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-star-2> rdf:type rdft:TestTrixEval ; + mf:name "trix-jena-star-2" ; + rdfs:comment "trix-jena-star-2" ; + rdft:approval rdft:Approved ; + mf:action ; + mf:result ; + . + +<#trix-jena-star-bad-asserted-1> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-star-bad-asserted-1" ; + rdfs:comment "trix-jena-star-bad-asserted-1" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-star-bad-asserted-2> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-star-bad-asserted-2" ; + rdfs:comment "trix-jena-star-bad-asserted-2" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-star-bad-emb-1> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-star-bad-emb-1" ; + rdfs:comment "trix-jena-star-bad-emb-1" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-star-bad-emb-2> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-star-bad-emb-2" ; + rdfs:comment "trix-jena-star-bad-emb-2" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-star-bad-emb-nested-1> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-star-bad-emb-nested-1" ; + rdfs:comment "trix-jena-star-bad-emb-nested-1" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-star-bad-emb-nested-2> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-star-bad-emb-nested-2" ; + rdfs:comment "trix-jena-star-bad-emb-nested-2" ; + rdft:approval rdft:Approved ; + mf:action ; + . + +<#trix-jena-star-bad-emb-nested-3> rdf:type rdft:TestTrixNegativeSyntax ; + mf:name "trix-jena-star-bad-emb-nested-3" ; + rdfs:comment "trix-jena-star-bad-emb-nested-3" ; + rdft:approval rdft:Approved ; + mf:action ; + . diff --git a/test/data/suites/trix/test_trix.py b/test/data/suites/trix/test_trix.py new file mode 100644 index 000000000..e434cdfdb --- /dev/null +++ b/test/data/suites/trix/test_trix.py @@ -0,0 +1,127 @@ +"""This runs the TriX tests for RDFLib's informally-assembled TriX +test suite.""" +from test.data import TEST_DATA_DIR +from test.utils.manifest import RDFTest, read_manifest +from test.utils.namespace import RDFT +from typing import Callable, Dict + +import pytest + +from rdflib import ConjunctiveGraph, logger +from rdflib.compare import graph_diff, isomorphic +from rdflib.namespace import split_uri +from rdflib.term import Node, URIRef + +verbose = False + + +def trix(test: RDFTest): + g = ConjunctiveGraph() + + try: + + base = "https://rdflib.github.io/tests/trix/" + split_uri(test.action)[1] + + g.parse(test.action, publicID=base, format="trix") + + if not test.syntax: + raise AssertionError("Input shouldn't have parsed!") + + if test.result: # eval test + logger.debug(f"TEST RESULT {test.result}") + res = ConjunctiveGraph() + assert not isinstance(test.result, tuple) + res.parse(test.result, publicID=base) + + if verbose: + both, first, second = graph_diff(g, res) + if not first and not second: + return + print("Diff:") + + print("TriX Only:") + for t in first: + print(t) + + print("--------------------") + print("NQuads Only") + + for t in second: + print(t) + raise Exception("Graphs do not match!") + + assert isomorphic( + g, res + ), "graphs must be the same, expected\n%s\n, got\n%s" % ( + g.serialize(format="nquads"), + res.serialize(format="nquads"), + ) + + except Exception: + if test.syntax: + raise + + +testers: Dict[Node, Callable[[RDFTest], None]] = { + RDFT.TestTrixPositiveSyntax: trix, + RDFT.TestTrixNegativeSyntax: trix, + RDFT.TestTrixEval: trix, +} + + +# TriX star parsing/serialization not yet implemented for RDFLib +star_skipped = [ + "trix-jena-star-1", + "trix-jena-star-2", + "trix-jena-star-bad-asserted-1", + "trix-jena-star-bad-asserted-2", + "trix-jena-star-bad-emb-1", + "trix-jena-star-bad-emb-2", + "trix-jena-star-bad-emb-nested-1", + "trix-jena-star-bad-emb-nested-2", + "trix-jena-star-bad-emb-nested-3", +] + +eval_skipped = [ + "trix-jena-04", # Missing namespace + "trix-jena-12", # tags in Literal value + "trix-jena-13", # tags in Literal value + "trix-jena-14", # tags in Literal value + "trix-jena-ns-1", # Multiple namespaces + "trix-jena-ns-2", # Multiple namespaces + "trix-jena-w3c-2", # Missing namespace + "trix-ng4j-relativeuris", # Can't create test file of expected +] + + +positive_syntax_skipped = [ + "trix-jena-ex-2", # Multiple namespaces + "trix-jena-ex-3", # tags in Literal value + "trix-jena-ex-4", # tags in Literal value + "trix-ng4j-extended", # xslt processing required + "trix-ng4j-missingnamespace", # Missing namespace +] + + +EXPECTED_FAILURES: Dict[str, str] = {} + +for test in star_skipped: + EXPECTED_FAILURES[test] = "TriX Star NYI" + + +for test in positive_syntax_skipped: + EXPECTED_FAILURES[test] = "Known issue with TriX parser" + +for test in eval_skipped: + EXPECTED_FAILURES[test] = "Known issue with TriX eval" + + +@pytest.mark.parametrize( + "rdf_test_uri, type, rdf_test", + read_manifest(TEST_DATA_DIR / "suites" / "trix" / "manifest.ttl"), +) +def test_manifest(rdf_test_uri: URIRef, type: Node, rdf_test: RDFTest): + suffix = rdf_test_uri.split("#")[1] + if suffix in EXPECTED_FAILURES: + pytest.xfail(EXPECTED_FAILURES[suffix]) + testers[type](rdf_test) diff --git a/test/data/suites/trix/trix-aperture.nq b/test/data/suites/trix/trix-aperture.nq new file mode 100644 index 000000000..7a4e635fe --- /dev/null +++ b/test/data/suites/trix/trix-aperture.nq @@ -0,0 +1,24 @@ + . + . + . + "file2" . + "2006-10-04T15:16:20"^^ . + . + . + . + "file1" . + "2006-10-04T15:16:15"^^ . + . + . + . + . + . + "aperture" . + "2006-10-04T15:16:17"^^ . + . + . + . + . + . + "test" . + "2006-10-04T15:16:20"^^ . diff --git a/test/data/suites/trix/aperture.trix b/test/data/suites/trix/trix-aperture.trix similarity index 100% rename from test/data/suites/trix/aperture.trix rename to test/data/suites/trix/trix-aperture.trix diff --git a/test/data/suites/trix/trix-bnode-context-obj-bnodes.nq b/test/data/suites/trix/trix-bnode-context-obj-bnodes.nq new file mode 100644 index 000000000..2a7eaf42a --- /dev/null +++ b/test/data/suites/trix/trix-bnode-context-obj-bnodes.nq @@ -0,0 +1,2 @@ + _:Bfd9a552e4bf34437c4f545372bb7bd04 . +_:Bc34d770557edc0189c3793fbc18add73 "Michele" . diff --git a/test/data/suites/trix/trix-bnode-context-obj-bnodes.trix b/test/data/suites/trix/trix-bnode-context-obj-bnodes.trix new file mode 100644 index 000000000..755716e89 --- /dev/null +++ b/test/data/suites/trix/trix-bnode-context-obj-bnodes.trix @@ -0,0 +1,18 @@ + + + http://example.org/alice/foaf3.rdf + + http://example.org/Kevin + http://xmlns.com/foaf/0.1/Friend + fec897de6dcd2f89c6f2ad41320faea6 + + + + http://example.org/alice/foaf2.rdf + + 8aa378ed42733fe43f91b0669674a821 + http://xmlns.com/foaf/0.1/Friend + Michele + + + diff --git a/test/data/suites/trix/trix-bnode-context.nq b/test/data/suites/trix/trix-bnode-context.nq new file mode 100644 index 000000000..f31fb5c30 --- /dev/null +++ b/test/data/suites/trix/trix-bnode-context.nq @@ -0,0 +1,2 @@ +_:B15eac4946f909d3c9d10054a5bc6a600 "Michele" _:B8f83c0e6f66166f18e1707991f8c031f . +_:Bf37dac79cfaa79890fb732745613a10f "Kevin" _:Bc0087d87b13603ccec822fa64047ca17 . diff --git a/test/data/suites/trix/trix-bnode-context.trix b/test/data/suites/trix/trix-bnode-context.trix new file mode 100644 index 000000000..476dfd682 --- /dev/null +++ b/test/data/suites/trix/trix-bnode-context.trix @@ -0,0 +1,18 @@ + + + 3c4f94b0c445c6ef6206e41a0ce6758d + + 8bbb19daa792afdd3ad2f9ccb84b8b50 + http://xmlns.com/foaf/0.1/Friend + Michele + + + + cdfa2ac0b76d8a5cd19990c30457fd5d + + d49c724001e331308b1bea2c44ba0138 + http://xmlns.com/foaf/0.1/Friend + Kevin + + + diff --git a/test/data/suites/trix/trix-example.nq b/test/data/suites/trix/trix-example.nq new file mode 100644 index 000000000..291537a59 --- /dev/null +++ b/test/data/suites/trix/trix-example.nq @@ -0,0 +1,485 @@ + . + . + "Burke, Edmund H." . + . + . + . + . + . + "Burke, Edmund H." . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + "Arco Publications" . + "Arco Publications" . + . + . + . + . + . + "Burgess, Yvonne." . + . + . + . + . + . + "Burgess, Yvonne." . + . + . + . + . + . + . + . + . + . +_:Bfcf32e260a58d1b26977a862e1c81753 "eng"^^ . +_:Bd1a5894a61a174d251d083af864219e0 "xiv, 255 p" . + . + . + "Harvard College Library." . + "Harvard College Library." . + . + . + . + _:B9f5014bfc65fa86088b5909d9f2f0e30 . + . + . + "1967"^^ . + _:B3c029eba054a3ff91d6276987aa754f0 . + _:B275b7526b6dbd0a69570e151e6edacf3 . + _:Bfcf32e260a58d1b26977a862e1c81753 . + "Includes index." . + . + . + _:Ba7519af6c3345712ff6dfc4261b5f878 . + "GBA711489" . + "000580504" . + _:Bd1a5894a61a174d251d083af864219e0 . + . + _:Baba75367d6dbe599e8b219a644c2bc18 . + . + . + . + "The Houghton Library, 1942-1967 : a selection of books and manuscripts in Harvard collections." . + . + . + . +_:B9f5014bfc65fa86088b5909d9f2f0e30 . +_:B9f5014bfc65fa86088b5909d9f2f0e30 "090.097444"^^ . +_:B9f5014bfc65fa86088b5909d9f2f0e30 . +_:B3c029eba054a3ff91d6276987aa754f0 . +_:B3c029eba054a3ff91d6276987aa754f0 "Rare books--Massachusetts--Cambridge." . +_:B3c029eba054a3ff91d6276987aa754f0 . + . + . + . + . + . + . +_:Ba7519af6c3345712ff6dfc4261b5f878 . +_:Ba7519af6c3345712ff6dfc4261b5f878 "Harvard University." . +_:Ba7519af6c3345712ff6dfc4261b5f878 . + "Houghton Library." . + "Houghton Library." . + . +_:Baba75367d6dbe599e8b219a644c2bc18 . +_:Baba75367d6dbe599e8b219a644c2bc18 "Manuscripts--Massachusetts--Cambridge." . +_:Baba75367d6dbe599e8b219a644c2bc18 . +_:B275b7526b6dbd0a69570e151e6edacf3 "Cambridge, Mass" . + . + . + . + . + . + . + . + . + . + . + "Penguin" . + . + . + . + . + . + "Penguin" . + . + . + . +_:Ba98fddf50067ec75c0ef95da0fbdb82d "20 p" . + . + . + . + "Cable & Wireless Porthcurno and Collections Trust" . + "Cable & Wireless Porthcurno and Collections Trust" . + . + . +_:B9fb2bfe865b84773b345cb419aab614a "Porthcurno" . +_:Bfa8de6247410c34cc68fdd432a6fb9b9 . +_:Bfa8de6247410c34cc68fdd432a6fb9b9 "Brunel, Isambard Kingdom, 1806-1859." . +_:Bfa8de6247410c34cc68fdd432a6fb9b9 . + . + . + . + . +_:Bce400faea554028a397c3f3ed51da901 . +_:Bce400faea554028a397c3f3ed51da901 "Great Eastern (Steamship)" . +_:Bce400faea554028a397c3f3ed51da901 . + . + "Cable & Wireless Porthcurno & Collections Trust." . + "Cable & Wireless Porthcurno & Collections Trust." . +_:B419f8a624fe1f46bb43e097c868a8ccd "eng"^^ . + _:Bce400faea554028a397c3f3ed51da901 . + . + . + . + "Originally published to mark the launch in 1858 of the ship, the Great Eastern. Reproduced from an original in the archives of Cable & Wireless at Porthcurno Telegraph Museum in Cornwall." . + "urn:isbn:1905419155" . + _:Bfa8de6247410c34cc68fdd432a6fb9b9 . + . + . + _:B419f8a624fe1f46bb43e097c868a8ccd . + "The wonderful ship that was planned by Isambard Kingdom Brunel." . + _:B9fb2bfe865b84773b345cb419aab614a . + . + . + . + "GBA814723" . + _:Ba98fddf50067ec75c0ef95da0fbdb82d . + . + . + . + . + "c2006" . + "000504490" . + "Originally published: London: Dean & Son, 1858." . + . + . + . + . +_:B4807788357026a5388cbba1f10e512cd "1875"^^ . +_:B4807788357026a5388cbba1f10e512cd . +_:Bcde3d7a954a38bda539150f8da337691 . +_:Bcde3d7a954a38bda539150f8da337691 "1940"^^ . + . + . + . + . + . + "Buchan, John, 1875-1940" . + . + "Buchan, John" . + . + _:Bcde3d7a954a38bda539150f8da337691 . + . + _:B4807788357026a5388cbba1f10e512cd . + . + . + . + . + . + . + . + . + . + . + "Hodder & Stoughton" . + "Hodder & Stoughton" . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + "Cable & Wireless Porthcurno & Collections Trust." . + . + . + . + . + . + "Cable & Wireless Porthcurno & Collections Trust." . + "Hodder & Stoughton" . + "Hodder & Stoughton" . + . + . + . +_:B4807788357026a5388cbba1f10e512cd "1875"^^ . +_:B4807788357026a5388cbba1f10e512cd . +_:Bcde3d7a954a38bda539150f8da337691 "1940"^^ . +_:Bcde3d7a954a38bda539150f8da337691 . + . + . +_:B763a813b5bd62ec4499374b7dbff9491 "|||"^^ . + . + . + . + . +_:B557a02167b5d82ebdb18ce799a5f33e8 "London" . + . + . + "Buchan, John" . + _:B4807788357026a5388cbba1f10e512cd . + _:Bcde3d7a954a38bda539150f8da337691 . + . + "Buchan, John, 1875-1940" . + "A Five-Fold Salute to Adventure. An omnibus volume of the historical novels of J. Buchan. (The Blanket of the Dark.-Witch Wood.-Salute to Adventurers.-Midwinter.-The Free Fishers.)." . + _:B557a02167b5d82ebdb18ce799a5f33e8 . + _:B763a813b5bd62ec4499374b7dbff9491 . + "GBA522580" . + . + . + . + "000512596" . + . + . + . + "1939"^^ . + . + . + . + _:B20851d2bec71e9396b60e8222ecb0706 . + . +_:B20851d2bec71e9396b60e8222ecb0706 "pp. xii. 1307" . + "Cable & Wireless Porthcurno and Collections Trust" . + . + . + . + . + . + . + "Cable & Wireless Porthcurno and Collections Trust" . + . + . + . + . + . + . + . + . + . + . + . + "Augener & Co." . + "Augener & Co." . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . +_:B5efa6199c9d353ffceae8a09772f7dc2 "197 p" . +_:B72d5852e2c2f977481643478e7bf6899 "London" . +_:B6313cc503758c1ed530f297ede140023 . +_:B6313cc503758c1ed530f297ede140023 "823.9936"^^ . +_:B6313cc503758c1ed530f297ede140023 . +_:B346f5aa8d8627c47c9a269da7d586701 "eng"^^ . + . + . +_:Ba95c4f033d6cab27849c5a8cdd69d1e1 "South African fiction (English)" . +_:Ba95c4f033d6cab27849c5a8cdd69d1e1 . +_:Ba95c4f033d6cab27849c5a8cdd69d1e1 . + . + . + "Burgess, Yvonne." . + "Burgess, Yvonne." . + . + . + _:Ba95c4f033d6cab27849c5a8cdd69d1e1 . + _:B5efa6199c9d353ffceae8a09772f7dc2 . + . + "Originally published : Johannesburg : AD Donker, 1973." . + _:B6313cc503758c1ed530f297ede140023 . + . + . + . + _:B346f5aa8d8627c47c9a269da7d586701 . + . + . + "A life to live" . + "GBA479403" . + "urn:isbn:0143024078" . + _:B72d5852e2c2f977481643478e7bf6899 . + . + "2002"^^ . + . + . + "000536125" . + . + . + . + . + . + . + "Penguin" . + "Penguin" . + . + . + . + . + . + . + . + . + "Augener Ltd." . + "Augener Ltd." . + . + . + . + . + . + . + . + . + . +_:B1c11de554dfff074736b22b53996ba77 . +_:B1c11de554dfff074736b22b53996ba77 . +_:B1c11de554dfff074736b22b53996ba77 "Augener & Co.--Indexes." . + . + . + . + "Augener & Co." . + "Augener & Co." . + . + . + . + . + _:B14a27a37101bbff60e2cf919a4c6a786 . + . + _:B1c11de554dfff074736b22b53996ba77 . + . + . + _:Bc0aad689eaf6f478ed8222c1f843cb1c . + . + . + "Title from cover." . + "\"Printed for private circulation\"--p.1." . + "1927"^^ . + _:B311a41539ad455b8d33fb04ddaf24969 . + "000140898" . + . + . + _:Bf975212070c4fb47702d533c35fb3fa4 . + . + "A list of composers, authors, arrangers, etc. represented in the catalogues of Augener Ltd." . + _:B02f856fee0b7c1d3b280dcf23cf1220a . + . + "GBA9C6518" . + . +_:B14a27a37101bbff60e2cf919a4c6a786 "20 p" . + . + "Augener Ltd." . + "Augener Ltd." . +_:Bc0aad689eaf6f478ed8222c1f843cb1c . +_:Bc0aad689eaf6f478ed8222c1f843cb1c . +_:Bc0aad689eaf6f478ed8222c1f843cb1c "Arrangers (Musicians)--Indexes." . + . + . +_:Bf975212070c4fb47702d533c35fb3fa4 "eng"^^ . +_:B02f856fee0b7c1d3b280dcf23cf1220a . +_:B02f856fee0b7c1d3b280dcf23cf1220a . +_:B02f856fee0b7c1d3b280dcf23cf1220a "Composers--Indexes." . +_:B311a41539ad455b8d33fb04ddaf24969 "London" . + . + . + . + . + . + . +_:B51e2e0f2c15503b6e524200cdbce4599 "128 p" . + . + . +_:B9c3a74239d966a26d9002f2df5ea9e3e . +_:B9c3a74239d966a26d9002f2df5ea9e3e . +_:B9c3a74239d966a26d9002f2df5ea9e3e "World War, 1939-1945--Aerial operations, British." . +_:B7f87c261e8de9a4ae89b73d2c99fb316 . +_:B7f87c261e8de9a4ae89b73d2c99fb316 . +_:B7f87c261e8de9a4ae89b73d2c99fb316 "Great Britain. Royal Air Force--Biography." . + "Burke, Edmund H." . + . + "Burke, Edmund H." . +_:B06724b914edb150059c4a94c5e626bdf . +_:B06724b914edb150059c4a94c5e626bdf . +_:B06724b914edb150059c4a94c5e626bdf "Gibson, Guy." . +_:B7e36de669099a93e586cb4ac59d6b8e8 "London" . +_:B2299996bc40d7e065dea3e133abf2e55 "eng"^^ . +_:B428ae623d3995f1ddf7c043e88604a82 . +_:B428ae623d3995f1ddf7c043e88604a82 . +_:B428ae623d3995f1ddf7c043e88604a82 "Air pilots, Military--Great Britain--Biography." . + . + . + "Arco Publications" . + . + "Arco Publications" . + _:B2299996bc40d7e065dea3e133abf2e55 . + . + _:B428ae623d3995f1ddf7c043e88604a82 . + _:B06724b914edb150059c4a94c5e626bdf . + "Guy Gibson VC" . + . + . + . + . + _:B51e2e0f2c15503b6e524200cdbce4599 . + _:B9c3a74239d966a26d9002f2df5ea9e3e . + . + . + _:B7e36de669099a93e586cb4ac59d6b8e8 . + "000537740" . + . + "1961"^^ . + _:B8decc98e3f586e8dc1fc42788a7927bc . + . + . + _:B7f87c261e8de9a4ae89b73d2c99fb316 . + "GB6122745" . +_:B8decc98e3f586e8dc1fc42788a7927bc . +_:B8decc98e3f586e8dc1fc42788a7927bc . +_:B8decc98e3f586e8dc1fc42788a7927bc "940.544941"^^ . + . + . diff --git a/test/data/suites/trix/trix-example.trix b/test/data/suites/trix/trix-example.trix new file mode 100644 index 000000000..5563d54f7 --- /dev/null +++ b/test/data/suites/trix/trix-example.trix @@ -0,0 +1,2475 @@ + + + http://bibliographica.org/entity/E10008 + + http://bibliographica.org/entity/E10008.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entity/E10008 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/name + Burke, Edmund H. + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.html + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.n3 + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.nt + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.rdf + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.ttl + + + http://bibliographica.org/entity/E10008 + http://www.w3.org/2004/02/skos/core#prefLabel + Burke, Edmund H. + + + http://bibliographica.org/entity/E10008.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entity/E10008.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entity/E10008.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entity/E10008.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + + http://bibliographica.org/entity/E10009 + + http://bibliographica.org/entity/E10009.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10009.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10009.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10009.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10009 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/name + Arco Publications + + + http://bibliographica.org/entity/E10009 + http://www.w3.org/2004/02/skos/core#prefLabel + Arco Publications + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.n3 + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.ttl + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.rdf + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.nt + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.html + + + http://bibliographica.org/entity/E10009.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + + http://bibliographica.org/entity/E10006 + + http://bibliographica.org/entity/E10006.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entity/E10006 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/name + Burgess, Yvonne. + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.nt + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.ttl + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.n3 + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.html + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.rdf + + + http://bibliographica.org/entity/E10006 + http://www.w3.org/2004/02/skos/core#prefLabel + Burgess, Yvonne. + + + http://bibliographica.org/entity/E10006.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entity/E10006.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entity/E10006.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entity/E10006.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + + http://bibliographica.org/entry/BB2682260 + + 594797b4d12c310636d5b6efbcacb636 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 594797b4d12c310636d5b6efbcacb636 + http://www.w3.org/2004/02/skos/core#prefLabel + Rare books--Massachusetts--Cambridge. + + + 594797b4d12c310636d5b6efbcacb636 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + dc107b4cccd6b2a8dcad2e88f0687342 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + dc107b4cccd6b2a8dcad2e88f0687342 + http://www.w3.org/2004/02/skos/core#prefLabel + Harvard University. + + + dc107b4cccd6b2a8dcad2e88f0687342 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + http://bibliographica.org/entity/E10011 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10011 + http://www.w3.org/2004/02/skos/core#prefLabel + Harvard College Library. + + + http://bibliographica.org/entity/E10011 + http://xmlns.com/foaf/0.1/name + Harvard College Library. + + + http://bibliographica.org/entry/BB2682260.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.rdf + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.html + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.nt + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/extent + 2562f87cf643014dc4909bcb8edaeeea + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/subject + dc107b4cccd6b2a8dcad2e88f0687342 + + + http://bibliographica.org/entry/BB2682260 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682260 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + dac495e468aec4f0262d16b07d5fb4d8 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/issued + 1967 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/subject + c68cdeb9436e6c41b612f0085b0329d4 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/language + 1fbbb103b7a1587a8584e75fe2fa8f13 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/description + Includes index. + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/subject + 3b0f2da837a8c88fe84b3c250e582e8b + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.ttl + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/ontology/bibo/identifier + GBA711489 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10010 + + + http://bibliographica.org/entry/BB2682260 + http://open.vocab.org/terms/blid + 000580504 + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.n3 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10011 + + + http://bibliographica.org/entry/BB2682260 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/subject + 594797b4d12c310636d5b6efbcacb636 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/title + The Houghton Library, 1942-1967 : a selection of books and manuscripts in Harvard collections. + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10012 + + + http://bibliographica.org/entry/BB2682260.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + 2562f87cf643014dc4909bcb8edaeeea + http://www.w3.org/2000/01/rdf-schema#label + xiv, 255 p + + + http://bibliographica.org/entry/BB2682260.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + http://bibliographica.org/entry/BB2682260.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + http://bibliographica.org/entry/BB2682260.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + 1fbbb103b7a1587a8584e75fe2fa8f13 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + c68cdeb9436e6c41b612f0085b0329d4 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + c68cdeb9436e6c41b612f0085b0329d4 + http://www.w3.org/2004/02/skos/core#prefLabel + Manuscripts--Massachusetts--Cambridge. + + + c68cdeb9436e6c41b612f0085b0329d4 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + http://bibliographica.org/entity/E10010 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10010 + http://www.w3.org/2004/02/skos/core#prefLabel + Houghton Library. + + + http://bibliographica.org/entity/E10010 + http://xmlns.com/foaf/0.1/name + Houghton Library. + + + dac495e468aec4f0262d16b07d5fb4d8 + http://www.w3.org/2000/01/rdf-schema#label + Cambridge, Mass + + + 3b0f2da837a8c88fe84b3c250e582e8b + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 3b0f2da837a8c88fe84b3c250e582e8b + http://www.w3.org/2004/02/skos/core#notation + 090.097444 + + + 3b0f2da837a8c88fe84b3c250e582e8b + http://www.w3.org/2004/02/skos/core#inScheme + http://dewey.info/scheme/e22 + + + + http://bibliographica.org/entity/E10007 + + http://bibliographica.org/entity/E10007.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10007 + http://www.w3.org/2004/02/skos/core#prefLabel + Penguin + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.html + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.n3 + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.ttl + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.rdf + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.nt + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/name + Penguin + + + + http://bibliographica.org/entry/BB2682251 + + http://bibliographica.org/entry/BB2682251.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682251.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/name + Cable & Wireless Porthcurno and Collections Trust + + + http://bibliographica.org/entity/E10003 + http://www.w3.org/2004/02/skos/core#prefLabel + Cable & Wireless Porthcurno and Collections Trust + + + http://bibliographica.org/entity/E10003 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entry/BB2682251.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682251.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + d4f0c89667f907787785ed8404ee3474 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + a1253fd06114638df9db132c7fe4aa71 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + a1253fd06114638df9db132c7fe4aa71 + http://www.w3.org/2004/02/skos/core#prefLabel + Brunel, Isambard Kingdom, 1806-1859. + + + a1253fd06114638df9db132c7fe4aa71 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + http://bibliographica.org/entry/BB2682251.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + 885cb50be8fc79399e2fd62561a5da15 + http://www.w3.org/2000/01/rdf-schema#label + 20 p + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.html + + + http://bibliographica.org/entry/BB2682251 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.ttl + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/subject + a1253fd06114638df9db132c7fe4aa71 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/description + Originally published to mark the launch in 1858 of the ship, the Great Eastern. Reproduced from an original in the archives of Cable & Wireless at Porthcurno Telegraph Museum in Cornwall. + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/ontology/bibo/isbn + urn:isbn:1905419155 + + + http://bibliographica.org/entry/BB2682251 + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://www4.wiwiss.fu-berlin.de/bookmashup/books/1905419155 + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.nt + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/title + The wonderful ship that was planned by Isambard Kingdom Brunel. + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/language + d4f0c89667f907787785ed8404ee3474 + + + http://bibliographica.org/entry/BB2682251 + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://purl.org/NET/book/isbn/1905419155#book + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/ontology/bibo/identifier + GBA814723 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/extent + 885cb50be8fc79399e2fd62561a5da15 + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.n3 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/subject + 6b1b415ae96d2fefaab2c092f4183f8d + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.rdf + + + http://bibliographica.org/entry/BB2682251 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/issued + c2006 + + + http://bibliographica.org/entry/BB2682251 + http://open.vocab.org/terms/blid + 000504490 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/description + Originally published: London: Dean & Son, 1858. + + + http://bibliographica.org/entry/BB2682251 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + f4d7c1d46fd76875a857fa234052884a + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/name + Cable & Wireless Porthcurno & Collections Trust. + + + http://bibliographica.org/entity/E10002 + http://www.w3.org/2004/02/skos/core#prefLabel + Cable & Wireless Porthcurno & Collections Trust. + + + http://bibliographica.org/entity/E10002 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + f4d7c1d46fd76875a857fa234052884a + http://www.w3.org/2000/01/rdf-schema#label + Porthcurno + + + 6b1b415ae96d2fefaab2c092f4183f8d + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 6b1b415ae96d2fefaab2c092f4183f8d + http://www.w3.org/2004/02/skos/core#prefLabel + Great Eastern (Steamship) + + + 6b1b415ae96d2fefaab2c092f4183f8d + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + + http://bibliographica.org/entity/E10004 + + http://bibliographica.org/entity/E10004.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + http://bibliographica.org/entity/E10004.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + http://bibliographica.org/entity/E10004.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + 4caceb580b645d8840dbae56ec7543a4 + http://purl.org/vocab/bio/0.1/date + 1940 + + + 4caceb580b645d8840dbae56ec7543a4 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/vocab/bio/0.1/Death + + + http://bibliographica.org/entity/E10004.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.rdf + + + http://bibliographica.org/entity/E10004 + http://www.w3.org/2004/02/skos/core#prefLabel + Buchan, John, 1875-1940 + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.ttl + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/name + Buchan, John + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.html + + + http://bibliographica.org/entity/E10004 + http://purl.org/vocab/bio/0.1/event + 4caceb580b645d8840dbae56ec7543a4 + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.nt + + + http://bibliographica.org/entity/E10004 + http://purl.org/vocab/bio/0.1/event + 4205977457863cd6006ca2a00f6033f8 + + + http://bibliographica.org/entity/E10004 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.n3 + + + http://bibliographica.org/entity/E10004.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + 4205977457863cd6006ca2a00f6033f8 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/vocab/bio/0.1/Birth + + + 4205977457863cd6006ca2a00f6033f8 + http://purl.org/vocab/bio/0.1/date + 1875 + + + + http://bibliographica.org/entity/E10005 + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/name + Hodder & Stoughton + + + http://bibliographica.org/entity/E10005 + http://www.w3.org/2004/02/skos/core#prefLabel + Hodder & Stoughton + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.html + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.nt + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.ttl + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.n3 + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.rdf + + + http://bibliographica.org/entity/E10005 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10005.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10005.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10005.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10005.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10005.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + + http://bibliographica.org/entity/E10002 + + http://bibliographica.org/entity/E10002.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002 + http://www.w3.org/2004/02/skos/core#prefLabel + Cable & Wireless Porthcurno & Collections Trust. + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.ttl + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.n3 + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.nt + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.rdf + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.html + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/name + Cable & Wireless Porthcurno & Collections Trust. + + + http://bibliographica.org/entity/E10002 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + + http://bibliographica.org/entry/BB2682253 + + 2c11ed61d29c6d8a949aa3859f050f87 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + ||| + + + http://bibliographica.org/entity/E10005 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10005 + http://www.w3.org/2004/02/skos/core#prefLabel + Hodder & Stoughton + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/name + Hodder & Stoughton + + + http://bibliographica.org/entry/BB2682253.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682253.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + 5dcfe72ad177b8152cef74518f3b75fb + http://www.w3.org/2000/01/rdf-schema#label + London + + + f33948066a3e9359127dd65c74bc7cea + http://www.w3.org/2000/01/rdf-schema#label + pp. xii. 1307 + + + 4caceb580b645d8840dbae56ec7543a4 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/vocab/bio/0.1/Death + + + 4caceb580b645d8840dbae56ec7543a4 + http://purl.org/vocab/bio/0.1/date + 1940 + + + http://bibliographica.org/entry/BB2682253.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682253.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682253.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004 + http://www.w3.org/2004/02/skos/core#prefLabel + Buchan, John, 1875-1940 + + + http://bibliographica.org/entity/E10004 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10004 + http://purl.org/vocab/bio/0.1/event + 4caceb580b645d8840dbae56ec7543a4 + + + http://bibliographica.org/entity/E10004 + http://purl.org/vocab/bio/0.1/event + 4205977457863cd6006ca2a00f6033f8 + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/name + Buchan, John + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/title + A Five-Fold Salute to Adventure. An omnibus volume of the historical novels of J. Buchan. (The Blanket of the Dark.-Witch Wood.-Salute to Adventurers.-Midwinter.-The Free Fishers.). + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/ontology/bibo/identifier + GBA522580 + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.ttl + + + http://bibliographica.org/entry/BB2682253 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.rdf + + + http://bibliographica.org/entry/BB2682253 + http://open.vocab.org/terms/blid + 000512596 + + + http://bibliographica.org/entry/BB2682253 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.n3 + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.nt + + + http://bibliographica.org/entry/BB2682253 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + 5dcfe72ad177b8152cef74518f3b75fb + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/issued + 1939 + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10004 + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/extent + f33948066a3e9359127dd65c74bc7cea + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.html + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/language + 2c11ed61d29c6d8a949aa3859f050f87 + + + 4205977457863cd6006ca2a00f6033f8 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/vocab/bio/0.1/Birth + + + 4205977457863cd6006ca2a00f6033f8 + http://purl.org/vocab/bio/0.1/date + 1875 + + + + http://bibliographica.org/entity/E10003 + + http://bibliographica.org/entity/E10003 + http://www.w3.org/2004/02/skos/core#prefLabel + Cable & Wireless Porthcurno and Collections Trust + + + http://bibliographica.org/entity/E10003 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.rdf + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.html + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.ttl + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.nt + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.n3 + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/name + Cable & Wireless Porthcurno and Collections Trust + + + http://bibliographica.org/entity/E10003.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entity/E10003.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entity/E10003.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entity/E10003.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entity/E10003.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + + http://bibliographica.org/entity/E10000 + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.nt + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.rdf + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.html + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.ttl + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.n3 + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/name + Augener & Co. + + + http://bibliographica.org/entity/E10000 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener & Co. + + + http://bibliographica.org/entity/E10000 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10000.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10000.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10000.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10000.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10000.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + + http://bibliographica.org/entry/BB2682255 + + http://bibliographica.org/entry/BB2682255.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + 682cc32fc49020768ca7f55d94572109 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 682cc32fc49020768ca7f55d94572109 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 682cc32fc49020768ca7f55d94572109 + http://www.w3.org/2004/02/skos/core#prefLabel + South African fiction (English) + + + http://bibliographica.org/entry/BB2682255.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + http://bibliographica.org/entry/BB2682255.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + http://bibliographica.org/entity/E10006 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/name + Burgess, Yvonne. + + + http://bibliographica.org/entity/E10006 + http://www.w3.org/2004/02/skos/core#prefLabel + Burgess, Yvonne. + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.ttl + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.html + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/subject + 682cc32fc49020768ca7f55d94572109 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/subject + 187853659afbfcb91fccb606d093b73c + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.n3 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/description + Originally published : Johannesburg : AD Donker, 1973. + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/extent + 5cbb76bb62d0d96415c71a86a9739909 + + + http://bibliographica.org/entry/BB2682255 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/language + 8d9dba934be25b8dea2297179a5346a8 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682255 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + 4b78721fad20ab1a3c92bcdcd6928f61 + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.nt + + + http://bibliographica.org/entry/BB2682255 + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://www4.wiwiss.fu-berlin.de/bookmashup/books/0143024078 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/title + A life to live + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/ontology/bibo/identifier + GBA479403 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/ontology/bibo/isbn + urn:isbn:0143024078 + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.rdf + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/issued + 2002 + + + http://bibliographica.org/entry/BB2682255 + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://purl.org/NET/book/isbn/0143024078#book + + + http://bibliographica.org/entry/BB2682255 + http://open.vocab.org/terms/blid + 000536125 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entry/BB2682255 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + 8d9dba934be25b8dea2297179a5346a8 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + 187853659afbfcb91fccb606d093b73c + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 187853659afbfcb91fccb606d093b73c + http://www.w3.org/2004/02/skos/core#notation + 823.9936 + + + 187853659afbfcb91fccb606d093b73c + http://www.w3.org/2004/02/skos/core#inScheme + http://dewey.info/scheme/e22 + + + http://bibliographica.org/entry/BB2682255.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + http://bibliographica.org/entry/BB2682255.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + 4b78721fad20ab1a3c92bcdcd6928f61 + http://www.w3.org/2000/01/rdf-schema#label + London + + + 5cbb76bb62d0d96415c71a86a9739909 + http://www.w3.org/2000/01/rdf-schema#label + 197 p + + + http://bibliographica.org/entity/E10007 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/name + Penguin + + + http://bibliographica.org/entity/E10007 + http://www.w3.org/2004/02/skos/core#prefLabel + Penguin + + + + http://bibliographica.org/entity/E10001 + + http://bibliographica.org/entity/E10001.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entity/E10001.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entity/E10001.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.nt + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.n3 + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.ttl + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.html + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.rdf + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/name + Augener Ltd. + + + http://bibliographica.org/entity/E10001 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener Ltd. + + + http://bibliographica.org/entity/E10001 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10001.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entity/E10001.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + + http://bibliographica.org/entry/BB2682246 + + afe834c9c166191936136f951654be06 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener & Co.--Indexes. + + + afe834c9c166191936136f951654be06 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + afe834c9c166191936136f951654be06 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + edfbee9d2d7f54cf03151e9a2afde36f + http://www.w3.org/2000/01/rdf-schema#label + London + + + http://bibliographica.org/entry/BB2682246.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/name + Augener & Co. + + + http://bibliographica.org/entity/E10000 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener & Co. + + + http://bibliographica.org/entity/E10000 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entry/BB2682246.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + http://bibliographica.org/entry/BB2682246.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + b551e4ddc5c8847381e8faf52ce504dc + http://www.w3.org/2004/02/skos/core#prefLabel + Composers--Indexes. + + + b551e4ddc5c8847381e8faf52ce504dc + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + b551e4ddc5c8847381e8faf52ce504dc + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 4e2d0e7c9db043436b0511f9657801cc + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.html + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.nt + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.rdf + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/description + "Printed for private circulation"--p.1. + + + http://bibliographica.org/entry/BB2682246 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + edfbee9d2d7f54cf03151e9a2afde36f + + + http://bibliographica.org/entry/BB2682246 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/description + Title from cover. + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/subject + fdf9f3bcda95c27582b72c41b3413771 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/language + 4e2d0e7c9db043436b0511f9657801cc + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/issued + 1927 + + + http://bibliographica.org/entry/BB2682246 + http://open.vocab.org/terms/blid + 000140898 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/subject + afe834c9c166191936136f951654be06 + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.n3 + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.ttl + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/title + A list of composers, authors, arrangers, etc. represented in the catalogues of Augener Ltd. + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/extent + b1ee37446bf756b244aee986e90e3582 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/ontology/bibo/identifier + GBA9C6518 + + + http://bibliographica.org/entry/BB2682246 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/subject + b551e4ddc5c8847381e8faf52ce504dc + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/name + Augener Ltd. + + + http://bibliographica.org/entity/E10001 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener Ltd. + + + http://bibliographica.org/entity/E10001 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entry/BB2682246.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + fdf9f3bcda95c27582b72c41b3413771 + http://www.w3.org/2004/02/skos/core#prefLabel + Arrangers (Musicians)--Indexes. + + + fdf9f3bcda95c27582b72c41b3413771 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + fdf9f3bcda95c27582b72c41b3413771 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + b1ee37446bf756b244aee986e90e3582 + http://www.w3.org/2000/01/rdf-schema#label + 20 p + + + http://bibliographica.org/entry/BB2682246.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + + http://bibliographica.org/entry/BB2682258 + + http://bibliographica.org/entry/BB2682258.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + http://bibliographica.org/entry/BB2682258.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + 025faa7f47c977c8d92ab0e3e09d5c6b + http://www.w3.org/2004/02/skos/core#prefLabel + Air pilots, Military--Great Britain--Biography. + + + 025faa7f47c977c8d92ab0e3e09d5c6b + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 025faa7f47c977c8d92ab0e3e09d5c6b + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + c3a659d21fd83b626319c9ec4df46dbc + http://www.w3.org/2004/02/skos/core#prefLabel + Gibson, Guy. + + + c3a659d21fd83b626319c9ec4df46dbc + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + c3a659d21fd83b626319c9ec4df46dbc + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + http://bibliographica.org/entry/BB2682258.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + 07dc925ed40c1c1c0cd8944cc702a743 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + http://bibliographica.org/entity/E10008 + http://www.w3.org/2004/02/skos/core#prefLabel + Burke, Edmund H. + + + http://bibliographica.org/entity/E10008 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/name + Burke, Edmund H. + + + 16b9b61297d038f4b83bd033855acc97 + http://www.w3.org/2004/02/skos/core#prefLabel + Great Britain. Royal Air Force--Biography. + + + 16b9b61297d038f4b83bd033855acc97 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 16b9b61297d038f4b83bd033855acc97 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 2eb206a13edf9b05dba793c9f732a518 + http://www.w3.org/2000/01/rdf-schema#label + London + + + ee6c0bb71f80f3f3eecfb1a880720662 + http://www.w3.org/2004/02/skos/core#notation + 940.544941 + + + ee6c0bb71f80f3f3eecfb1a880720662 + http://www.w3.org/2004/02/skos/core#inScheme + http://dewey.info/scheme/e18 + + + ee6c0bb71f80f3f3eecfb1a880720662 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 05565a877f199b6270ce007294a2a2fc + http://www.w3.org/2004/02/skos/core#prefLabel + World War, 1939-1945--Aerial operations, British. + + + 05565a877f199b6270ce007294a2a2fc + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 05565a877f199b6270ce007294a2a2fc + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.nt + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + c3a659d21fd83b626319c9ec4df46dbc + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + ee6c0bb71f80f3f3eecfb1a880720662 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + 16b9b61297d038f4b83bd033855acc97 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/title + Guy Gibson VC + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/extent + f5ee60da5e8756e5712efb7bbbff2d56 + + + http://bibliographica.org/entry/BB2682258 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entry/BB2682258 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + 2eb206a13edf9b05dba793c9f732a518 + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.n3 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682258 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/language + 07dc925ed40c1c1c0cd8944cc702a743 + + + http://bibliographica.org/entry/BB2682258 + http://open.vocab.org/terms/blid + 000537740 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/issued + 1961 + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.rdf + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.html + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.ttl + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + 025faa7f47c977c8d92ab0e3e09d5c6b + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + 05565a877f199b6270ce007294a2a2fc + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/ontology/bibo/identifier + GB6122745 + + + http://bibliographica.org/entity/E10009 + http://www.w3.org/2004/02/skos/core#prefLabel + Arco Publications + + + http://bibliographica.org/entity/E10009 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/name + Arco Publications + + + http://bibliographica.org/entry/BB2682258.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + http://bibliographica.org/entry/BB2682258.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + f5ee60da5e8756e5712efb7bbbff2d56 + http://www.w3.org/2000/01/rdf-schema#label + 128 p + + + diff --git a/test/data/suites/trix/trix-jena-01.nq b/test/data/suites/trix/trix-jena-01.nq new file mode 100644 index 000000000..e69de29bb diff --git a/test/data/suites/trix/trix-jena-01.trix b/test/data/suites/trix/trix-jena-01.trix new file mode 100644 index 000000000..a6efd47e2 --- /dev/null +++ b/test/data/suites/trix/trix-jena-01.trix @@ -0,0 +1,4 @@ + + + + diff --git a/test/data/suites/trix/trix-jena-02.nq b/test/data/suites/trix/trix-jena-02.nq new file mode 100644 index 000000000..e69de29bb diff --git a/test/data/suites/trix/trix-jena-02.trix b/test/data/suites/trix/trix-jena-02.trix new file mode 100644 index 000000000..63a0a6e9f --- /dev/null +++ b/test/data/suites/trix/trix-jena-02.trix @@ -0,0 +1,4 @@ + + + + diff --git a/test/data/suites/trix/trix-jena-03.nq b/test/data/suites/trix/trix-jena-03.nq new file mode 100644 index 000000000..e69de29bb diff --git a/test/data/suites/trix/trix-jena-03.trix b/test/data/suites/trix/trix-jena-03.trix new file mode 100644 index 000000000..f9aca40b6 --- /dev/null +++ b/test/data/suites/trix/trix-jena-03.trix @@ -0,0 +1,7 @@ + + + + + http://example/test + + diff --git a/test/data/suites/trix/trix-jena-04.nq b/test/data/suites/trix/trix-jena-04.nq new file mode 100644 index 000000000..8628a30bb --- /dev/null +++ b/test/data/suites/trix/trix-jena-04.nq @@ -0,0 +1 @@ + . diff --git a/test/data/suites/trix/trix-jena-04.trix b/test/data/suites/trix/trix-jena-04.trix new file mode 100644 index 000000000..773790339 --- /dev/null +++ b/test/data/suites/trix/trix-jena-04.trix @@ -0,0 +1,9 @@ + + + + http://example.org/s + http://example.org/p + http://example.org/o + + + diff --git a/test/data/suites/trix/trix-jena-05.nq b/test/data/suites/trix/trix-jena-05.nq new file mode 100644 index 000000000..95083a83a --- /dev/null +++ b/test/data/suites/trix/trix-jena-05.nq @@ -0,0 +1 @@ + . diff --git a/test/data/suites/trix/trix-jena-05.trix b/test/data/suites/trix/trix-jena-05.trix new file mode 100644 index 000000000..5239da751 --- /dev/null +++ b/test/data/suites/trix/trix-jena-05.trix @@ -0,0 +1,10 @@ + + + http://example.org/g + + http://example.org/s + http://example.org/p + http://example.org/o + + + diff --git a/test/data/suites/trix/trix-jena-06.nq b/test/data/suites/trix/trix-jena-06.nq new file mode 100644 index 000000000..0b5e9cd10 --- /dev/null +++ b/test/data/suites/trix/trix-jena-06.nq @@ -0,0 +1 @@ + _:Bc5fcdfe0a7c2d5e100f14ce4a8d358ea . diff --git a/test/data/suites/trix/trix-jena-06.trix b/test/data/suites/trix/trix-jena-06.trix new file mode 100644 index 000000000..1440471d0 --- /dev/null +++ b/test/data/suites/trix/trix-jena-06.trix @@ -0,0 +1,10 @@ + + + blank + + http://example.org/s + http://example.org/p + http://example.org/o + + + diff --git a/test/data/suites/trix/trix-jena-10.nq b/test/data/suites/trix/trix-jena-10.nq new file mode 100644 index 000000000..5b3805b45 --- /dev/null +++ b/test/data/suites/trix/trix-jena-10.nq @@ -0,0 +1,6 @@ + . + "object" . + "object"@en-uk . + "12"^^ . + "object"^^ . + _:Bb4e75936fcd899b7dffd494b10f52372 . diff --git a/test/data/suites/trix/trix-jena-10.trix b/test/data/suites/trix/trix-jena-10.trix new file mode 100644 index 000000000..fcb49b138 --- /dev/null +++ b/test/data/suites/trix/trix-jena-10.trix @@ -0,0 +1,36 @@ + + + + + + http://example.org/s + http://example.org/p + http://example.org/o + + + http://example.org/s + http://example.org/p + object + + + http://example.org/s + http://example.org/p + object + + + http://example.org/s + http://example.org/p + 12 + + + http://example.org/s + http://example.org/p + object + + + http://example.org/s + http://example.org/p + blank + + + diff --git a/test/data/suites/trix/trix-jena-11.nq b/test/data/suites/trix/trix-jena-11.nq new file mode 100644 index 000000000..727ccd087 --- /dev/null +++ b/test/data/suites/trix/trix-jena-11.nq @@ -0,0 +1 @@ + "foo"^^ . diff --git a/test/data/suites/trix/trix-jena-11.trix b/test/data/suites/trix/trix-jena-11.trix new file mode 100644 index 000000000..b3b5dd602 --- /dev/null +++ b/test/data/suites/trix/trix-jena-11.trix @@ -0,0 +1,13 @@ + + + + + + http://example.org/s + http://example.org/p + foo + + + diff --git a/test/data/suites/trix/trix-jena-12.nq b/test/data/suites/trix/trix-jena-12.nq new file mode 100644 index 000000000..a80a72f79 --- /dev/null +++ b/test/data/suites/trix/trix-jena-12.nq @@ -0,0 +1 @@ + "\n\tWords,tags and white space.\n "^^ . diff --git a/test/data/suites/trix/trix-jena-12.trix b/test/data/suites/trix/trix-jena-12.trix new file mode 100644 index 000000000..9caaee873 --- /dev/null +++ b/test/data/suites/trix/trix-jena-12.trix @@ -0,0 +1,14 @@ + + + + + + http://example.org/s + http://example.org/p + + Words,tags and white space. + + + + diff --git a/test/data/suites/trix/trix-jena-13.nq b/test/data/suites/trix/trix-jena-13.nq new file mode 100644 index 000000000..bef6f7570 --- /dev/null +++ b/test/data/suites/trix/trix-jena-13.nq @@ -0,0 +1 @@ + "ABC"^^ . diff --git a/test/data/suites/trix/trix-jena-13.trix b/test/data/suites/trix/trix-jena-13.trix new file mode 100644 index 000000000..a3e61853d --- /dev/null +++ b/test/data/suites/trix/trix-jena-13.trix @@ -0,0 +1,13 @@ + + + + + + http://example.org/s + http://example.org/p + ABC + + + diff --git a/test/data/suites/trix/trix-jena-14.nq b/test/data/suites/trix/trix-jena-14.nq new file mode 100644 index 000000000..8ecd3e942 --- /dev/null +++ b/test/data/suites/trix/trix-jena-14.nq @@ -0,0 +1 @@ + "\n\t0\n\t\n\t A\n\t B2\n\t C\n\t\n\t9\n "^^ . diff --git a/test/data/suites/trix/trix-jena-14.trix b/test/data/suites/trix/trix-jena-14.trix new file mode 100644 index 000000000..495388493 --- /dev/null +++ b/test/data/suites/trix/trix-jena-14.trix @@ -0,0 +1,20 @@ + + + + + + http://example.org/s + http://example.org/p + + 0 + + A + B2 + C + + 9 + + + + diff --git a/test/data/suites/trix/trix-jena-15.nq b/test/data/suites/trix/trix-jena-15.nq new file mode 100644 index 000000000..d699ffa33 --- /dev/null +++ b/test/data/suites/trix/trix-jena-15.nq @@ -0,0 +1,3 @@ + "<&>" . + "<&>"@en . + "<&>"^^ . diff --git a/test/data/suites/trix/trix-jena-15.trix b/test/data/suites/trix/trix-jena-15.trix new file mode 100644 index 000000000..da4450a33 --- /dev/null +++ b/test/data/suites/trix/trix-jena-15.trix @@ -0,0 +1,21 @@ + + + + + + http://example.org/s + http://example.org/p + <&> + + + http://example.org/s + http://example.org/p + <&> + + + http://example.org/s + http://example.org/p + <&> + + + diff --git a/test/data/suites/trix/trix-jena-bad-00.trix b/test/data/suites/trix/trix-jena-bad-00.trix new file mode 100644 index 000000000..a6efd47e2 --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-00.trix @@ -0,0 +1,4 @@ + + + + diff --git a/test/data/suites/trix/trix-jena-bad-01.trix b/test/data/suites/trix/trix-jena-bad-01.trix new file mode 100644 index 000000000..fe7f0eaae --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-01.trix @@ -0,0 +1,6 @@ + + + + + + diff --git a/test/data/suites/trix/trix-jena-bad-02.trix b/test/data/suites/trix/trix-jena-bad-02.trix new file mode 100644 index 000000000..942d18745 --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-02.trix @@ -0,0 +1,7 @@ + + + + http://example.org/s + + + diff --git a/test/data/suites/trix/trix-jena-bad-03.trix b/test/data/suites/trix/trix-jena-bad-03.trix new file mode 100644 index 000000000..6cc9b8267 --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-03.trix @@ -0,0 +1,8 @@ + + + + http://example.org/s + http://example.org/p + + + diff --git a/test/data/suites/trix/trix-jena-bad-04.trix b/test/data/suites/trix/trix-jena-bad-04.trix new file mode 100644 index 000000000..d93306047 --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-04.trix @@ -0,0 +1,10 @@ + + + + http://example.org/s + http://example.org/p + http://example.org/o1 + http://example.org/o2 + + + diff --git a/test/data/suites/trix/trix-jena-bad-05.trix b/test/data/suites/trix/trix-jena-bad-05.trix new file mode 100644 index 000000000..cad8a5c30 --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-05.trix @@ -0,0 +1,11 @@ + + + http://example.org/g1 + http://example.org/g2 + + http://example.org/s + http://example.org/p + http://example.org/o + + + diff --git a/test/data/suites/trix/trix-jena-bad-06.trix b/test/data/suites/trix/trix-jena-bad-06.trix new file mode 100644 index 000000000..8a1f78e62 --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-06.trix @@ -0,0 +1,10 @@ + + + string + + http://example.org/s + http://example.org/p + http://example.org/o + + + diff --git a/test/data/suites/trix/trix-jena-bad-07.trix b/test/data/suites/trix/trix-jena-bad-07.trix new file mode 100644 index 000000000..58bcc4722 --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-07.trix @@ -0,0 +1,7 @@ + + + http://example.org/s + http://example.org/p + http://example.org/o + + diff --git a/test/data/suites/trix/trix-jena-bad-08.trix b/test/data/suites/trix/trix-jena-bad-08.trix new file mode 100644 index 000000000..94e2b1ffa --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-08.trix @@ -0,0 +1,11 @@ + + + + + http://example.org/s + http://example.org/p + http://example.org/o + + + + diff --git a/test/data/suites/trix/trix-jena-bad-09.trix b/test/data/suites/trix/trix-jena-bad-09.trix new file mode 100644 index 000000000..e77a7dd52 --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-09.trix @@ -0,0 +1,11 @@ + + + + + http://example.org/s + http://example.org/p + http://example.org/o + + + + diff --git a/test/data/suites/trix/trix-jena-bad-10.trix b/test/data/suites/trix/trix-jena-bad-10.trix new file mode 100644 index 000000000..dad7e888b --- /dev/null +++ b/test/data/suites/trix/trix-jena-bad-10.trix @@ -0,0 +1,9 @@ + + + + http://example.org/s + http://example.org/p + http://example.org/o + + + diff --git a/test/data/suites/trix/trix-jena-ex-1.trix b/test/data/suites/trix/trix-jena-ex-1.trix new file mode 100644 index 000000000..131389098 --- /dev/null +++ b/test/data/suites/trix/trix-jena-ex-1.trix @@ -0,0 +1,26 @@ + + + + http://example.org/graph1 + + http://example.org/Bob + http://example.org/wife + http://example.org/Mary + + + http://example.org/Bob + http://example.org/name + Bob + + + http://example.org/Mary + http://example.org/age + 32 + + + \ No newline at end of file diff --git a/test/data/suites/trix/trix-jena-ex-2.trix b/test/data/suites/trix/trix-jena-ex-2.trix new file mode 100644 index 000000000..dee62ca0c --- /dev/null +++ b/test/data/suites/trix/trix-jena-ex-2.trix @@ -0,0 +1,32 @@ + + + + + + + http://example.org/graph2 + + eg:Bob + eg:wife + eg:Mary + + + eg:Bob + eg:name + Bob + + + eg:Mary + eg:age + 32 + + + diff --git a/test/data/suites/trix/trix-jena-ex-3.trix b/test/data/suites/trix/trix-jena-ex-3.trix new file mode 100644 index 000000000..5ecce1ae9 --- /dev/null +++ b/test/data/suites/trix/trix-jena-ex-3.trix @@ -0,0 +1,30 @@ + + + + http://example.org/graph3 + + http://example.org/aBook + http://purl.org/dc/elements/1.1/title + + + A Good Book + + + + + http://example.org/aBook + http://www.w3.org/2000/01/rdfschema#comment + This is a really good book! + + + http://example.org/graph3 + http://example.org/source + http://example.org/bookdescription.rdf + + + diff --git a/test/data/suites/trix/trix-jena-ex-4.trix b/test/data/suites/trix/trix-jena-ex-4.trix new file mode 100644 index 000000000..cc83b7c0b --- /dev/null +++ b/test/data/suites/trix/trix-jena-ex-4.trix @@ -0,0 +1,34 @@ + + + + + http://example.org/graph4 + + http://example.org/aBook + http://purl.org/dc/elements/1.1/title + + + A Good Book + + + + + http://example.org/aBook + http://www.w3.org/2000/01/rdfschema#comment + This is a really good book! + + + + http://example.org/graph5 + + http://example.org/graph4 + http://example.org/source + http://example.org/bookdescription.rdf + + + diff --git a/test/data/suites/trix/trix-jena-ex-5.trix b/test/data/suites/trix/trix-jena-ex-5.trix new file mode 100644 index 000000000..8be23c82f --- /dev/null +++ b/test/data/suites/trix/trix-jena-ex-5.trix @@ -0,0 +1,42 @@ + + + + + http://example.org/graph6 + + http://example.org/tests/language-tagcase + http://example.org/entailmentRules + http://www.w3.org/1999/02/22-rdf-syntax-ns# + + + http://example.org/tests/language-tagcase + http://example.org/premise + http://example.org/tests/graph1 + + + http://example.org/tests/language-tagcase + http://example.org/conclusion + http://example.org/tests/graph2 + + + + http://example.org/tests/graph1 + + x + http://example.org/property + a + + + + http://example.org/tests/graph2 + + x + http://example.org/property + a + + + diff --git a/test/data/suites/trix/trix-jena-ns-1.nq b/test/data/suites/trix/trix-jena-ns-1.nq new file mode 100644 index 000000000..9ddf23b6d --- /dev/null +++ b/test/data/suites/trix/trix-jena-ns-1.nq @@ -0,0 +1,2 @@ + "123"^^ . +<< >> << >> . diff --git a/test/data/suites/trix/trix-jena-ns-1.trix b/test/data/suites/trix/trix-jena-ns-1.trix new file mode 100644 index 000000000..36e8c8a99 --- /dev/null +++ b/test/data/suites/trix/trix-jena-ns-1.trix @@ -0,0 +1,27 @@ + + + + + + http://example/s + ex:p + 123 + + + + http://example/s + ex:p + ex:o + + ex:embedded + + http://example/s + ex:p + ex:o + + + + diff --git a/test/data/suites/trix/trix-jena-ns-2.nq b/test/data/suites/trix/trix-jena-ns-2.nq new file mode 100644 index 000000000..9ddf23b6d --- /dev/null +++ b/test/data/suites/trix/trix-jena-ns-2.nq @@ -0,0 +1,2 @@ + "123"^^ . +<< >> << >> . diff --git a/test/data/suites/trix/trix-jena-ns-2.trix b/test/data/suites/trix/trix-jena-ns-2.trix new file mode 100644 index 000000000..26d00ace4 --- /dev/null +++ b/test/data/suites/trix/trix-jena-ns-2.trix @@ -0,0 +1,26 @@ + + + + + + :s + ex:p + 123 + + + + :s + ex:p + ex:o + + ex:embedded + + :s + ex:p + ex:o + + + + diff --git a/test/data/suites/trix/trix-jena-star-1.nq b/test/data/suites/trix/trix-jena-star-1.nq new file mode 100644 index 000000000..4c2729bff --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-1.nq @@ -0,0 +1,2 @@ +<< >> . + << >> . diff --git a/test/data/suites/trix/trix-jena-star-1.trix b/test/data/suites/trix/trix-jena-star-1.trix new file mode 100644 index 000000000..b0631fc53 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-1.trix @@ -0,0 +1,22 @@ + + + + + http://example/s + http://example/p + http://example/o + + http://example/subjectEmbedded + http://example/o + + + http://example/s + http://example/objectEmbedded + + http://example/s + http://example/p + http://example/o + + + + diff --git a/test/data/suites/trix/trix-jena-star-2.nq b/test/data/suites/trix/trix-jena-star-2.nq new file mode 100644 index 000000000..374930237 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-2.nq @@ -0,0 +1,4 @@ + << << >> >> . + << << >> >> . +<< << >> >> . +<< << >> >> . diff --git a/test/data/suites/trix/trix-jena-star-2.trix b/test/data/suites/trix/trix-jena-star-2.trix new file mode 100644 index 000000000..988c88450 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-2.trix @@ -0,0 +1,62 @@ + + + + + http://example/rightNestObj + http://example/right + + http://example/s + http://example/p + + http://example/s1 + http://example/p1 + http://example/o1 + + + + + http://example/leftNestObj + http://example/left + + + http://example/s2 + http://example/p2 + http://example/o2 + + http://example/p + http://example/o + + + + + + http://example.org/g + + + http://example/s + http://example/p + + http://example/s1 + http://example/p1 + http://example/o1 + + + http://example/right + http://example/rightNestSubject + + + + + http://example/s2 + http://example/p2 + http://example/o2 + + http://example/p + http://example/o + + http://example/left + http://example/leftNestSubject + + + + diff --git a/test/data/suites/trix/trix-jena-star-bad-asserted-1.trix b/test/data/suites/trix/trix-jena-star-bad-asserted-1.trix new file mode 100644 index 000000000..10a4d04db --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-bad-asserted-1.trix @@ -0,0 +1,11 @@ + + + + + http://example.org/s + http://example.org/p + http://example.org/o1 + http://example.org/o2 + + + diff --git a/test/data/suites/trix/trix-jena-star-bad-asserted-2.trix b/test/data/suites/trix/trix-jena-star-bad-asserted-2.trix new file mode 100644 index 000000000..38ab74342 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-bad-asserted-2.trix @@ -0,0 +1,9 @@ + + + + + http://example.org/s + http://example.org/p + + + diff --git a/test/data/suites/trix/trix-jena-star-bad-emb-1.trix b/test/data/suites/trix/trix-jena-star-bad-emb-1.trix new file mode 100644 index 000000000..a7e66f086 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-bad-emb-1.trix @@ -0,0 +1,15 @@ + + + + + + http://example/EX-1 + http://example/EX-2 + http://example/EX-3 + http://example/EX-4 + + http://example/p + http://example/o1 + + + diff --git a/test/data/suites/trix/trix-jena-star-bad-emb-2.trix b/test/data/suites/trix/trix-jena-star-bad-emb-2.trix new file mode 100644 index 000000000..3237f7b93 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-bad-emb-2.trix @@ -0,0 +1,17 @@ + + + + + + + http://example/EX-1 + http://example/EX-2 + + http://example/p + http://example/o2 + + http://example/p + http://example/o1 + + + diff --git a/test/data/suites/trix/trix-jena-star-bad-emb-nested-1.trix b/test/data/suites/trix/trix-jena-star-bad-emb-nested-1.trix new file mode 100644 index 000000000..222742f13 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-bad-emb-nested-1.trix @@ -0,0 +1,20 @@ + + + + + + + http://example/EX-1 + http://example/EX-2 + http://example/EX-3 + http://example/EX-4 + http://example/EX-5 + + http://example/p + http://example/o2 + + http://example/p + http://example/o1 + + + diff --git a/test/data/suites/trix/trix-jena-star-bad-emb-nested-2.trix b/test/data/suites/trix/trix-jena-star-bad-emb-nested-2.trix new file mode 100644 index 000000000..c3f26f657 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-bad-emb-nested-2.trix @@ -0,0 +1,16 @@ + + + + + + + http://example/EX-1 + + http://example/p + http://example/o2 + + http://example/p + http://example/o1 + + + diff --git a/test/data/suites/trix/trix-jena-star-bad-emb-nested-3.trix b/test/data/suites/trix/trix-jena-star-bad-emb-nested-3.trix new file mode 100644 index 000000000..f8687a614 --- /dev/null +++ b/test/data/suites/trix/trix-jena-star-bad-emb-nested-3.trix @@ -0,0 +1,19 @@ + + + + + + + http://example/s + http://example/p + http://example/o + + http://example/P1 + http://example/P2 + http://example/o2 + + http://example/p + http://example/o1 + + + diff --git a/test/data/suites/trix/trix-jena-w3c-1.nq b/test/data/suites/trix/trix-jena-w3c-1.nq new file mode 100644 index 000000000..e69de29bb diff --git a/test/data/suites/trix/trix-jena-w3c-1.trix b/test/data/suites/trix/trix-jena-w3c-1.trix new file mode 100644 index 000000000..28cd2ad44 --- /dev/null +++ b/test/data/suites/trix/trix-jena-w3c-1.trix @@ -0,0 +1,2 @@ + + diff --git a/test/data/suites/trix/trix-jena-w3c-2.nq b/test/data/suites/trix/trix-jena-w3c-2.nq new file mode 100644 index 000000000..8628a30bb --- /dev/null +++ b/test/data/suites/trix/trix-jena-w3c-2.nq @@ -0,0 +1 @@ + . diff --git a/test/data/suites/trix/trix-jena-w3c-2.trix b/test/data/suites/trix/trix-jena-w3c-2.trix new file mode 100644 index 000000000..77e7537e5 --- /dev/null +++ b/test/data/suites/trix/trix-jena-w3c-2.trix @@ -0,0 +1,9 @@ + + + + http://example.org/s + http://example.org/p + http://example.org/o + + + diff --git a/test/data/suites/trix/trix-ng4j-alternateencoding.nq b/test/data/suites/trix/trix-ng4j-alternateencoding.nq new file mode 100644 index 000000000..e80075f81 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-alternateencoding.nq @@ -0,0 +1 @@ + "ä" . diff --git a/test/data/suites/trix/trix-ng4j-alternateencoding.trix b/test/data/suites/trix/trix-ng4j-alternateencoding.trix new file mode 100644 index 000000000..1a01e597c --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-alternateencoding.trix @@ -0,0 +1,10 @@ + + + + + http://example.org/#foo + http://example.org/#bar + + + + diff --git a/test/data/suites/trix/trix-ng4j-blanknodes.nq b/test/data/suites/trix/trix-ng4j-blanknodes.nq new file mode 100644 index 000000000..2f0722df7 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-blanknodes.nq @@ -0,0 +1,2 @@ +_:Bd4e090fc58cd3d4498d5407842d9488b . + _:Bd4e090fc58cd3d4498d5407842d9488b . diff --git a/test/data/suites/trix/trix-ng4j-blanknodes.trix b/test/data/suites/trix/trix-ng4j-blanknodes.trix new file mode 100644 index 000000000..5da8e0cc9 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-blanknodes.trix @@ -0,0 +1,14 @@ + + + + http://example.org/#foo + http://example.org/#bar + foobar + + + foobar + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-blanknodes2.nq b/test/data/suites/trix/trix-ng4j-blanknodes2.nq new file mode 100644 index 000000000..93cbd24a9 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-blanknodes2.nq @@ -0,0 +1,2 @@ +_:Babb8db95ec37a482ac13667a4c2764f0 . + _:B86791ab32af5c0111958176018460394 . diff --git a/test/data/suites/trix/trix-ng4j-blanknodes2.trix b/test/data/suites/trix/trix-ng4j-blanknodes2.trix new file mode 100644 index 000000000..f77fe5851 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-blanknodes2.trix @@ -0,0 +1,14 @@ + + + + http://example.org/#foo + http://example.org/#bar + foobar + + + different + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-datatyperequired.trix b/test/data/suites/trix/trix-ng4j-datatyperequired.trix new file mode 100644 index 000000000..ce689acee --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-datatyperequired.trix @@ -0,0 +1,9 @@ + + + + http://example.org/#foo + http://example.org/#bar + 123 + + + diff --git a/test/data/suites/trix/trix-ng4j-emptynamedgraph.trix b/test/data/suites/trix/trix-ng4j-emptynamedgraph.trix new file mode 100644 index 000000000..6469b3bb6 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-emptynamedgraph.trix @@ -0,0 +1,5 @@ + + + http://example.org/#graph + + diff --git a/test/data/suites/trix/trix-ng4j-escape.nq b/test/data/suites/trix/trix-ng4j-escape.nq new file mode 100644 index 000000000..9236ad7ae --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-escape.nq @@ -0,0 +1 @@ + "<\"&" . diff --git a/test/data/suites/trix/trix-ng4j-escape.trix b/test/data/suites/trix/trix-ng4j-escape.trix new file mode 100644 index 000000000..3ec59c2f6 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-escape.trix @@ -0,0 +1,10 @@ + + + + + http://example.org/#foo + http://example.org/#bar + <"& + + + \ No newline at end of file diff --git a/test/data/suites/trix/trix-ng4j-extended.nq b/test/data/suites/trix/trix-ng4j-extended.nq new file mode 100644 index 000000000..ad105cf48 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-extended.nq @@ -0,0 +1 @@ + . diff --git a/test/data/suites/trix/trix-ng4j-extended.trix b/test/data/suites/trix/trix-ng4j-extended.trix new file mode 100644 index 000000000..f3f43f1f2 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-extended.trix @@ -0,0 +1,11 @@ + + + + + ex:a + ex:b + ex:c + + + diff --git a/test/data/suites/trix/trix-ng4j-ignoremultiplegraphs.nq b/test/data/suites/trix/trix-ng4j-ignoremultiplegraphs.nq new file mode 100644 index 000000000..977ee4dac --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-ignoremultiplegraphs.nq @@ -0,0 +1,3 @@ + . + . + . diff --git a/test/data/suites/trix/trix-ng4j-ignoremultiplegraphs.trix b/test/data/suites/trix/trix-ng4j-ignoremultiplegraphs.trix new file mode 100644 index 000000000..e74a1a404 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-ignoremultiplegraphs.trix @@ -0,0 +1,26 @@ + + + + http://example.org/#foo1 + http://example.org/#bar1 + http://example.org/#baz1 + + + http://example.org/#foo2 + http://example.org/#bar2 + http://example.org/#baz2 + + + + + http://example.org/#foo1 + http://example.org/#bar1 + http://example.org/#baz1 + + + http://example.org/#foo3 + http://example.org/#bar3 + http://example.org/#baz3 + + + diff --git a/test/data/suites/trix/trix-ng4j-ignorexmlcomments.nq b/test/data/suites/trix/trix-ng4j-ignorexmlcomments.nq new file mode 100644 index 000000000..a7a757692 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-ignorexmlcomments.nq @@ -0,0 +1 @@ + . diff --git a/test/data/suites/trix/trix-ng4j-ignorexmlcomments.trix b/test/data/suites/trix/trix-ng4j-ignorexmlcomments.trix new file mode 100644 index 000000000..78e57828b --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-ignorexmlcomments.trix @@ -0,0 +1,9 @@ + + + + http://example.org/#foo + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-literalsubject.trix b/test/data/suites/trix/trix-ng4j-literalsubject.trix new file mode 100644 index 000000000..fa942970c --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-literalsubject.trix @@ -0,0 +1,9 @@ + + + + foobar + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-malformed.trix b/test/data/suites/trix/trix-ng4j-malformed.trix new file mode 100644 index 000000000..d5a08c8d6 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-malformed.trix @@ -0,0 +1 @@ + diff --git a/test/data/suites/trix/trix-ng4j-malformedgraphuri.trix b/test/data/suites/trix/trix-ng4j-malformedgraphuri.trix new file mode 100644 index 000000000..61f616cf3 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-malformedgraphuri.trix @@ -0,0 +1,10 @@ + + + foo bar + + http://example.org/#foo + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-malformedobjecturi.trix b/test/data/suites/trix/trix-ng4j-malformedobjecturi.trix new file mode 100644 index 000000000..3c5e68777 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-malformedobjecturi.trix @@ -0,0 +1,9 @@ + + + + http://example.org/#foo + http://example.org/#bar + foo bar + + + diff --git a/test/data/suites/trix/trix-ng4j-malformedpredicateuri.trix b/test/data/suites/trix/trix-ng4j-malformedpredicateuri.trix new file mode 100644 index 000000000..8798e79b5 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-malformedpredicateuri.trix @@ -0,0 +1,9 @@ + + + + http://example.org/#foo + foo bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-malformedsubjecturi.trix b/test/data/suites/trix/trix-ng4j-malformedsubjecturi.trix new file mode 100644 index 000000000..b06d5a542 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-malformedsubjecturi.trix @@ -0,0 +1,9 @@ + + + + foo bar + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-minimal.trix b/test/data/suites/trix/trix-ng4j-minimal.trix new file mode 100644 index 000000000..5dcc99fbb --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-minimal.trix @@ -0,0 +1 @@ + diff --git a/test/data/suites/trix/trix-ng4j-missingnamespace.nq b/test/data/suites/trix/trix-ng4j-missingnamespace.nq new file mode 100644 index 000000000..a7a757692 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-missingnamespace.nq @@ -0,0 +1 @@ + . diff --git a/test/data/suites/trix/trix-ng4j-missingnamespace.trix b/test/data/suites/trix/trix-ng4j-missingnamespace.trix new file mode 100644 index 000000000..9e9458e55 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-missingnamespace.trix @@ -0,0 +1,9 @@ + + + + http://example.org/#foo + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-namedgraphs.nq b/test/data/suites/trix/trix-ng4j-namedgraphs.nq new file mode 100644 index 000000000..e376c239b --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-namedgraphs.nq @@ -0,0 +1,2 @@ + . + . diff --git a/test/data/suites/trix/trix-ng4j-namedgraphs.trix b/test/data/suites/trix/trix-ng4j-namedgraphs.trix new file mode 100644 index 000000000..eab973f18 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-namedgraphs.trix @@ -0,0 +1,19 @@ + + + http://example.org/#graph1 + + http://example.org/#foo1 + http://example.org/#bar1 + http://example.org/#baz1 + + + + http://example.org/#graph2 + http://example.org/#graph3 + + http://example.org/#foo2 + http://example.org/#bar2 + http://example.org/#baz2 + + + diff --git a/test/data/suites/trix/trix-ng4j-objectnodetypes.nq b/test/data/suites/trix/trix-ng4j-objectnodetypes.nq new file mode 100644 index 000000000..e901b9a1a --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-objectnodetypes.nq @@ -0,0 +1,5 @@ + "foobar"^^ . + "foobar"@en . + "foobar" . + . + _:Bedb5c30e47483975f4c518c8923f281b . diff --git a/test/data/suites/trix/trix-ng4j-objectnodetypes.trix b/test/data/suites/trix/trix-ng4j-objectnodetypes.trix new file mode 100644 index 000000000..161411317 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-objectnodetypes.trix @@ -0,0 +1,29 @@ + + + + http://example.org/#bar + http://example.org/#baz + foobar + + + http://example.org/#bar + http://example.org/#baz + http://example.org/#foo + + + http://example.org/#bar + http://example.org/#baz + foobar + + + http://example.org/#bar + http://example.org/#baz + foobar + + + http://example.org/#bar + http://example.org/#baz + foobar + + + diff --git a/test/data/suites/trix/trix-ng4j-relativeuris.nq b/test/data/suites/trix/trix-ng4j-relativeuris.nq new file mode 100644 index 000000000..e74498b8a --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-relativeuris.nq @@ -0,0 +1 @@ + . diff --git a/test/data/suites/trix/trix-ng4j-relativeuris.trix b/test/data/suites/trix/trix-ng4j-relativeuris.trix new file mode 100644 index 000000000..19119f11b --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-relativeuris.trix @@ -0,0 +1,10 @@ + + + #graph + + #foo + #bar + #baz + + + diff --git a/test/data/suites/trix/trix-ng4j-singletriple.nq b/test/data/suites/trix/trix-ng4j-singletriple.nq new file mode 100644 index 000000000..a7a757692 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-singletriple.nq @@ -0,0 +1 @@ + . diff --git a/test/data/suites/trix/trix-ng4j-singletriple.trix b/test/data/suites/trix/trix-ng4j-singletriple.trix new file mode 100644 index 000000000..55657b263 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-singletriple.trix @@ -0,0 +1,9 @@ + + + + http://example.org/#foo + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-specialchars.nq b/test/data/suites/trix/trix-ng4j-specialchars.nq new file mode 100644 index 000000000..e80075f81 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-specialchars.nq @@ -0,0 +1 @@ + "ä" . diff --git a/test/data/suites/trix/trix-ng4j-specialchars.trix b/test/data/suites/trix/trix-ng4j-specialchars.trix new file mode 100644 index 000000000..bbda03e3b --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-specialchars.trix @@ -0,0 +1,9 @@ + + + + http://example.org/#foo + http://example.org/#bar + ä + + + diff --git a/test/data/suites/trix/trix-ng4j-subjectnodetypes.nq b/test/data/suites/trix/trix-ng4j-subjectnodetypes.nq new file mode 100644 index 000000000..0336651b6 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-subjectnodetypes.nq @@ -0,0 +1,2 @@ + . +_:B1f644102774b8f3ade2ba369e55bad25 . diff --git a/test/data/suites/trix/trix-ng4j-subjectnodetypes.trix b/test/data/suites/trix/trix-ng4j-subjectnodetypes.trix new file mode 100644 index 000000000..6dfca1646 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-subjectnodetypes.trix @@ -0,0 +1,29 @@ + + + + foobar + http://example.org/#bar + http://example.org/#baz + + + http://example.org/#foo + http://example.org/#bar + http://example.org/#baz + + + foobar + http://example.org/#bar + http://example.org/#baz + + + foobar + http://example.org/#bar + http://example.org/#baz + + + foobar + http://example.org/#bar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-ng4j-test-01.nq b/test/data/suites/trix/trix-ng4j-test-01.nq new file mode 100644 index 000000000..f314d2077 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-test-01.nq @@ -0,0 +1,28 @@ + . + "Yet another really cool description" . + "Yet Another title" . + "2004-11-24" . + . + "A title" . + "2004-11-24" . + . + "A really cool description" . + . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7fff "MIIDvTCCAyagAwIBAgIBADANBgkqhkiG9w0BAQQFADCBoTELMAkGA1UEBhMCVUsxEjAQBgNVBAgT\nCUhhbXBzaGlyZTEUMBIGA1UEBxMLU291dGhhbXB0b24xIjAgBgNVBAoTGVVuaXZlcnNpdHkgb2Yg\nU291dGhhbXB0b24xDTALBgNVBAsTBERTU0UxDjAMBgNVBAMTBURQIENBMSUwIwYJKoZIhvcNAQkB\nFhZlcncwMXJAZWNzLnNvdG9uLmFjLnVrMB4XDTA0MDYwNzE2MDgzN1oXDTA3MDYwNzE2MDgzN1ow\ngaExCzAJBgNVBAYTAlVLMRIwEAYDVQQIEwlIYW1wc2hpcmUxFDASBgNVBAcTC1NvdXRoYW1wdG9u\nMSIwIAYDVQQKExlVbml2ZXJzaXR5IG9mIFNvdXRoYW1wdG9uMQ0wCwYDVQQLEwREU1NFMQ4wDAYD\nVQQDEwVEUCBDQTElMCMGCSqGSIb3DQEJARYWZXJ3MDFyQGVjcy5zb3Rvbi5hYy51azCBnzANBgkq\nhkiG9w0BAQEFAAOBjQAwgYkCgYEAyfD+oqNBCoXIruGbS7JL29flnMBrDwCbLrQYKJKrx5yVZoqW\nunWf77UnkFjYWUqpxpnlMKreBbktoO0SiIUDYSdYpNFgydO80/g1GaClbZFBh0m0JRjCffdXDJt/\nNcPs2Vd1gSitYB6C3rGPuU+Y1BnCFg3vyEksuEHUSzMMeykCAwEAAaOCAQEwgf4wHQYDVR0OBBYE\nFNgZSnEq4PTOTCkBF9U+r15KDHD1MIHOBgNVHSMEgcYwgcOAFNgZSnEq4PTOTCkBF9U+r15KDHD1\noYGnpIGkMIGhMQswCQYDVQQGEwJVSzESMBAGA1UECBMJSGFtcHNoaXJlMRQwEgYDVQQHEwtTb3V0\naGFtcHRvbjEiMCAGA1UEChMZVW5pdmVyc2l0eSBvZiBTb3V0aGFtcHRvbjENMAsGA1UECxMERFNT\nRTEOMAwGA1UEAxMFRFAgQ0ExJTAjBgkqhkiG9w0BCQEWFmVydzAxckBlY3Muc290b24uYWMudWuC\nAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQQFAAOBgQAKKPHTBHuJUNSBcz/2RHzCvYZk2RS4\n4nsQg+jO8CIfKkAVlgEIQXWgouEjztFmj5smIgOfG1ZQQALnAehx8TvNBk5FzvkIyfQ1n1qmuXi7\n0ZR/ZhET31jHabkXUbgIrVMB/4vb3GOI5OCkmdKeUEB58Ver7FrYKZBq7tkLiWfwaw==" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7fff . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffe "f47396:10076d4a0f9:-8000" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffe "AZ8QWEJ05HaDsh4iHYmsJfMDVlVSfTqvvPjNApK4D5Kb4kMS+6GqQuayr04XJ0vTJ4txDbYOf2AN\n2zV09kb2M8CDDxoghSScSmCjMiSzr4CqgP90Gz2R6YPjQIHNzbNidfs/AJzkWDI9cnfwK7ieyQBv\nHqBV574gqx26KvDfoR8=\n" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffe "SHA1WithRSA" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffe "f47396:10076d4a0f9:-7fff" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffe . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d8000 "MIID8zCCA1ygAwIBAgIBAzANBgkqhkiG9w0BAQQFADCBoTELMAkGA1UEBhMCVUsxEjAQBgNVBAgT\nCUhhbXBzaGlyZTEUMBIGA1UEBxMLU291dGhhbXB0b24xIjAgBgNVBAoTGVVuaXZlcnNpdHkgb2Yg\nU291dGhhbXB0b24xDTALBgNVBAsTBERTU0UxDjAMBgNVBAMTBURQIENBMSUwIwYJKoZIhvcNAQkB\nFhZlcncwMXJAZWNzLnNvdG9uLmFjLnVrMB4XDTA0MDYwNzIxMDIzM1oXDTA1MDYwNzIxMDIzM1ow\ngasxCzAJBgNVBAYTAlVLMRIwEAYDVQQIEwlIYW1wc2hpcmUxFDASBgNVBAcTC1NvdXRoYW1wdG9u\nMSIwIAYDVQQKExlVbml2ZXJzaXR5IG9mIFNvdXRoYW1wdG9uMQ0wCwYDVQQLEwREU1NFMRgwFgYD\nVQQDEw9Sb3dsYW5kIFdhdGtpbnMxJTAjBgkqhkiG9w0BCQEWFmVydzAxckBlY3Muc290b24uYWMu\ndWswgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMlBcaqp10bBhIjCdnHg30/LYWQe4hdoHIm0\n4b+REqJWELOJTp23io/+YEmrP+Oym5/HOuWfDPx7j+mS6R/GK7SyafV8qP1fiA8nsOsakj1eR0t8\nypnufUhlVY5G40FIYmTmtgH/gnNXWf0VWCasUjTSmaUWa4+VinhVr2d8P4FjAgMBAAGjggEtMIIB\nKTAJBgNVHRMEAjAAMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0\nZTAdBgNVHQ4EFgQUjrkjaHUEtMqzJBV7MvCkywLpql4wgc4GA1UdIwSBxjCBw4AU2BlKcSrg9M5M\nKQEX1T6vXkoMcPWhgaekgaQwgaExCzAJBgNVBAYTAlVLMRIwEAYDVQQIEwlIYW1wc2hpcmUxFDAS\nBgNVBAcTC1NvdXRoYW1wdG9uMSIwIAYDVQQKExlVbml2ZXJzaXR5IG9mIFNvdXRoYW1wdG9uMQ0w\nCwYDVQQLEwREU1NFMQ4wDAYDVQQDEwVEUCBDQTElMCMGCSqGSIb3DQEJARYWZXJ3MDFyQGVjcy5z\nb3Rvbi5hYy51a4IBADANBgkqhkiG9w0BAQQFAAOBgQB1cOuBoxtpLfBnh7FMZNDgnTDSofvvRoCR\n2aUMnvCDo84rkwbz/jXboP4VDRmmgqAgtjtgqR0PO/ua6pgF46Nax2hx+B+JHtvYuNDB2gUuRqpI\nEJFdIZtF5zZawEkphFL+5N2fZhz6h/JWsqtkWmU7cflRI2luqUC3lmfpsI1zYw==" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d8000 . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffc "MIIDvTCCAyagAwIBAgIBADANBgkqhkiG9w0BAQQFADCBoTELMAkGA1UEBhMCVUsxEjAQBgNVBAgT\nCUhhbXBzaGlyZTEUMBIGA1UEBxMLU291dGhhbXB0b24xIjAgBgNVBAoTGVVuaXZlcnNpdHkgb2Yg\nU291dGhhbXB0b24xDTALBgNVBAsTBERTU0UxDjAMBgNVBAMTBURQIENBMSUwIwYJKoZIhvcNAQkB\nFhZlcncwMXJAZWNzLnNvdG9uLmFjLnVrMB4XDTA0MDYwNzE2MDgzN1oXDTA3MDYwNzE2MDgzN1ow\ngaExCzAJBgNVBAYTAlVLMRIwEAYDVQQIEwlIYW1wc2hpcmUxFDASBgNVBAcTC1NvdXRoYW1wdG9u\nMSIwIAYDVQQKExlVbml2ZXJzaXR5IG9mIFNvdXRoYW1wdG9uMQ0wCwYDVQQLEwREU1NFMQ4wDAYD\nVQQDEwVEUCBDQTElMCMGCSqGSIb3DQEJARYWZXJ3MDFyQGVjcy5zb3Rvbi5hYy51azCBnzANBgkq\nhkiG9w0BAQEFAAOBjQAwgYkCgYEAyfD+oqNBCoXIruGbS7JL29flnMBrDwCbLrQYKJKrx5yVZoqW\nunWf77UnkFjYWUqpxpnlMKreBbktoO0SiIUDYSdYpNFgydO80/g1GaClbZFBh0m0JRjCffdXDJt/\nNcPs2Vd1gSitYB6C3rGPuU+Y1BnCFg3vyEksuEHUSzMMeykCAwEAAaOCAQEwgf4wHQYDVR0OBBYE\nFNgZSnEq4PTOTCkBF9U+r15KDHD1MIHOBgNVHSMEgcYwgcOAFNgZSnEq4PTOTCkBF9U+r15KDHD1\noYGnpIGkMIGhMQswCQYDVQQGEwJVSzESMBAGA1UECBMJSGFtcHNoaXJlMRQwEgYDVQQHEwtTb3V0\naGFtcHRvbjEiMCAGA1UEChMZVW5pdmVyc2l0eSBvZiBTb3V0aGFtcHRvbjENMAsGA1UECxMERFNT\nRTEOMAwGA1UEAxMFRFAgQ0ExJTAjBgkqhkiG9w0BCQEWFmVydzAxckBlY3Muc290b24uYWMudWuC\nAQAwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQQFAAOBgQAKKPHTBHuJUNSBcz/2RHzCvYZk2RS4\n4nsQg+jO8CIfKkAVlgEIQXWgouEjztFmj5smIgOfG1ZQQALnAehx8TvNBk5FzvkIyfQ1n1qmuXi7\n0ZR/ZhET31jHabkXUbgIrVMB/4vb3GOI5OCkmdKeUEB58Ver7FrYKZBq7tkLiWfwaw==" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffc . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffd "MIID8zCCA1ygAwIBAgIBAzANBgkqhkiG9w0BAQQFADCBoTELMAkGA1UEBhMCVUsxEjAQBgNVBAgT\nCUhhbXBzaGlyZTEUMBIGA1UEBxMLU291dGhhbXB0b24xIjAgBgNVBAoTGVVuaXZlcnNpdHkgb2Yg\nU291dGhhbXB0b24xDTALBgNVBAsTBERTU0UxDjAMBgNVBAMTBURQIENBMSUwIwYJKoZIhvcNAQkB\nFhZlcncwMXJAZWNzLnNvdG9uLmFjLnVrMB4XDTA0MDYwNzIxMDIzM1oXDTA1MDYwNzIxMDIzM1ow\ngasxCzAJBgNVBAYTAlVLMRIwEAYDVQQIEwlIYW1wc2hpcmUxFDASBgNVBAcTC1NvdXRoYW1wdG9u\nMSIwIAYDVQQKExlVbml2ZXJzaXR5IG9mIFNvdXRoYW1wdG9uMQ0wCwYDVQQLEwREU1NFMRgwFgYD\nVQQDEw9Sb3dsYW5kIFdhdGtpbnMxJTAjBgkqhkiG9w0BCQEWFmVydzAxckBlY3Muc290b24uYWMu\ndWswgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMlBcaqp10bBhIjCdnHg30/LYWQe4hdoHIm0\n4b+REqJWELOJTp23io/+YEmrP+Oym5/HOuWfDPx7j+mS6R/GK7SyafV8qP1fiA8nsOsakj1eR0t8\nypnufUhlVY5G40FIYmTmtgH/gnNXWf0VWCasUjTSmaUWa4+VinhVr2d8P4FjAgMBAAGjggEtMIIB\nKTAJBgNVHRMEAjAAMCwGCWCGSAGG+EIBDQQfFh1PcGVuU1NMIEdlbmVyYXRlZCBDZXJ0aWZpY2F0\nZTAdBgNVHQ4EFgQUjrkjaHUEtMqzJBV7MvCkywLpql4wgc4GA1UdIwSBxjCBw4AU2BlKcSrg9M5M\nKQEX1T6vXkoMcPWhgaekgaQwgaExCzAJBgNVBAYTAlVLMRIwEAYDVQQIEwlIYW1wc2hpcmUxFDAS\nBgNVBAcTC1NvdXRoYW1wdG9uMSIwIAYDVQQKExlVbml2ZXJzaXR5IG9mIFNvdXRoYW1wdG9uMQ0w\nCwYDVQQLEwREU1NFMQ4wDAYDVQQDEwVEUCBDQTElMCMGCSqGSIb3DQEJARYWZXJ3MDFyQGVjcy5z\nb3Rvbi5hYy51a4IBADANBgkqhkiG9w0BAQQFAAOBgQB1cOuBoxtpLfBnh7FMZNDgnTDSofvvRoCR\n2aUMnvCDo84rkwbz/jXboP4VDRmmgqAgtjtgqR0PO/ua6pgF46Nax2hx+B+JHtvYuNDB2gUuRqpI\nEJFdIZtF5zZawEkphFL+5N2fZhz6h/JWsqtkWmU7cflRI2luqUC3lmfpsI1zYw==" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffd . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffb "f47396:10076d4a0f9:-7ffc" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffb "SHA1WithRSA" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffb "UJLwR5Sm9fIqORVnB4OvEXmvX46JTWsZQ7I6Tj1zcL/EbvQV9TqIqJjvPJ4+JH7Fmz2LdLaQARVt\nqRfvUgal1ZhH/8T3wJZ1LpVLwLhYqBecYG4kTQITbzTzTXYcIp0BlMcPL7DxUavPsPilEB7fnQj8\nccVh6uu18JVbTDOCEgM=\n" . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffb . +_:genid2d4d22b20e07b043d0b350dec9d7883eef2df473963a10076d4a0f93a2d7ffb "f47396:10076d4a0f9:-7ffd" . diff --git a/test/data/suites/trix/ng4jtest.trix b/test/data/suites/trix/trix-ng4j-test-01.trix similarity index 100% rename from test/data/suites/trix/ng4jtest.trix rename to test/data/suites/trix/trix-ng4j-test-01.trix diff --git a/test/data/suites/trix/trix-ng4j-test-02.nq b/test/data/suites/trix/trix-ng4j-test-02.nq new file mode 100644 index 000000000..4a9316463 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-test-02.nq @@ -0,0 +1,2 @@ + "Richard Cyganiak" . + . diff --git a/test/data/suites/trix/trix-ng4j-test-02.trix b/test/data/suites/trix/trix-ng4j-test-02.trix new file mode 100644 index 000000000..0606037d9 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-test-02.trix @@ -0,0 +1,19 @@ + + + + http://example.org/persons/123 + + http://richard.cyganiak.de/foaf.rdf#RichardCyganiak + http://xmlns.com/foaf/0.1/name + Richard Cyganiak + + + + http://www.bizer.de/InformationAboutRichard + + http://richard.cyganiak.de/foaf.rdf#RichardCyganiak + http://xmlns.com/foaf/0.1/mbox + mailto:richard@cyganiak.de + + + diff --git a/test/data/suites/trix/trix-ng4j-twoemptygraphs.trix b/test/data/suites/trix/trix-ng4j-twoemptygraphs.trix new file mode 100644 index 000000000..c4e6c706d --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-twoemptygraphs.trix @@ -0,0 +1,6 @@ + + + + + + diff --git a/test/data/suites/trix/trix-ng4j-wrongpredicatetype.trix b/test/data/suites/trix/trix-ng4j-wrongpredicatetype.trix new file mode 100644 index 000000000..cef972390 --- /dev/null +++ b/test/data/suites/trix/trix-ng4j-wrongpredicatetype.trix @@ -0,0 +1,9 @@ + + + + http://example.org/#foo + foobar + http://example.org/#baz + + + diff --git a/test/data/suites/trix/trix-nokia-example-2010.nq b/test/data/suites/trix/trix-nokia-example-2010.nq new file mode 100644 index 000000000..59cdaede0 --- /dev/null +++ b/test/data/suites/trix/trix-nokia-example-2010.nq @@ -0,0 +1,19 @@ + . + . + _:B35e4f4f1a94bd47ea504ae537ada4c96 . + . + . + . +_:B35e4f4f1a94bd47ea504ae537ada4c96 "46"^^ . +_:B35e4f4f1a94bd47ea504ae537ada4c96 "12"^^ . + "Bob" . + . + "32"^^ . +_:B35e4f4f1a94bd47ea504ae537ada4c96 "a"@en-us . +_:B35e4f4f1a94bd47ea504ae537ada4c96 "a"@en-US . + . + "This is a really good book!"@en . + "A Good Book"^^ . + . +_:B3ca3c249c891bdd84936c44db3809944 . + . diff --git a/test/data/suites/trix/trix-nokia-example-2010.trix b/test/data/suites/trix/trix-nokia-example-2010.trix new file mode 100644 index 000000000..fd3305f83 --- /dev/null +++ b/test/data/suites/trix/trix-nokia-example-2010.trix @@ -0,0 +1,158 @@ + + + + + + + + http://example.org/Bob + http://example.org/wife + http://example.org/Mary + + + http://example.org/Bob + http://example.org/name + Bob + + + http://example.org/Mary + http://example.org/age + 32 + + + + + + + + http://example.org/Widget + http://example.org/dimensions + x + + + x + http://example.org/length + 12 + + + x + http://example.org/width + 46 + + + + + + + http://example.org/binfo + + http://example.org/aBook + http://purl.org/dc/elements/1.1/title + <ex:title>A Good Book</ex:title> + + + http://example.org/aBook + http://www.w3.org/2000/01/rdf-schema#comment + This is a really good book! + + + binfo + http://example.org/source + http://example.org/book-description.rdf + + + http://example.org/book-description.rdf + http://example.org/authority + http://example.org/Bob + + + + + + + + http://example.org/tests/language-tag-case-not-significant + http://example.org/entailmentRules + http://www.w3.org/1999/02/22-rdf-syntax-ns# + + + http://example.org/tests/language-tag-case-not-significant + http://example.org/premise + http://example.org/tests/graph1 + + + http://example.org/tests/language-tag-case-not-significant + http://example.org/conclusion + http://example.org/tests/graph2 + + + + + http://example.org/tests/graph1 + + x + http://example.org/property + a + + + + + http://example.org/tests/graph2 + + x + http://example.org/property + a + + + + + + + + http://example.org/rules/rdf1 + http://example.org/premise + http://example.org/rules/rdf1/premise + + + http://example.org/rules/rdf1 + http://example.org/conclusion + http://example.org/rules/rdf1/conclusion + + + + + http://example.org/rules/rdf1/premise + + http://example.org/rules/rdf1/variables/aaa + http://example.org/rules/rdf1/variables/uuu + http://example.org/rules/rdf1/variables/yyy + + + + + http://example.org/rules/rdf1/conclusion + + http://example.org/rules/rdf1/variables/aaa + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/1999/02/22-rdf-syntax-ns#Property + + + + diff --git a/test/data/suites/trix/trix-nokia-example.nq b/test/data/suites/trix/trix-nokia-example.nq new file mode 100644 index 000000000..7f58edb47 --- /dev/null +++ b/test/data/suites/trix/trix-nokia-example.nq @@ -0,0 +1,19 @@ + . + . + _:Bd05e112b43a49f5dcc8a26e76b4184d3 . + . + . + . +_:Bd05e112b43a49f5dcc8a26e76b4184d3 "46"^^ . +_:Bd05e112b43a49f5dcc8a26e76b4184d3 "12"^^ . + "Bob" . + . + "32"^^ . +_:Bd05e112b43a49f5dcc8a26e76b4184d3 "a"@en-us . +_:Bd05e112b43a49f5dcc8a26e76b4184d3 "a"@en-US . + . + "This is a really good book!"@en . + "A Good Book"^^ . + . +_:B074ebf3b81518a901916e2aeb195d8b2 . + . diff --git a/test/data/suites/trix/nokia_example.trix b/test/data/suites/trix/trix-nokia-example.trix similarity index 100% rename from test/data/suites/trix/nokia_example.trix rename to test/data/suites/trix/trix-nokia-example.trix diff --git a/test/data/suites/trix/trix-nquads-example.nq b/test/data/suites/trix/trix-nquads-example.nq new file mode 100644 index 000000000..990a40aea --- /dev/null +++ b/test/data/suites/trix/trix-nquads-example.nq @@ -0,0 +1,485 @@ + . + . + "Burke, Edmund H." . + . + . + . + . + . + "Burke, Edmund H." . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + "Arco Publications" . + "Arco Publications" . + . + . + . + . + . + "Burgess, Yvonne." . + . + . + . + . + . + "Burgess, Yvonne." . + . + . + . + . + . + . + . + . + . + . + . + "Harvard College Library." . + "Harvard College Library." . + . + . + . + _:B775fd87d53e193e0f29f5de17d9c838b . + . + _:B8d7bda57ef0b092db1cc91837e83276a . + _:Bcb07b4b2608f4387122ff63c67d50505 . + . + "1967"^^ . + _:Bbaae977e14f70718f516f0f984e8f5c8 . + _:Bebeb94a13b24522d44970e2d4c0a2544 . + _:Bf2ce99515a8c5e2e7a6973f53512b397 . + _:B65ccf79e75b41b1d338eba0a1782f074 . + "Includes index." . + . + . + "GBA711489" . + . + "000580504" . + . + . + . + "The Houghton Library, 1942-1967 : a selection of books and manuscripts in Harvard collections." . + . + . + . +_:Bebeb94a13b24522d44970e2d4c0a2544 . +_:Bebeb94a13b24522d44970e2d4c0a2544 "Harvard University." . +_:Bebeb94a13b24522d44970e2d4c0a2544 . +_:B775fd87d53e193e0f29f5de17d9c838b "xiv, 255 p" . + . + . + . + . + . + . +_:B8d7bda57ef0b092db1cc91837e83276a . +_:B8d7bda57ef0b092db1cc91837e83276a "Rare books--Massachusetts--Cambridge." . +_:B8d7bda57ef0b092db1cc91837e83276a . + "Houghton Library." . + "Houghton Library." . + . +_:B65ccf79e75b41b1d338eba0a1782f074 "Cambridge, Mass" . +_:Bcb07b4b2608f4387122ff63c67d50505 . +_:Bcb07b4b2608f4387122ff63c67d50505 "090.097444"^^ . +_:Bcb07b4b2608f4387122ff63c67d50505 . +_:Bf2ce99515a8c5e2e7a6973f53512b397 "eng"^^ . +_:Bbaae977e14f70718f516f0f984e8f5c8 . +_:Bbaae977e14f70718f516f0f984e8f5c8 "Manuscripts--Massachusetts--Cambridge." . +_:Bbaae977e14f70718f516f0f984e8f5c8 . + . + . + . + . + . + . + . + . + . + . + "Penguin" . + . + . + . + . + . + "Penguin" . + . + . + . +_:B21f9f121117434529cb903eafdc56cc8 . +_:B21f9f121117434529cb903eafdc56cc8 "Brunel, Isambard Kingdom, 1806-1859." . +_:B21f9f121117434529cb903eafdc56cc8 . +_:Be7cc92a24fc31e99cbadcd48e06ded73 "20 p" . + . + . + . + "Cable & Wireless Porthcurno and Collections Trust" . + "Cable & Wireless Porthcurno and Collections Trust" . + . + . +_:Bb4c1c911204bbd5594c54af40023a69d . +_:Bb4c1c911204bbd5594c54af40023a69d "Great Eastern (Steamship)" . +_:Bb4c1c911204bbd5594c54af40023a69d . + . + . + . + . +_:Bd8ead022268f6e4827d0c301b53dea59 "Porthcurno" . + . + "Cable & Wireless Porthcurno & Collections Trust." . + "Cable & Wireless Porthcurno & Collections Trust." . + . + . + . + _:B04305c467df606e0da0050bc59300d00 . + "Originally published to mark the launch in 1858 of the ship, the Great Eastern. Reproduced from an original in the archives of Cable & Wireless at Porthcurno Telegraph Museum in Cornwall." . + "urn:isbn:1905419155" . + . + . + "The wonderful ship that was planned by Isambard Kingdom Brunel." . + . + . + _:B21f9f121117434529cb903eafdc56cc8 . + . + "GBA814723" . + . + . + _:Bb4c1c911204bbd5594c54af40023a69d . + . + _:Bd8ead022268f6e4827d0c301b53dea59 . + _:Be7cc92a24fc31e99cbadcd48e06ded73 . + . + "c2006" . + "000504490" . + "Originally published: London: Dean & Son, 1858." . +_:B04305c467df606e0da0050bc59300d00 "eng"^^ . + . + . + . + . +_:B8485f5bf9c5f1e1ac1dfe95ab8961af5 . +_:B8485f5bf9c5f1e1ac1dfe95ab8961af5 "1940"^^ . +_:B1b59dcf2993ebf4c694749b6d4014234 "1875"^^ . +_:B1b59dcf2993ebf4c694749b6d4014234 . + . + . + . + . + . + "Buchan, John, 1875-1940" . + . + "Buchan, John" . + . + . + _:B1b59dcf2993ebf4c694749b6d4014234 . + _:B8485f5bf9c5f1e1ac1dfe95ab8961af5 . + . + . + . + . + . + . + . + . + . + . + "Hodder & Stoughton" . + "Hodder & Stoughton" . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + "Cable & Wireless Porthcurno & Collections Trust." . + . + . + . + . + . + "Cable & Wireless Porthcurno & Collections Trust." . +_:B8485f5bf9c5f1e1ac1dfe95ab8961af5 "1940"^^ . +_:B8485f5bf9c5f1e1ac1dfe95ab8961af5 . + "Hodder & Stoughton" . + "Hodder & Stoughton" . + . + . + . + . + . +_:B1b59dcf2993ebf4c694749b6d4014234 "1875"^^ . +_:B1b59dcf2993ebf4c694749b6d4014234 . +_:B595de66e5e91d7ad6534afa1ea840a8e "London" . +_:B36f7936cb1a3758dd5c2a4cac2b2d8ce "|||"^^ . + . + . + . + . + . + . + "Buchan, John" . + _:B1b59dcf2993ebf4c694749b6d4014234 . + _:B8485f5bf9c5f1e1ac1dfe95ab8961af5 . + . + "Buchan, John, 1875-1940" . + "A Five-Fold Salute to Adventure. An omnibus volume of the historical novels of J. Buchan. (The Blanket of the Dark.-Witch Wood.-Salute to Adventurers.-Midwinter.-The Free Fishers.)." . + _:B098c2aec5b6934aec48203a32d7f266a . + "GBA522580" . + . + . + . + "000512596" . + . + . + . + "1939"^^ . + . + _:B36f7936cb1a3758dd5c2a4cac2b2d8ce . + . + . + _:B595de66e5e91d7ad6534afa1ea840a8e . + . +_:B098c2aec5b6934aec48203a32d7f266a "pp. xii. 1307" . + "Cable & Wireless Porthcurno and Collections Trust" . + . + . + . + . + . + . + "Cable & Wireless Porthcurno and Collections Trust" . + . + . + . + . + . + . + . + . + . + . + . + "Augener & Co." . + "Augener & Co." . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . +_:Bff78d8052100a44c1fee4c643cd9ecef "197 p" . +_:Bdeee9132440e7885b09e1fb264f94fd9 . +_:Bdeee9132440e7885b09e1fb264f94fd9 "823.9936"^^ . +_:Bdeee9132440e7885b09e1fb264f94fd9 . +_:B1b10aafb5fe3b71c40330e47f72d4518 "eng"^^ . +_:B84056cd2c8d2450f770e0f89cbfe169b "South African fiction (English)" . +_:B84056cd2c8d2450f770e0f89cbfe169b . +_:B84056cd2c8d2450f770e0f89cbfe169b . + . + . + . + . + "Burgess, Yvonne." . + "Burgess, Yvonne." . + . + . + . + _:Bdeee9132440e7885b09e1fb264f94fd9 . + _:Bff78d8052100a44c1fee4c643cd9ecef . + _:B84056cd2c8d2450f770e0f89cbfe169b . + _:B1b10aafb5fe3b71c40330e47f72d4518 . + . + "Originally published : Johannesburg : AD Donker, 1973." . + . + . + . + _:B7b76a1a9ace48fe5782d8dd969541401 . + . + . + "A life to live" . + "GBA479403" . + "urn:isbn:0143024078" . + . + "2002"^^ . + . + "000536125" . + . + . + . + . + . + . +_:B7b76a1a9ace48fe5782d8dd969541401 "London" . + "Penguin" . + "Penguin" . + . + . + . + . + . + . + . + . + "Augener Ltd." . + "Augener Ltd." . + . + . + . + . + . + . + . + . + . + . + . + . + "Augener & Co." . + "Augener & Co." . + . + . +_:B266cfe145a169ac047a07eeb5a4401ad "20 p" . + . + . + . + _:B266cfe145a169ac047a07eeb5a4401ad . + . + . + _:Baa417b492bcc0c1f8b0d9dcb3e80e220 . + . + . + "Title from cover." . + "\"Printed for private circulation\"--p.1." . + "1927"^^ . + "000140898" . + . + _:Be25cb474b08f0c3118e318a4c666e482 . + _:B8aacf7236ed0dfde5f05a0ae0ce71499 . + . + . + "A list of composers, authors, arrangers, etc. represented in the catalogues of Augener Ltd." . + _:Bea0ad4f3d2f91b13845707633fadc33f . + . + "GBA9C6518" . + _:Bded7e9a45a67db2d524016db7dbbbf44 . + . + . + "Augener Ltd." . + "Augener Ltd." . +_:Baa417b492bcc0c1f8b0d9dcb3e80e220 . +_:Baa417b492bcc0c1f8b0d9dcb3e80e220 . +_:Baa417b492bcc0c1f8b0d9dcb3e80e220 "Composers--Indexes." . + . + . +_:Bea0ad4f3d2f91b13845707633fadc33f . +_:Bea0ad4f3d2f91b13845707633fadc33f . +_:Bea0ad4f3d2f91b13845707633fadc33f "Arrangers (Musicians)--Indexes." . +_:B8aacf7236ed0dfde5f05a0ae0ce71499 "eng"^^ . + . + . +_:Bded7e9a45a67db2d524016db7dbbbf44 . +_:Bded7e9a45a67db2d524016db7dbbbf44 . +_:Bded7e9a45a67db2d524016db7dbbbf44 "Augener & Co.--Indexes." . +_:Be25cb474b08f0c3118e318a4c666e482 "London" . +_:B4b1a1f47138c03a9f110de1318f45e1e . +_:B4b1a1f47138c03a9f110de1318f45e1e . +_:B4b1a1f47138c03a9f110de1318f45e1e "940.544941"^^ . +_:B462a4e2c76ee26d98dd17e9e374704a8 "eng"^^ . + . + . + . + . + . + . +_:Bf61a0cb4b70ebc7deb8b00ea369f7bb3 . +_:Bf61a0cb4b70ebc7deb8b00ea369f7bb3 . +_:Bf61a0cb4b70ebc7deb8b00ea369f7bb3 "Gibson, Guy." . + "Burke, Edmund H." . + . + "Burke, Edmund H." . +_:B3016a67fc34ab68b9ec388e5116d0c0e . +_:B3016a67fc34ab68b9ec388e5116d0c0e . +_:B3016a67fc34ab68b9ec388e5116d0c0e "Air pilots, Military--Great Britain--Biography." . +_:Bc89f8481b28a17508971cdea0c021e81 "128 p" . + "Arco Publications" . + . + "Arco Publications" . + . + . + _:B4b1a1f47138c03a9f110de1318f45e1e . + _:B3016a67fc34ab68b9ec388e5116d0c0e . + . + _:Bf61a0cb4b70ebc7deb8b00ea369f7bb3 . + "Guy Gibson VC" . + . + . + _:Bc89f8481b28a17508971cdea0c021e81 . + . + . + . + _:B599e925dec9e159f89f30894452b57e2 . + _:B1425610457479898cbc457b08a491d58 . + . + _:Bffa02e6fc4fc5e21cf65e6cbcfa82f61 . + "000537740" . + . + "1961"^^ . + _:B462a4e2c76ee26d98dd17e9e374704a8 . + . + . + "GB6122745" . +_:B599e925dec9e159f89f30894452b57e2 "London" . +_:B1425610457479898cbc457b08a491d58 . +_:B1425610457479898cbc457b08a491d58 . +_:B1425610457479898cbc457b08a491d58 "Great Britain. Royal Air Force--Biography." . +_:Bffa02e6fc4fc5e21cf65e6cbcfa82f61 . +_:Bffa02e6fc4fc5e21cf65e6cbcfa82f61 . +_:Bffa02e6fc4fc5e21cf65e6cbcfa82f61 "World War, 1939-1945--Aerial operations, British." . + . + . diff --git a/test/data/suites/trix/trix-nquads-example.trix b/test/data/suites/trix/trix-nquads-example.trix new file mode 100644 index 000000000..41d0569b5 --- /dev/null +++ b/test/data/suites/trix/trix-nquads-example.trix @@ -0,0 +1,2475 @@ + + + http://bibliographica.org/entity/E10008 + + http://bibliographica.org/entity/E10008.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entity/E10008 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/name + Burke, Edmund H. + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.html + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.n3 + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.nt + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.rdf + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10008.ttl + + + http://bibliographica.org/entity/E10008 + http://www.w3.org/2004/02/skos/core#prefLabel + Burke, Edmund H. + + + http://bibliographica.org/entity/E10008.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entity/E10008.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entity/E10008.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entity/E10008.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10008.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10008 + + + + http://bibliographica.org/entity/E10009 + + http://bibliographica.org/entity/E10009.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10009.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10009.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10009.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10009 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/name + Arco Publications + + + http://bibliographica.org/entity/E10009 + http://www.w3.org/2004/02/skos/core#prefLabel + Arco Publications + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.n3 + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.ttl + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.rdf + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.nt + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10009.html + + + http://bibliographica.org/entity/E10009.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entity/E10009.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + + http://bibliographica.org/entity/E10006 + + http://bibliographica.org/entity/E10006.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entity/E10006 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/name + Burgess, Yvonne. + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.nt + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.ttl + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.n3 + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.html + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10006.rdf + + + http://bibliographica.org/entity/E10006 + http://www.w3.org/2004/02/skos/core#prefLabel + Burgess, Yvonne. + + + http://bibliographica.org/entity/E10006.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entity/E10006.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entity/E10006.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entity/E10006.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10006.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10006 + + + + http://bibliographica.org/entry/BB2682260 + + f71e207ccd1a762b333df61f5472d797 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + f71e207ccd1a762b333df61f5472d797 + http://www.w3.org/2004/02/skos/core#notation + 090.097444 + + + f71e207ccd1a762b333df61f5472d797 + http://www.w3.org/2004/02/skos/core#inScheme + http://dewey.info/scheme/e22 + + + 68aa42560f316fb4dfa70c257de45848 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + http://bibliographica.org/entity/E10011 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10011 + http://www.w3.org/2004/02/skos/core#prefLabel + Harvard College Library. + + + http://bibliographica.org/entity/E10011 + http://xmlns.com/foaf/0.1/name + Harvard College Library. + + + http://bibliographica.org/entry/BB2682260.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.rdf + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.html + + + http://bibliographica.org/entry/BB2682260 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + fe9de1df6aefdb38e416bc9c95a2f719 + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.nt + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/language + 68aa42560f316fb4dfa70c257de45848 + + + http://bibliographica.org/entry/BB2682260 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/issued + 1967 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/subject + df8ce0f3449c3fa3442d96ff3cf3209c + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/description + Includes index. + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.ttl + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/subject + fbc950f9b7ae69cdd568e2e64dd741f5 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/ontology/bibo/identifier + GBA711489 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/extent + aa7fe329342447b7a4aaa9f2cfd44a12 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/subject + 196e29fcf50fc81e95249f169b5fff61 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10010 + + + http://bibliographica.org/entry/BB2682260 + http://open.vocab.org/terms/blid + 000580504 + + + http://bibliographica.org/entry/BB2682260 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682260.n3 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10011 + + + http://bibliographica.org/entry/BB2682260 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/subject + f71e207ccd1a762b333df61f5472d797 + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/title + The Houghton Library, 1942-1967 : a selection of books and manuscripts in Harvard collections. + + + http://bibliographica.org/entry/BB2682260 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10012 + + + http://bibliographica.org/entry/BB2682260.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + 196e29fcf50fc81e95249f169b5fff61 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 196e29fcf50fc81e95249f169b5fff61 + http://www.w3.org/2004/02/skos/core#prefLabel + Manuscripts--Massachusetts--Cambridge. + + + 196e29fcf50fc81e95249f169b5fff61 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + df8ce0f3449c3fa3442d96ff3cf3209c + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + df8ce0f3449c3fa3442d96ff3cf3209c + http://www.w3.org/2004/02/skos/core#prefLabel + Rare books--Massachusetts--Cambridge. + + + df8ce0f3449c3fa3442d96ff3cf3209c + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + http://bibliographica.org/entry/BB2682260.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + http://bibliographica.org/entry/BB2682260.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + fbc950f9b7ae69cdd568e2e64dd741f5 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + fbc950f9b7ae69cdd568e2e64dd741f5 + http://www.w3.org/2004/02/skos/core#prefLabel + Harvard University. + + + fbc950f9b7ae69cdd568e2e64dd741f5 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + http://bibliographica.org/entry/BB2682260.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682260.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682260 + + + fe9de1df6aefdb38e416bc9c95a2f719 + http://www.w3.org/2000/01/rdf-schema#label + Cambridge, Mass + + + http://bibliographica.org/entity/E10010 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10010 + http://www.w3.org/2004/02/skos/core#prefLabel + Houghton Library. + + + http://bibliographica.org/entity/E10010 + http://xmlns.com/foaf/0.1/name + Houghton Library. + + + aa7fe329342447b7a4aaa9f2cfd44a12 + http://www.w3.org/2000/01/rdf-schema#label + xiv, 255 p + + + + http://bibliographica.org/entity/E10007 + + http://bibliographica.org/entity/E10007.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10007.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entity/E10007 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10007 + http://www.w3.org/2004/02/skos/core#prefLabel + Penguin + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.html + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.n3 + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.ttl + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.rdf + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10007.nt + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/name + Penguin + + + + http://bibliographica.org/entry/BB2682251 + + http://bibliographica.org/entry/BB2682251.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682251.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/name + Cable & Wireless Porthcurno and Collections Trust + + + http://bibliographica.org/entity/E10003 + http://www.w3.org/2004/02/skos/core#prefLabel + Cable & Wireless Porthcurno and Collections Trust + + + http://bibliographica.org/entity/E10003 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entry/BB2682251.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + ddba2905e412bb36a69f4b689e14572f + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + ddba2905e412bb36a69f4b689e14572f + http://www.w3.org/2004/02/skos/core#prefLabel + Great Eastern (Steamship) + + + ddba2905e412bb36a69f4b689e14572f + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + cd8f5701c5620bfd74bb9230b6a5ce4c + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + cd8f5701c5620bfd74bb9230b6a5ce4c + http://www.w3.org/2004/02/skos/core#prefLabel + Brunel, Isambard Kingdom, 1806-1859. + + + cd8f5701c5620bfd74bb9230b6a5ce4c + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + http://bibliographica.org/entry/BB2682251.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682251.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682251 + + + http://bibliographica.org/entry/BB2682251.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + b8d0ae117257d5273d1ffbec65d86fdd + http://www.w3.org/2000/01/rdf-schema#label + Porthcurno + + + d7959224c0652b7a1ed9e94b5b2ff698 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + 3bcaa4fea077e60c256f04314deb9e82 + http://www.w3.org/2000/01/rdf-schema#label + 20 p + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/name + Cable & Wireless Porthcurno & Collections Trust. + + + http://bibliographica.org/entity/E10002 + http://www.w3.org/2004/02/skos/core#prefLabel + Cable & Wireless Porthcurno & Collections Trust. + + + http://bibliographica.org/entity/E10002 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entry/BB2682251 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.ttl + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.html + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/description + Originally published to mark the launch in 1858 of the ship, the Great Eastern. Reproduced from an original in the archives of Cable & Wireless at Porthcurno Telegraph Museum in Cornwall. + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/ontology/bibo/isbn + urn:isbn:1905419155 + + + http://bibliographica.org/entry/BB2682251 + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://www4.wiwiss.fu-berlin.de/bookmashup/books/1905419155 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/subject + cd8f5701c5620bfd74bb9230b6a5ce4c + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/language + d7959224c0652b7a1ed9e94b5b2ff698 + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.nt + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/title + The wonderful ship that was planned by Isambard Kingdom Brunel. + + + http://bibliographica.org/entry/BB2682251 + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://purl.org/NET/book/isbn/1905419155#book + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/ontology/bibo/identifier + GBA814723 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/extent + 3bcaa4fea077e60c256f04314deb9e82 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/subject + ddba2905e412bb36a69f4b689e14572f + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.n3 + + + http://bibliographica.org/entry/BB2682251 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682251.rdf + + + http://bibliographica.org/entry/BB2682251 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/issued + c2006 + + + http://bibliographica.org/entry/BB2682251 + http://open.vocab.org/terms/blid + 000504490 + + + http://bibliographica.org/entry/BB2682251 + http://purl.org/dc/terms/description + Originally published: London: Dean & Son, 1858. + + + http://bibliographica.org/entry/BB2682251 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + b8d0ae117257d5273d1ffbec65d86fdd + + + + http://bibliographica.org/entity/E10004 + + http://bibliographica.org/entity/E10004.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + http://bibliographica.org/entity/E10004.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + dcbc329b88d8e24865513dfa5d3ba95b + http://purl.org/vocab/bio/0.1/date + 1940 + + + dcbc329b88d8e24865513dfa5d3ba95b + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/vocab/bio/0.1/Death + + + http://bibliographica.org/entity/E10004.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + http://bibliographica.org/entity/E10004.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.rdf + + + http://bibliographica.org/entity/E10004 + http://purl.org/vocab/bio/0.1/event + 2319b9a426ac224f2e768452659e259d + + + http://bibliographica.org/entity/E10004 + http://www.w3.org/2004/02/skos/core#prefLabel + Buchan, John, 1875-1940 + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.ttl + + + http://bibliographica.org/entity/E10004 + http://purl.org/vocab/bio/0.1/event + dcbc329b88d8e24865513dfa5d3ba95b + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/name + Buchan, John + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.html + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.nt + + + http://bibliographica.org/entity/E10004 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10004.n3 + + + http://bibliographica.org/entity/E10004.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10004.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10004 + + + 2319b9a426ac224f2e768452659e259d + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/vocab/bio/0.1/Birth + + + 2319b9a426ac224f2e768452659e259d + http://purl.org/vocab/bio/0.1/date + 1875 + + + + http://bibliographica.org/entity/E10005 + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/name + Hodder & Stoughton + + + http://bibliographica.org/entity/E10005 + http://www.w3.org/2004/02/skos/core#prefLabel + Hodder & Stoughton + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.html + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.nt + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.ttl + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.n3 + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10005.rdf + + + http://bibliographica.org/entity/E10005 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10005.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10005.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10005.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10005.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10005.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entity/E10005.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + + http://bibliographica.org/entity/E10002 + + http://bibliographica.org/entity/E10002.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10002 + + + http://bibliographica.org/entity/E10002.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10002 + http://www.w3.org/2004/02/skos/core#prefLabel + Cable & Wireless Porthcurno & Collections Trust. + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.ttl + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.n3 + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.nt + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.rdf + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10002.html + + + http://bibliographica.org/entity/E10002 + http://xmlns.com/foaf/0.1/name + Cable & Wireless Porthcurno & Collections Trust. + + + http://bibliographica.org/entity/E10002 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + + http://bibliographica.org/entry/BB2682253 + + http://bibliographica.org/entity/E10005 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10005 + http://www.w3.org/2004/02/skos/core#prefLabel + Hodder & Stoughton + + + http://bibliographica.org/entity/E10005 + http://xmlns.com/foaf/0.1/name + Hodder & Stoughton + + + 8b7cbb5561fc76bdbdb51cf24ee24d36 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + ||| + + + http://bibliographica.org/entry/BB2682253.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682253.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + dcbc329b88d8e24865513dfa5d3ba95b + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/vocab/bio/0.1/Death + + + dcbc329b88d8e24865513dfa5d3ba95b + http://purl.org/vocab/bio/0.1/date + 1940 + + + http://bibliographica.org/entry/BB2682253.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682253.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682253.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682253 + + + http://bibliographica.org/entry/BB2682253.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/title + A Five-Fold Salute to Adventure. An omnibus volume of the historical novels of J. Buchan. (The Blanket of the Dark.-Witch Wood.-Salute to Adventurers.-Midwinter.-The Free Fishers.). + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/extent + 99cfa43960f250a43ccc7ce8b74ab339 + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/ontology/bibo/identifier + GBA522580 + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.ttl + + + http://bibliographica.org/entry/BB2682253 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.rdf + + + http://bibliographica.org/entry/BB2682253 + http://open.vocab.org/terms/blid + 000512596 + + + http://bibliographica.org/entry/BB2682253 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.n3 + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.nt + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/issued + 1939 + + + http://bibliographica.org/entry/BB2682253 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + 0dd899f962020475b2885e22a4d2bba5 + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10004 + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10005 + + + http://bibliographica.org/entry/BB2682253 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682253.html + + + http://bibliographica.org/entry/BB2682253 + http://purl.org/dc/terms/language + 8b7cbb5561fc76bdbdb51cf24ee24d36 + + + http://bibliographica.org/entity/E10004 + http://www.w3.org/2004/02/skos/core#prefLabel + Buchan, John, 1875-1940 + + + http://bibliographica.org/entity/E10004 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10004 + http://purl.org/vocab/bio/0.1/event + dcbc329b88d8e24865513dfa5d3ba95b + + + http://bibliographica.org/entity/E10004 + http://purl.org/vocab/bio/0.1/event + 2319b9a426ac224f2e768452659e259d + + + http://bibliographica.org/entity/E10004 + http://xmlns.com/foaf/0.1/name + Buchan, John + + + 99cfa43960f250a43ccc7ce8b74ab339 + http://www.w3.org/2000/01/rdf-schema#label + pp. xii. 1307 + + + 0dd899f962020475b2885e22a4d2bba5 + http://www.w3.org/2000/01/rdf-schema#label + London + + + 2319b9a426ac224f2e768452659e259d + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/vocab/bio/0.1/Birth + + + 2319b9a426ac224f2e768452659e259d + http://purl.org/vocab/bio/0.1/date + 1875 + + + + http://bibliographica.org/entity/E10003 + + http://bibliographica.org/entity/E10003 + http://www.w3.org/2004/02/skos/core#prefLabel + Cable & Wireless Porthcurno and Collections Trust + + + http://bibliographica.org/entity/E10003 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.rdf + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.html + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.ttl + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.nt + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10003.n3 + + + http://bibliographica.org/entity/E10003 + http://xmlns.com/foaf/0.1/name + Cable & Wireless Porthcurno and Collections Trust + + + http://bibliographica.org/entity/E10003.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entity/E10003.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entity/E10003.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entity/E10003.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + http://bibliographica.org/entity/E10003.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10003.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10003 + + + + http://bibliographica.org/entity/E10000 + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.nt + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.rdf + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.html + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.ttl + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10000.n3 + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/name + Augener & Co. + + + http://bibliographica.org/entity/E10000 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener & Co. + + + http://bibliographica.org/entity/E10000 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10000.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10000.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10000.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10000.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10000.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entity/E10000.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + + http://bibliographica.org/entry/BB2682255 + + http://bibliographica.org/entry/BB2682255.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + ebc85f28839bba545299ee466f367227 + http://www.w3.org/2000/01/rdf-schema#label + London + + + 58db274d3e39251ad6a92232105e28ec + http://www.w3.org/2000/01/rdf-schema#label + 197 p + + + http://bibliographica.org/entry/BB2682255.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + http://bibliographica.org/entry/BB2682255.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + http://bibliographica.org/entity/E10006 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10006 + http://xmlns.com/foaf/0.1/name + Burgess, Yvonne. + + + http://bibliographica.org/entity/E10006 + http://www.w3.org/2004/02/skos/core#prefLabel + Burgess, Yvonne. + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.ttl + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.html + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.n3 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/description + Originally published : Johannesburg : AD Donker, 1973. + + + http://bibliographica.org/entry/BB2682255 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/subject + 21d44cb73ca61f4b5857323d1b558339 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10006 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/language + 1e9fbc49f53a44c6d5228a561f6f5d04 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/extent + 58db274d3e39251ad6a92232105e28ec + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.nt + + + http://bibliographica.org/entry/BB2682255 + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://www4.wiwiss.fu-berlin.de/bookmashup/books/0143024078 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/title + A life to live + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/ontology/bibo/identifier + GBA479403 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/ontology/bibo/isbn + urn:isbn:0143024078 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/subject + e6b8f45acf822e778c451fae5b767ba3 + + + http://bibliographica.org/entry/BB2682255 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682255.rdf + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/issued + 2002 + + + http://bibliographica.org/entry/BB2682255 + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://purl.org/NET/book/isbn/0143024078#book + + + http://bibliographica.org/entry/BB2682255 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + ebc85f28839bba545299ee466f367227 + + + http://bibliographica.org/entry/BB2682255 + http://open.vocab.org/terms/blid + 000536125 + + + http://bibliographica.org/entry/BB2682255 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10007 + + + http://bibliographica.org/entry/BB2682255 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682255.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + http://bibliographica.org/entry/BB2682255.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682255.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682255 + + + e6b8f45acf822e778c451fae5b767ba3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + e6b8f45acf822e778c451fae5b767ba3 + http://www.w3.org/2004/02/skos/core#notation + 823.9936 + + + e6b8f45acf822e778c451fae5b767ba3 + http://www.w3.org/2004/02/skos/core#inScheme + http://dewey.info/scheme/e22 + + + 1e9fbc49f53a44c6d5228a561f6f5d04 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + http://bibliographica.org/entity/E10007 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10007 + http://xmlns.com/foaf/0.1/name + Penguin + + + http://bibliographica.org/entity/E10007 + http://www.w3.org/2004/02/skos/core#prefLabel + Penguin + + + 21d44cb73ca61f4b5857323d1b558339 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 21d44cb73ca61f4b5857323d1b558339 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 21d44cb73ca61f4b5857323d1b558339 + http://www.w3.org/2004/02/skos/core#prefLabel + South African fiction (English) + + + + http://bibliographica.org/entity/E10001 + + http://bibliographica.org/entity/E10001.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entity/E10001.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entity/E10001.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.nt + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.n3 + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.ttl + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.html + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entity/E10001.rdf + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/name + Augener Ltd. + + + http://bibliographica.org/entity/E10001 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener Ltd. + + + http://bibliographica.org/entity/E10001 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10001.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entity/E10001.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entity/E10001.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entity/E10001 + + + + http://bibliographica.org/entry/BB2682246 + + http://bibliographica.org/entry/BB2682246.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + http://bibliographica.org/entity/E10000 + http://xmlns.com/foaf/0.1/name + Augener & Co. + + + http://bibliographica.org/entity/E10000 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener & Co. + + + http://bibliographica.org/entity/E10000 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + 2ecb40f59ababcacaf0b05214b14006e + http://www.w3.org/2000/01/rdf-schema#label + 20 p + + + http://bibliographica.org/entry/BB2682246.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + a11dec43fad21abf7eed905f731a7903 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + http://bibliographica.org/entry/BB2682246.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + 5d322345e8e8a8782df42401bf82efc1 + http://www.w3.org/2004/02/skos/core#prefLabel + Composers--Indexes. + + + 5d322345e8e8a8782df42401bf82efc1 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 5d322345e8e8a8782df42401bf82efc1 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 6f7c0c9d004e0f20924e4d7c78aae1cc + http://www.w3.org/2004/02/skos/core#prefLabel + Augener & Co.--Indexes. + + + 6f7c0c9d004e0f20924e4d7c78aae1cc + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 6f7c0c9d004e0f20924e4d7c78aae1cc + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.html + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.nt + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.rdf + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/extent + 2ecb40f59ababcacaf0b05214b14006e + + + http://bibliographica.org/entry/BB2682246 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/description + Title from cover. + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/description + "Printed for private circulation"--p.1. + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/issued + 1927 + + + http://bibliographica.org/entry/BB2682246 + http://open.vocab.org/terms/blid + 000140898 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10000 + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.n3 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/subject + 31d6d66d02a1741edc3db74a796d17b2 + + + http://bibliographica.org/entry/BB2682246 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682246.ttl + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/title + A list of composers, authors, arrangers, etc. represented in the catalogues of Augener Ltd. + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10001 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/subject + 6f7c0c9d004e0f20924e4d7c78aae1cc + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/ontology/bibo/identifier + GBA9C6518 + + + http://bibliographica.org/entry/BB2682246 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/language + a11dec43fad21abf7eed905f731a7903 + + + http://bibliographica.org/entry/BB2682246 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + b62672f298c9282381301334e20333c2 + + + http://bibliographica.org/entry/BB2682246 + http://purl.org/dc/terms/subject + 5d322345e8e8a8782df42401bf82efc1 + + + http://bibliographica.org/entity/E10001 + http://xmlns.com/foaf/0.1/name + Augener Ltd. + + + http://bibliographica.org/entity/E10001 + http://www.w3.org/2004/02/skos/core#prefLabel + Augener Ltd. + + + http://bibliographica.org/entity/E10001 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entry/BB2682246.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + 31d6d66d02a1741edc3db74a796d17b2 + http://www.w3.org/2004/02/skos/core#prefLabel + Arrangers (Musicians)--Indexes. + + + 31d6d66d02a1741edc3db74a796d17b2 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + 31d6d66d02a1741edc3db74a796d17b2 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + b62672f298c9282381301334e20333c2 + http://www.w3.org/2000/01/rdf-schema#label + London + + + http://bibliographica.org/entry/BB2682246.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682246.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682246 + + + + http://bibliographica.org/entry/BB2682258 + + e22dafeaa52a22fe2aa908821b082e4d + http://www.w3.org/2004/02/skos/core#prefLabel + Air pilots, Military--Great Britain--Biography. + + + e22dafeaa52a22fe2aa908821b082e4d + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + e22dafeaa52a22fe2aa908821b082e4d + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + bc88ccb7577d9f778b6f908197a82df6 + http://www.w3.org/1999/02/22-rdf-syntax-ns#value + eng + + + http://bibliographica.org/entry/BB2682258.nt + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.nt + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + 308325afad7dc5e44e08e5cd36c91c13 + http://www.w3.org/2004/02/skos/core#prefLabel + World War, 1939-1945--Aerial operations, British. + + + 308325afad7dc5e44e08e5cd36c91c13 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 308325afad7dc5e44e08e5cd36c91c13 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + http://bibliographica.org/entry/BB2682258.html + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.html + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + http://bibliographica.org/entry/BB2682258.rdf + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.rdf + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + 32d3b6a8887b131d00f663fda590395e + http://www.w3.org/2000/01/rdf-schema#label + London + + + http://bibliographica.org/entity/E10008 + http://www.w3.org/2004/02/skos/core#prefLabel + Burke, Edmund H. + + + http://bibliographica.org/entity/E10008 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10008 + http://xmlns.com/foaf/0.1/name + Burke, Edmund H. + + + 525dde13269b31e68654e85396c0aff1 + http://www.w3.org/2004/02/skos/core#prefLabel + Great Britain. Royal Air Force--Biography. + + + 525dde13269b31e68654e85396c0aff1 + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + 525dde13269b31e68654e85396c0aff1 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + e22dafeaa52a22fe2aa908821b082e4d + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/extent + 92f78279f32f5c79d5f68dd98e0ad348 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/language + bc88ccb7577d9f778b6f908197a82df6 + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.nt + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + 525dde13269b31e68654e85396c0aff1 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/title + Guy Gibson VC + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/contributor + http://bibliographica.org/entity/E10008 + + + http://bibliographica.org/entry/BB2682258 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Book + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/publisher + http://bibliographica.org/entity/E10009 + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.n3 + + + http://bibliographica.org/entry/BB2682258 + http://iflastandards.info/ns/isbd/elements/hasPlaceOfPublicationProductionDistribution + 32d3b6a8887b131d00f663fda590395e + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/isPartOf + http://ckan.net/package/jiscopenbib-bl_bnb-1 + + + http://bibliographica.org/entry/BB2682258 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/ontology/bibo/Document + + + http://bibliographica.org/entry/BB2682258 + http://open.vocab.org/terms/blid + 000537740 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/issued + 1961 + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.rdf + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.html + + + http://bibliographica.org/entry/BB2682258 + http://xmlns.com/foaf/0.1/isPrimaryTopicOf + http://bibliographica.org/entry/BB2682258.ttl + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + b686ffa7428045bb3e1d7e8e56d9c5cc + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + a0d0b3d3ac15cd5873898c9928f97681 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/ontology/bibo/identifier + GB6122745 + + + http://bibliographica.org/entry/BB2682258 + http://purl.org/dc/terms/subject + 308325afad7dc5e44e08e5cd36c91c13 + + + http://bibliographica.org/entry/BB2682258.n3 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.n3 + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + http://bibliographica.org/entity/E10009 + http://www.w3.org/2004/02/skos/core#prefLabel + Arco Publications + + + http://bibliographica.org/entity/E10009 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Agent + + + http://bibliographica.org/entity/E10009 + http://xmlns.com/foaf/0.1/name + Arco Publications + + + 92f78279f32f5c79d5f68dd98e0ad348 + http://www.w3.org/2000/01/rdf-schema#label + 128 p + + + b686ffa7428045bb3e1d7e8e56d9c5cc + http://www.w3.org/2004/02/skos/core#prefLabel + Gibson, Guy. + + + b686ffa7428045bb3e1d7e8e56d9c5cc + http://www.w3.org/2004/02/skos/core#inScheme + http://id.loc.gov/authorities#conceptScheme + + + b686ffa7428045bb3e1d7e8e56d9c5cc + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + a0d0b3d3ac15cd5873898c9928f97681 + http://www.w3.org/2004/02/skos/core#notation + 940.544941 + + + a0d0b3d3ac15cd5873898c9928f97681 + http://www.w3.org/2004/02/skos/core#inScheme + http://dewey.info/scheme/e18 + + + a0d0b3d3ac15cd5873898c9928f97681 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://www.w3.org/2004/02/skos/core#Concept + + + http://bibliographica.org/entry/BB2682258.ttl + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Document + + + http://bibliographica.org/entry/BB2682258.ttl + http://xmlns.com/foaf/0.1/primaryTopic + http://bibliographica.org/entry/BB2682258 + + + diff --git a/test/data/suites/trix/trix-test1.nq b/test/data/suites/trix/trix-test1.nq new file mode 100644 index 000000000..8a4346129 --- /dev/null +++ b/test/data/suites/trix/trix-test1.nq @@ -0,0 +1,5 @@ + . +_:B725789ec5738a963c7d06f1dbaabc946 "This literal is \"really\" useful"@it . +_:B53ff6a4fdc15ee2e061d233b40585573 _:B725789ec5738a963c7d06f1dbaabc946 . +_:B203935e6c16602e0e1e67b9bafeb1960 "12345"^^ . +_:B203935e6c16602e0e1e67b9bafeb1960 "Michele" . diff --git a/test/data/suites/trix/trix-test1.trix b/test/data/suites/trix/trix-test1.trix new file mode 100644 index 000000000..562d1c3a8 --- /dev/null +++ b/test/data/suites/trix/trix-test1.trix @@ -0,0 +1,42 @@ + + + http://example.org/alice/foaf1.rdf + + http://example.org/alice/foaf.rdf#me + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://xmlns.com/foaf/0.1/Person + + + + http://example.org/alice/foaf4.rdf + + da638dcc719e55f5b2d6aed040ed62cf + http://xmlns.com/foaf/0.1/Friend + This literal is "really" useful + + + + http://example.org/alice/foaf3.rdf + + 51b062c6efb79042bbc632467ba88b77 + http://xmlns.com/foaf/0.1/Friend + da638dcc719e55f5b2d6aed040ed62cf + + + + http://example.org/alice/foaf2.rdf + + 122c0045e54c6028112af67e41ef2b65 + http://xmlns.com/foaf/0.1/Friend + Michele + + + + http://example.org/alice/foaf5.rdf + + 122c0045e54c6028112af67e41ef2b65 + http://xmlns.com/foaf/0.1/like + 12345 + + + diff --git a/test/data/suites/trix/trix-test2.nq b/test/data/suites/trix/trix-test2.nq new file mode 100644 index 000000000..64819db29 --- /dev/null +++ b/test/data/suites/trix/trix-test2.nq @@ -0,0 +1,400 @@ + . + "spa" . + . + . + "(Revista) ISSN 0121-6805" . + "Barragán Días, Diego Mauricio" . + "free" . + . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=2591019" . + "Revista Facultad de Ciencias Económicas: Investigación y Reflexión, ISSN 0121-6805, Vol. 15, Nº. 2, 2007" . + "2007" . + . + "Orden social en la Colombia de los siglos XIII y XIX" . + "text (article)" . + "oai:dialnet.unirioja.es:ART0000204419" . + . + . + "Universidad Militar Nueva Granada" . + . + "text (article)" . + . + . + "free" . + "1993" . + . + . + "Fernández Segado, Francisco" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229787" . + "application/pdf" . + "spa" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "La judicialización del Derecho Constitucional" . + "oai:dialnet.unirioja.es:ART0000204429" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 43-53" . + . + . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 97-114" . + . + . + . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229784" . + . + "Martínez Sospedra, Manuel" . + "free" . + . + "spa" . + "text (article)" . + "1993" . + . + "application/pdf" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "oai:dialnet.unirioja.es:ART0000204426" . + "La inmunidad parlamentaria: nota a la STC 206/92 de 27 de noviembre: El Tribunal Constitucional en un callejón sin salida" . + . + . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "application/pdf" . + . + . + "Martínez Dalmau, Rubén" . + "free" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=623887" . + . + . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 89-112" . + "Consideraciones sobre la transición a la democracia desde el sistema marroquí" . + "text (article)" . + . + "spa" . + . + "oai:dialnet.unirioja.es:ART0000204437" . + "2001" . + "Sevilla Merino, Julia" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "free" . + . + "1993" . + "oai:dialnet.unirioja.es:ART0000204425" . + . + . + . + . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229783" . + "spa" . + "text (article)" . + "Crónica parlamentaria del periodo de sesiones de septiembre a diciembre de 1992 de la Tercera Legislatura" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 114-119" . + . + "application/pdf" . + . + . + . + "spa" . + "oai:dialnet.unirioja.es:ART0000204436" . + "2001" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "application/pdf" . + . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 49-88" . + "Villacorta Mancebo, Luis" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=623881" . + . + . + . + . + . + "Sobre el principio estructural de autonomía en la Constitución española y su desarrollo" . + . + . + . + "Sanz Pérez, Angel L." . + "text (article)" . + . + . + "free" . + . + "free" . + "Los derechos humanos y los derechos de libertad en Hungría: ayer y hoy" . + . + "application/pdf" . + "oai:dialnet.unirioja.es:ART0000204428" . + . + . + "Szilágyi, István" . + . + "1993" . + "text (article)" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 53-73" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229786" . + "spa" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + . + . + "La escritura simbólica de la realidad social: el ejemplo de la Constitución estalinista de 1936" . + . + "spa" . + "Faraldo, José María" . + "oai:dialnet.unirioja.es:ART0000204439" . + . + . + . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=623898" . + "application/pdf" . + . + . + "text (article)" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 133-160" . + "2001" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "free" . + . + . + "Las Comisiones parlamentarias en las asambleas legislativas autonómicas" . + "spa" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + . + . + . + "1993" . + . + "Vírgala Foruria, Eduardo" . + . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229785" . + "application/pdf" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 73-97" . + "oai:dialnet.unirioja.es:ART0000204427" . + "free" . + "text (article)" . + . + "text (article)" . + "Sistemas de justicia electoral en la Europa Central y Oriental" . + "application/pdf" . + "spa" . + "2001" . + . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=623890" . + . + . + "oai:dialnet.unirioja.es:ART0000204438" . + . + "Complak, Krystian A." . + "free" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 113-132" . + . + . + . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 5-19" . + "1993" . + "text (article)" . + "El derecho de autor en la Constitución Española de 1978" . + . + "application/pdf" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229791" . + . + . + "spa" . + "free" . + "oai:dialnet.unirioja.es:ART0000204433" . + . + "Desantes Guanter, José María" . + . + . + . + . + "Moral Rincón, María José" . + "(Revista) ISSN 0210-1521" . + "2008" . + "text (article)" . + "empresas multiproducto" . + . + "Diferenciación de producto" . + "modelosde elección discreta" . + "oai:dialnet.unirioja.es:ART0000204421" . + "spa" . + "free" . + "El análisis del equilibrio en precios en mercados con producto diferenciado hamostrado un progreso notable. Este trabajo revisa la evolución y el estado de lacuestión en esta área. Se describen los principales resultados en la estimaciónde la demanda derivados de la teoría de elección discreta y de diferenciaciónespacial. Se revisan las contribuciones relacionadas con el comportamientoestratégico en precios (y publicidad) de empresas multiproducto. Se discutesobre la definición de mercado relevante y, por último, se plantea la dificultadpara pasar de una especificación estática del equilibrio a una que tenga encuenta efectos dinámicos." . + "La estimación del equilibrio en precios en mercados con producto diferenciado" . + . + . + "Investigaciones económicas, ISSN 0210-1521, Vol. 32, Nº 2, 2008, pags. 125-168" . + . + . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=2591258" . + "Fundación Empresa Pública" . + "oai:dialnet.unirioja.es:ART0000204432" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + . + . + "text (article)" . + "free" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 19-29" . + "application/pdf" . + "El Consejo Nacional de objeción de conciencia" . + . + . + . + . + "spa" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229790" . + "Oliver Araujo, Joan" . + "1993" . + . + "free" . + "Nicolau Gonzálbez, Juan Luis" . + "eng" . + "Based on Tversky and Kahneman¿s Prospect Theory, we test the existenceof reference dependence, loss aversion and diminishing sensitivity in Spanishtourism. To do this, we incorporate the reference-dependent model into aMultinomial Logit Model with Random Parameters -which controls for heterogeneity-and apply it to a sample of vacation choices made by Spaniards. Wefind that the di..erence between reference price and actual price is consideredto make decisions, confirming that reference dependence exists; that peoplereact more strongly to price increases than to price decreases relative to theirreference price, which represents evidence in favor of the loss aversion phenomenon;and that there is diminishing sensitivity for losses only, showingconvexity for these negative values." . + "Prospect theory" . + "Investigaciones económicas, ISSN 0210-1521, Vol. 32, Nº 2, 2008, pags. 231-255" . + "text (article)" . + "oai:dialnet.unirioja.es:ART0000204424" . + "tourism prices" . + "2008" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=2591279" . + . + . + . + . + . + . + "(Revista) ISSN 0210-1521" . + "Fundación Empresa Pública" . + "Testing reference dependence, loss aversion and diminishing sensitivity in Spanish tourism" . + . + . + . + . + "application/pdf" . + "spa" . + "oai:dialnet.unirioja.es:ART0000204435" . + . + "text (article)" . + "2001" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=623871" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 23-48" . + . + . + "Naranjo de la Cruz, Rafael" . + "El ámbito funcional del Gobierno cesante" . + "free" . + . + "Accruals" . + "Evidence of income-decreasing earnings management before labour negotiations within the firm" . + "Fundación Empresa Pública" . + "2008" . + "Mora Enguídanos, Araceli" . + "(Revista) ISSN 0210-1521" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=2591273" . + "collective bargaining" . + "oai:dialnet.unirioja.es:ART0000204423" . + "earnings management" . + "Investigaciones económicas, ISSN 0210-1521, Vol. 32, Nº 2, 2008, pags. 201-230" . + . + "text (article)" . + . + . + . + "Sabater Marcos, Ana María" . + "The \"political costs\" hypothesis predicts that labour bargaining creates incentivesto reduce accounting earnings in order to avoid salary demands. Previousstudies in countries with a \"close shop system\", such as the U.S. andCanada, have obtained mixed results. We argue that the political costs hypothesisis better suited to the \"open shop system\" of Continental Europeancountries. Using a sample of Spanish companies, Jones (1991) model andits extensions are used to analyse total and discretionary accruals around thetime of labour negotiations. The evidence that we obtain is consistent withthe hypothesis that managers depress earnings prior to negotiations." . + "free" . + . + "eng" . + . + . + . + . + . + . + . + . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 5-22" . + . + "2001" . + "free" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "Multiculturalismo y Constitución" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=623869" . + "Ruiz Miguel, Carlos" . + . + . + "oai:dialnet.unirioja.es:ART0000204434" . + . + "text (article)" . + "application/pdf" . + . + "spa" . + . + . + . + "free" . + . + "spa" . + "oai:dialnet.unirioja.es:ART0000204440" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=623905" . + "text (article)" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 161-194" . + "application/pdf" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "Los parlamentos y el tiempo: el ejemplo inglés hasta la \"Revolución Gloriosa\"" . + "Guillén López, Enrique" . + "2001" . + . + . + . + . + "spa" . + "text (article)" . + . + "1993" . + . + "free" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229789" . + . + . + . + "application/pdf" . + "oai:dialnet.unirioja.es:ART0000204431" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 29-37" . + . + "El marco constitucional del pluralismo: Especial referencia al plurilingüismo" . + "Pérez Francesch, Joan Lluís" . + . + "spa" . + . + "text (article)" . + "free" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=229788" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 37-43" . + "oai:dialnet.unirioja.es:ART0000204430" . + "Bueno Castellote, José María" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + . + . + . + . + . + "1993" . + "application/pdf" . + "Las penas privativas de libertad en la Constitución" . + . + "text (article)" . + "http://dialnet.unirioja.es/servlet/oaiart?codigo=623913" . + "Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración" . + . + "Marrades Puig, Ana I." . + "2001" . + "Los derechos políticos de las mujeres: evolución y retos pendientes" . + "Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 195-214" . + "oai:dialnet.unirioja.es:ART0000204441" . + . + "spa" . + . + "application/pdf" . + "free" . + . diff --git a/test/data/suites/trix/trix-test2.trix b/test/data/suites/trix/trix-test2.trix new file mode 100644 index 000000000..cc70909cd --- /dev/null +++ b/test/data/suites/trix/trix-test2.trix @@ -0,0 +1,2065 @@ + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-d6dae676a10e94169107a77e57789892-76f95f8c45e93bedd0e9afd618635ca2 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-d6dae676a10e94169107a77e57789892-76f95f8c45e93bedd0e9afd618635ca2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-d6dae676a10e94169107a77e57789892-76f95f8c45e93bedd0e9afd618635ca2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/identifier + (Revista) ISSN 0121-6805 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/creator + Barragán Días, Diego Mauricio + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-d6dae676a10e94169107a77e57789892-76f95f8c45e93bedd0e9afd618635ca2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=2591019 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/source + Revista Facultad de Ciencias Económicas: Investigación y Reflexión, ISSN 0121-6805, Vol. 15, Nº. 2, 2007 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-d6dae676a10e94169107a77e57789892-76f95f8c45e93bedd0e9afd618635ca2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/date + 2007 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/title + Orden social en la Colombia de los siglos XIII y XIX + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204419 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-d6dae676a10e94169107a77e57789892-76f95f8c45e93bedd0e9afd618635ca2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204419 + http://purl.org/dc/elements/1.1/publisher + Universidad Militar Nueva Granada + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-73c79d65e3a44a7fc1d6bcecc3e5ad33-78cf728bc1aeae9af61a994a3802142c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-73c79d65e3a44a7fc1d6bcecc3e5ad33-78cf728bc1aeae9af61a994a3802142c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-73c79d65e3a44a7fc1d6bcecc3e5ad33-78cf728bc1aeae9af61a994a3802142c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-73c79d65e3a44a7fc1d6bcecc3e5ad33-78cf728bc1aeae9af61a994a3802142c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/creator + Fernández Segado, Francisco + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229787 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/title + La judicialización del Derecho Constitucional + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204429 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 43-53 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204429 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-73c79d65e3a44a7fc1d6bcecc3e5ad33-78cf728bc1aeae9af61a994a3802142c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-73c79d65e3a44a7fc1d6bcecc3e5ad33-78cf728bc1aeae9af61a994a3802142c + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 97-114 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-72cc885396391c403eb13dbc913c298d-2df040b29170650414ff7c93c8eab63b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-72cc885396391c403eb13dbc913c298d-2df040b29170650414ff7c93c8eab63b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-72cc885396391c403eb13dbc913c298d-2df040b29170650414ff7c93c8eab63b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229784 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/creator + Martínez Sospedra, Manuel + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-72cc885396391c403eb13dbc913c298d-2df040b29170650414ff7c93c8eab63b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-72cc885396391c403eb13dbc913c298d-2df040b29170650414ff7c93c8eab63b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204426 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204426 + http://purl.org/dc/elements/1.1/title + La inmunidad parlamentaria: nota a la STC 206/92 de 27 de noviembre: El Tribunal Constitucional en un callejón sin salida + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-72cc885396391c403eb13dbc913c298d-2df040b29170650414ff7c93c8eab63b + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-cd2a4644ed6069fd0ba48a2a298b0f5f-c01e4856727cecd743ba64cd1783abe0 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-cd2a4644ed6069fd0ba48a2a298b0f5f-c01e4856727cecd743ba64cd1783abe0 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-cd2a4644ed6069fd0ba48a2a298b0f5f-c01e4856727cecd743ba64cd1783abe0 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/creator + Martínez Dalmau, Rubén + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=623887 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-cd2a4644ed6069fd0ba48a2a298b0f5f-c01e4856727cecd743ba64cd1783abe0 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 89-112 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/title + Consideraciones sobre la transición a la democracia desde el sistema marroquí + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-cd2a4644ed6069fd0ba48a2a298b0f5f-c01e4856727cecd743ba64cd1783abe0 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-cd2a4644ed6069fd0ba48a2a298b0f5f-c01e4856727cecd743ba64cd1783abe0 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204437 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204437 + http://purl.org/dc/elements/1.1/date + 2001 + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-39fdce747e4c51af57b451e3f1ecd6c3-58e973730d767322feee83d69e6dcf3d + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/creator + Sevilla Merino, Julia + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-39fdce747e4c51af57b451e3f1ecd6c3-58e973730d767322feee83d69e6dcf3d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204425 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-39fdce747e4c51af57b451e3f1ecd6c3-58e973730d767322feee83d69e6dcf3d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-39fdce747e4c51af57b451e3f1ecd6c3-58e973730d767322feee83d69e6dcf3d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-39fdce747e4c51af57b451e3f1ecd6c3-58e973730d767322feee83d69e6dcf3d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229783 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/title + Crónica parlamentaria del periodo de sesiones de septiembre a diciembre de 1992 de la Tercera Legislatura + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 114-119 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-39fdce747e4c51af57b451e3f1ecd6c3-58e973730d767322feee83d69e6dcf3d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204425 + http://purl.org/dc/elements/1.1/format + application/pdf + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3749c15579da6a5b96d04adfc7349ee9-8669827c03c7baf90bea5d14c43f34c8 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-a0cfd9b788a053238781d7e5a8877b18-8669827c03c7baf90bea5d14c43f34c8 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204436 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/date + 2001 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3749c15579da6a5b96d04adfc7349ee9-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 49-88 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/creator + Villacorta Mancebo, Luis + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=623881 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-a0cfd9b788a053238781d7e5a8877b18-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3749c15579da6a5b96d04adfc7349ee9-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3749c15579da6a5b96d04adfc7349ee9-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-a0cfd9b788a053238781d7e5a8877b18-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/title + Sobre el principio estructural de autonomía en la Constitución española y su desarrollo + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3749c15579da6a5b96d04adfc7349ee9-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-a0cfd9b788a053238781d7e5a8877b18-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-a0cfd9b788a053238781d7e5a8877b18-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/creator + Sanz Pérez, Angel L. + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3749c15579da6a5b96d04adfc7349ee9-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-a0cfd9b788a053238781d7e5a8877b18-8669827c03c7baf90bea5d14c43f34c8 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204436 + http://purl.org/dc/elements/1.1/rights + free + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-79e53686acadf39500ff7d6170dc76ac-ccf9ff929a4ef0e82458cd8ac75f2ec2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/title + Los derechos humanos y los derechos de libertad en Hungría: ayer y hoy + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-79e53686acadf39500ff7d6170dc76ac-ccf9ff929a4ef0e82458cd8ac75f2ec2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-79e53686acadf39500ff7d6170dc76ac-ccf9ff929a4ef0e82458cd8ac75f2ec2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204428 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/creator + Szilágyi, István + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-79e53686acadf39500ff7d6170dc76ac-ccf9ff929a4ef0e82458cd8ac75f2ec2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229786 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 53-73 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204428 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-79e53686acadf39500ff7d6170dc76ac-ccf9ff929a4ef0e82458cd8ac75f2ec2 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-79e53686acadf39500ff7d6170dc76ac-ccf9ff929a4ef0e82458cd8ac75f2ec2 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/title + La escritura simbólica de la realidad social: el ejemplo de la Constitución estalinista de 1936 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3168620272481df5548415492d6f730a-599fe0ba406688dc7128f477366abe49 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/creator + Faraldo, José María + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204439 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3168620272481df5548415492d6f730a-599fe0ba406688dc7128f477366abe49 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3168620272481df5548415492d6f730a-599fe0ba406688dc7128f477366abe49 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=623898 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3168620272481df5548415492d6f730a-599fe0ba406688dc7128f477366abe49 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3168620272481df5548415492d6f730a-599fe0ba406688dc7128f477366abe49 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 133-160 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/date + 2001 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204439 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-3168620272481df5548415492d6f730a-599fe0ba406688dc7128f477366abe49 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d8480f43eb06332b611dc726143e0c9-ccbbadf75f322c6887a0a2688c071405 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/title + Las Comisiones parlamentarias en las asambleas legislativas autonómicas + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d8480f43eb06332b611dc726143e0c9-ccbbadf75f322c6887a0a2688c071405 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d8480f43eb06332b611dc726143e0c9-ccbbadf75f322c6887a0a2688c071405 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d8480f43eb06332b611dc726143e0c9-ccbbadf75f322c6887a0a2688c071405 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d8480f43eb06332b611dc726143e0c9-ccbbadf75f322c6887a0a2688c071405 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/creator + Vírgala Foruria, Eduardo + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229785 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 73-97 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204427 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204427 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d8480f43eb06332b611dc726143e0c9-ccbbadf75f322c6887a0a2688c071405 + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/title + Sistemas de justicia electoral en la Europa Central y Oriental + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/date + 2001 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-76bdf2431e57149136a732b3fe6631eb-746639ca08da0d602a0a822a08a2f954 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-76bdf2431e57149136a732b3fe6631eb-746639ca08da0d602a0a822a08a2f954 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=623890 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-76bdf2431e57149136a732b3fe6631eb-746639ca08da0d602a0a822a08a2f954 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204438 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-76bdf2431e57149136a732b3fe6631eb-746639ca08da0d602a0a822a08a2f954 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/creator + Complak, Krystian A. + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 113-132 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204438 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-76bdf2431e57149136a732b3fe6631eb-746639ca08da0d602a0a822a08a2f954 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-76bdf2431e57149136a732b3fe6631eb-746639ca08da0d602a0a822a08a2f954 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8be3a6e25818a8b218327bc304b86be5-3166089aa6d3e2f10ef86fd3038f7102 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 5-19 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/title + El derecho de autor en la Constitución Española de 1978 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8be3a6e25818a8b218327bc304b86be5-3166089aa6d3e2f10ef86fd3038f7102 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229791 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8be3a6e25818a8b218327bc304b86be5-3166089aa6d3e2f10ef86fd3038f7102 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204433 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8be3a6e25818a8b218327bc304b86be5-3166089aa6d3e2f10ef86fd3038f7102 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/creator + Desantes Guanter, José María + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8be3a6e25818a8b218327bc304b86be5-3166089aa6d3e2f10ef86fd3038f7102 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204433 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8be3a6e25818a8b218327bc304b86be5-3166089aa6d3e2f10ef86fd3038f7102 + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-878d03ef618b9a8c9e96107cc72f0f75-1a3d58e2425e62cfa80dd17dcbd8c1a9 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-878d03ef618b9a8c9e96107cc72f0f75-1a3d58e2425e62cfa80dd17dcbd8c1a9 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/creator + Moral Rincón, María José + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/identifier + (Revista) ISSN 0210-1521 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/date + 2008 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/subject + empresas multiproducto + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-878d03ef618b9a8c9e96107cc72f0f75-1a3d58e2425e62cfa80dd17dcbd8c1a9 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/subject + Diferenciación de producto + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/subject + modelosde elección discreta + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204421 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/description + El análisis del equilibrio en precios en mercados con producto diferenciado hamostrado un progreso notable. Este trabajo revisa la evolución y el estado de lacuestión en esta área. Se describen los principales resultados en la estimaciónde la demanda derivados de la teoría de elección discreta y de diferenciaciónespacial. Se revisan las contribuciones relacionadas con el comportamientoestratégico en precios (y publicidad) de empresas multiproducto. Se discutesobre la definición de mercado relevante y, por último, se plantea la dificultadpara pasar de una especificación estática del equilibrio a una que tenga encuenta efectos dinámicos. + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/title + La estimación del equilibrio en precios en mercados con producto diferenciado + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-878d03ef618b9a8c9e96107cc72f0f75-1a3d58e2425e62cfa80dd17dcbd8c1a9 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/source + Investigaciones económicas, ISSN 0210-1521, Vol. 32, Nº 2, 2008, pags. 125-168 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-878d03ef618b9a8c9e96107cc72f0f75-1a3d58e2425e62cfa80dd17dcbd8c1a9 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-878d03ef618b9a8c9e96107cc72f0f75-1a3d58e2425e62cfa80dd17dcbd8c1a9 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=2591258 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204421 + http://purl.org/dc/elements/1.1/publisher + Fundación Empresa Pública + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204432 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-676532b48b2e19309a3db360ab183ba7-be0669c9c5f26c5a176272dca5df3dca + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-676532b48b2e19309a3db360ab183ba7-be0669c9c5f26c5a176272dca5df3dca + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 19-29 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/title + El Consejo Nacional de objeción de conciencia + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-676532b48b2e19309a3db360ab183ba7-be0669c9c5f26c5a176272dca5df3dca + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-676532b48b2e19309a3db360ab183ba7-be0669c9c5f26c5a176272dca5df3dca + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-676532b48b2e19309a3db360ab183ba7-be0669c9c5f26c5a176272dca5df3dca + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229790 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/creator + Oliver Araujo, Joan + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204432 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-676532b48b2e19309a3db360ab183ba7-be0669c9c5f26c5a176272dca5df3dca + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/creator + Nicolau Gonzálbez, Juan Luis + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/language + eng + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/description + Based on Tversky and Kahneman¿s Prospect Theory, we test the existenceof reference dependence, loss aversion and diminishing sensitivity in Spanishtourism. To do this, we incorporate the reference-dependent model into aMultinomial Logit Model with Random Parameters -which controls for heterogeneity-and apply it to a sample of vacation choices made by Spaniards. Wefind that the di..erence between reference price and actual price is consideredto make decisions, confirming that reference dependence exists; that peoplereact more strongly to price increases than to price decreases relative to theirreference price, which represents evidence in favor of the loss aversion phenomenon;and that there is diminishing sensitivity for losses only, showingconvexity for these negative values. + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/subject + Prospect theory + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/source + Investigaciones económicas, ISSN 0210-1521, Vol. 32, Nº 2, 2008, pags. 231-255 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204424 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/subject + tourism prices + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/date + 2008 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8544d1d580530f46560a48ac4e251ab5-330202caab71a6dc1be5b577cba4630d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8544d1d580530f46560a48ac4e251ab5-330202caab71a6dc1be5b577cba4630d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=2591279 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8544d1d580530f46560a48ac4e251ab5-330202caab71a6dc1be5b577cba4630d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8544d1d580530f46560a48ac4e251ab5-330202caab71a6dc1be5b577cba4630d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8544d1d580530f46560a48ac4e251ab5-330202caab71a6dc1be5b577cba4630d + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/publisher + Fundación Empresa Pública + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/identifier + (Revista) ISSN 0210-1521 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204424 + http://purl.org/dc/elements/1.1/title + Testing reference dependence, loss aversion and diminishing sensitivity in Spanish tourism + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-8544d1d580530f46560a48ac4e251ab5-330202caab71a6dc1be5b577cba4630d + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-0ebafd0bf4b6a4f31654ef5b105ce8fd-0449f379309d7c97f62d8a790d3db926 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-0ebafd0bf4b6a4f31654ef5b105ce8fd-0449f379309d7c97f62d8a790d3db926 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-0ebafd0bf4b6a4f31654ef5b105ce8fd-0449f379309d7c97f62d8a790d3db926 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-0ebafd0bf4b6a4f31654ef5b105ce8fd-0449f379309d7c97f62d8a790d3db926 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204435 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/date + 2001 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-0ebafd0bf4b6a4f31654ef5b105ce8fd-0449f379309d7c97f62d8a790d3db926 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 23-48 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=623871 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-0ebafd0bf4b6a4f31654ef5b105ce8fd-0449f379309d7c97f62d8a790d3db926 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/creator + Naranjo de la Cruz, Rafael + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/title + El ámbito funcional del Gobierno cesante + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204435 + http://purl.org/dc/elements/1.1/rights + free + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-c7aeed2d13b3ad3a47aadcd7c427e6de-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/subject + Accruals + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/title + Evidence of income-decreasing earnings management before labour negotiations within the firm + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/date + 2008 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/publisher + Fundación Empresa Pública + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/creator + Mora Enguídanos, Araceli + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/identifier + (Revista) ISSN 0210-1521 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=2591273 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/subject + collective bargaining + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204423 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/subject + earnings management + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/source + Investigaciones económicas, ISSN 0210-1521, Vol. 32, Nº 2, 2008, pags. 201-230 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-446ef3ca8151e5efe9e29b425793282b-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-c7aeed2d13b3ad3a47aadcd7c427e6de-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-446ef3ca8151e5efe9e29b425793282b-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-c7aeed2d13b3ad3a47aadcd7c427e6de-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/creator + Sabater Marcos, Ana María + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/description + The "political costs" hypothesis predicts that labour bargaining creates incentivesto reduce accounting earnings in order to avoid salary demands. Previousstudies in countries with a "close shop system", such as the U.S. andCanada, have obtained mixed results. We argue that the political costs hypothesisis better suited to the "open shop system" of Continental Europeancountries. Using a sample of Spanish companies, Jones (1991) model andits extensions are used to analyse total and discretionary accruals around thetime of labour negotiations. The evidence that we obtain is consistent withthe hypothesis that managers depress earnings prior to negotiations. + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-446ef3ca8151e5efe9e29b425793282b-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/language + eng + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-c7aeed2d13b3ad3a47aadcd7c427e6de-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-c7aeed2d13b3ad3a47aadcd7c427e6de-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-446ef3ca8151e5efe9e29b425793282b-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204423 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-446ef3ca8151e5efe9e29b425793282b-8180908c7b79f79b69cbafc30249059c + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-446ef3ca8151e5efe9e29b425793282b-8180908c7b79f79b69cbafc30249059c + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-c7aeed2d13b3ad3a47aadcd7c427e6de-8180908c7b79f79b69cbafc30249059c + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d556d5bc682baafeafe1256a7d60c22-947656405b7ab4c15809619b9e52f864 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 5-22 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d556d5bc682baafeafe1256a7d60c22-947656405b7ab4c15809619b9e52f864 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/date + 2001 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/title + Multiculturalismo y Constitución + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=623869 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/creator + Ruiz Miguel, Carlos + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d556d5bc682baafeafe1256a7d60c22-947656405b7ab4c15809619b9e52f864 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d556d5bc682baafeafe1256a7d60c22-947656405b7ab4c15809619b9e52f864 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204434 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d556d5bc682baafeafe1256a7d60c22-947656405b7ab4c15809619b9e52f864 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204434 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-5d556d5bc682baafeafe1256a7d60c22-947656405b7ab4c15809619b9e52f864 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-765beb95d9db14418a5f104e7bbcc4fd-2208b00aee77cdca7eaa1c653baee94b + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-765beb95d9db14418a5f104e7bbcc4fd-2208b00aee77cdca7eaa1c653baee94b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-765beb95d9db14418a5f104e7bbcc4fd-2208b00aee77cdca7eaa1c653baee94b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-765beb95d9db14418a5f104e7bbcc4fd-2208b00aee77cdca7eaa1c653baee94b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204440 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=623905 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 161-194 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/title + Los parlamentos y el tiempo: el ejemplo inglés hasta la "Revolución Gloriosa" + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/creator + Guillén López, Enrique + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/date + 2001 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-765beb95d9db14418a5f104e7bbcc4fd-2208b00aee77cdca7eaa1c653baee94b + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204440 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-765beb95d9db14418a5f104e7bbcc4fd-2208b00aee77cdca7eaa1c653baee94b + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-7158755a61a03ac56fcbc097410f175e-b2be5729cfc798902e78cc1495d05361 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-7158755a61a03ac56fcbc097410f175e-b2be5729cfc798902e78cc1495d05361 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-7158755a61a03ac56fcbc097410f175e-b2be5729cfc798902e78cc1495d05361 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229789 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-7158755a61a03ac56fcbc097410f175e-b2be5729cfc798902e78cc1495d05361 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-7158755a61a03ac56fcbc097410f175e-b2be5729cfc798902e78cc1495d05361 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-7158755a61a03ac56fcbc097410f175e-b2be5729cfc798902e78cc1495d05361 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204431 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 29-37 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/creator + Pérez Francesch, Joan Lluís + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204431 + http://purl.org/dc/elements/1.1/title + El marco constitucional del pluralismo: Especial referencia al plurilingüismo + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://xmlns.com/foaf/0.1/maker + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-2fa9954061caebd6e7a7785c512fb916-85981bb838eae292e9ce68abab79bc96 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=229788 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 3, 1993, pags. 37-43 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204430 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/creator + Bueno Castellote, José María + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-2fa9954061caebd6e7a7785c512fb916-85981bb838eae292e9ce68abab79bc96 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-2fa9954061caebd6e7a7785c512fb916-85981bb838eae292e9ce68abab79bc96 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-2fa9954061caebd6e7a7785c512fb916-85981bb838eae292e9ce68abab79bc96 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/terms/contributor + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-2fa9954061caebd6e7a7785c512fb916-85981bb838eae292e9ce68abab79bc96 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/date + 1993 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204430 + http://purl.org/dc/elements/1.1/title + Las penas privativas de libertad en la Constitución + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-2fa9954061caebd6e7a7785c512fb916-85981bb838eae292e9ce68abab79bc96 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/type + text (article) + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/identifier + http://dialnet.unirioja.es/servlet/oaiart?codigo=623913 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/publisher + Universitat de València: Departamento de Derecho Constitucional y Ciencia Política y de la Administración + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/terms/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-f0dd1972357d0c8728b23d9b848c3f76-172ce81ec45124f25c9a75b14e7727f7 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/creator + Marrades Puig, Ana I. + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/date + 2001 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/title + Los derechos políticos de las mujeres: evolución y retos pendientes + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/source + Cuadernos constitucionales de la Cátedra Fadrique Furió Ceriol, ISSN 1135-0679, Nº 36-37, 2001, pags. 195-214 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/creator + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-f0dd1972357d0c8728b23d9b848c3f76-172ce81ec45124f25c9a75b14e7727f7 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/identifier + oai:dialnet.unirioja.es:ART0000204441 + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/language + spa + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/format + application/pdf + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/BibliographicResource + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/oai:dialnet.unirioja.es:ART0000204441 + http://purl.org/dc/elements/1.1/rights + free + + + http://oai.rkbexplorer.com/id/dialnet.unirioja.es/person-f0dd1972357d0c8728b23d9b848c3f76-172ce81ec45124f25c9a75b14e7727f7 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://purl.org/dc/terms/Agent + + + diff --git a/test/data/suites/trix/trix-test3.nq b/test/data/suites/trix/trix-test3.nq new file mode 100644 index 000000000..ac1b9e5b0 --- /dev/null +++ b/test/data/suites/trix/trix-test3.nq @@ -0,0 +1,7 @@ + . + . + "Tennis" . + . + "Demi Moore" . + . + "Venus Williams" . diff --git a/test/data/suites/trix/trix-test3.trix b/test/data/suites/trix/trix-test3.trix new file mode 100644 index 000000000..632258126 --- /dev/null +++ b/test/data/suites/trix/trix-test3.trix @@ -0,0 +1,46 @@ + + + http://example.org/graph/practise + + http://example.com/resource/student_10 + http://example.com/ontology/practises + http://example.com/resource/sport_100 + + + + http://example.org/graph/sports + + http://example.com/resource/sport_100 + http://www.w3.org/2000/01/rdf-schema#label + Tennis + + + http://example.com/resource/sport_100 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://example.com/ontology/Sport + + + + http://example.org/graph/students + + http://example.com/resource/student_20 + http://xmlns.com/foaf/0.1/name + Demi Moore + + + http://example.com/resource/student_20 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://example.com/ontology/Student + + + http://example.com/resource/student_10 + http://xmlns.com/foaf/0.1/name + Venus Williams + + + http://example.com/resource/student_10 + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://example.com/ontology/Student + + + diff --git a/test/data/suites/trix/trix-test4.nq b/test/data/suites/trix/trix-test4.nq new file mode 100644 index 000000000..fd8d7c5a6 --- /dev/null +++ b/test/data/suites/trix/trix-test4.nq @@ -0,0 +1,50 @@ + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + "2010-09-11T10:59:00+0000"^^ . + "PS3 jailbroken with... a TI-84 Plus calculator" . + "Sure, you can jailbreak a PS3 using a USB drive , or even a Palm Pre or Nokia N900 -- but isn't that a little too straightforward? Jailbreaking a PS3 with a TI-84 Plus calculator, on the other hand; well, that's more like it. Still skeptical? Head on past the break for the video evidence, and hit up the source link below for the necessary details to perform the feat yourself. And don't worry -- no calculators were harmed in the making of this exploit. Continue reading PS3 jailbroken with... a TI-84 Plus calculator PS3 jailbroken with... a TI-84 Plus calculator originally appeared on Engadget on Sat, 11 Sep 2010 06:59:00 EDT. Please see our terms for use of feeds . Permalink   Hack a Day  |  brandonw.net  |  Email this  |  Comments" . + . + . + "2010-09-11T12:46:00+0000"^^ . + "Rockchip shows off Android-based desk phone, won't sell you one" . + "We unfortunately didn't spot this one ourselves at IFA , but it looks like Rockchip had more than just the usual tablets on display at the show -- it also had this Android-based desk phone tucked away at its booth. Before you get too excited, however (tough, we know), we should point out that Rockchip is apparently just using the phone as a showcase for its own chipset, which it hopes will be used in a whole range of different Android-based devices. The prototype on display was apparently fully functional though, and included both landline and 3G connectivity, and a built-in camera for video calls -- so there may be at least a slight chance that it could wind up as an actual product someday. Rockchip shows off Android-based desk phone, won't sell you one originally appeared on Engadget on Sat, 11 Sep 2010 08:46:00 EDT. Please see our terms for use of feeds . Permalink   SlashGear  |  iMP3.net  |  Email this  |  Comments" . + . + . + "2010-09-11T13:59:00+0000"^^ . + "1TB hard drive thrown into a toy TARDIS, gives us a proper Time Machine" . + "It's common knowledge that the Doctor 's time- and space-bending TARDIS is a lot roomier on the inside than its external dimensions let on, and now we can put a definite number to just how much space there is in there: a terabyte. Yup, that's how much storage Max Shanly managed to cram inside his \"toy\" TARDIS. It took a bit of elbow grease (plus a screwdriver) to get it all to fit, but most of the credit here is for sheer ingenuity -- who doesn't want to back up his data onto a freaking Time Lord's intertemporal transportation device? Max is currently working on hooking up the flashing light up top to represent hard drive activity and we're calling up our favorite KIRF suppliers to get them cranking these out. [Thanks, Max] Gallery: 1TB hard drive thrown into a toy TARDIS 1TB hard drive thrown into a toy TARDIS, gives us a proper Time Machine originally appeared on Engadget on Sat, 11 Sep 2010 09:59:00 EDT. Please see our terms for use of feeds . Permalink    |   |  Email this  |  Comments" . + . + . + "2010-09-11T12:13:28+0000"^^ . + "Patent Office Admits Truth — Things Are a Disaster" . + "An anonymous reader writes \"For years the US Patent and Trademark Office has published data to show how well it and the patent system were running. Under new leadership, the USPTO has begun to publish a dashboard of information, including a new look at questions like how long does it really take to get a final answer on whether you will receive a patent or not? The pat answer was, on the average, about 3 years. But with the new figures, it's obvious that the real number, when you don't play games with how you define a patent application, is six years. The backlog of patents is almost 730K. And the Commerce Department under the Obama administration wants the average down to 20 months. How does this happen? Only if everyone closes their eyes and pretends. It's time to take drastic action, like ending software patents. As it is, by the time companies get a software patent, there's little value to them because, after six years, the industry has already moved on.\" Read more of this story at Slashdot." . + . + . + "2010-09-11T13:10:29+0000"^^ . + "Google TV Next Month, Boxee In November" . + "itwbennett writes \"In a WSJ interview, Intel CEO Paul Otellini said that 'Google TV starts shipping this month.' Although, as blogger Peter Smith notes, 'Exactly which devices he means isn't clear. Sony TVs and the Logitech Revue will be the first out so if he is referring to a finished consumer project, he's referring to one or the other of those, but as CNET points out, he might be referring to product shipping to retail rather than being on sale to consumers this month. Either way, it looks like you'll be able to have Google TV in your living room by sometime in October at the latest.' What, if anything does this mean for the Boxee Box, which is still due in November? 'If Google is out there first, and puts marketing muscle behind Google TV (and of course they're including it built into some televisions) it might be hard for Boxee to find its niche,' says Smith. 'Particularly with that bizarre form factor that won't fit anywhere.'\" Read more of this story at Slashdot." . + . + . diff --git a/test/data/suites/trix/trix-test4.trix b/test/data/suites/trix/trix-test4.trix new file mode 100644 index 000000000..71e73cfc6 --- /dev/null +++ b/test/data/suites/trix/trix-test4.trix @@ -0,0 +1,264 @@ + + + http://www.multipla-project.org/research-esa-service/analyze + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://xmlns.com/foaf/0.1/topic + http://en.wikipedia.org/wiki/Category:308 + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://xmlns.com/foaf/0.1/topic + http://en.wikipedia.org/wiki/Category:Auto_shows + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://xmlns.com/foaf/0.1/topic + http://en.wikipedia.org/wiki/Category:Google + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://xmlns.com/foaf/0.1/topic + http://en.wikipedia.org/wiki/Category:1931_songs + + + + http://km.aifb.kit.edu/services/wpmservlet-en/web/service + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/United_States_Patent_and_Trademark_Office + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Software_patent + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/software_patent + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/real_number + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Patent + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/patent + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/patent_application + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Permalink + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Engadget + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/E-mail + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/3G + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Slashdot + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Logitech + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Intel_Corporation + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Google + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/CNET_Networks + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Boxee + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/terabyte + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/TARDIS + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/Hard_disk_drive + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://www.w3.org/2000/01/rdf-schema#seeAlso + http://en.wikipedia.org/wiki/E-mail + + + + http://www.engadget.com/rss.xml + + http://www.engadget.com/2010/09/11/ps3-jailbroken-with-a-ti-84-plus-calculator/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://rdfs.org/sioc/ns#Post + + + http://www.engadget.com/2010/09/11/ps3-jailbroken-with-a-ti-84-plus-calculator/ + http://rdfs.org/sioc/ns#has_container + http://engadget.com/ + + + http://www.engadget.com/2010/09/11/ps3-jailbroken-with-a-ti-84-plus-calculator/ + http://rdfs.org/sioc/ns#content + Sure, you can jailbreak a PS3 using a USB drive , or even a Palm Pre or Nokia N900 -- but isn't that a little too straightforward? Jailbreaking a PS3 with a TI-84 Plus calculator, on the other hand; well, that's more like it. Still skeptical? Head on past the break for the video evidence, and hit up the source link below for the necessary details to perform the feat yourself. And don't worry -- no calculators were harmed in the making of this exploit. Continue reading PS3 jailbroken with... a TI-84 Plus calculator PS3 jailbroken with... a TI-84 Plus calculator originally appeared on Engadget on Sat, 11 Sep 2010 06:59:00 EDT. Please see our terms for use of feeds . Permalink &#160; Hack a Day &#160;|&#160; brandonw.net &#160;|&#160; Email this &#160;|&#160; Comments + + + http://www.engadget.com/2010/09/11/ps3-jailbroken-with-a-ti-84-plus-calculator/ + http://purl.org/dc/terms/title + PS3 jailbroken with... a TI-84 Plus calculator + + + http://www.engadget.com/2010/09/11/ps3-jailbroken-with-a-ti-84-plus-calculator/ + http://purl.org/dc/terms/date + 2010-09-11T10:59:00+0000 + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://rdfs.org/sioc/ns#Post + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://rdfs.org/sioc/ns#has_container + http://engadget.com/ + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://rdfs.org/sioc/ns#content + We unfortunately didn't spot this one ourselves at IFA , but it looks like Rockchip had more than just the usual tablets on display at the show -- it also had this Android-based desk phone tucked away at its booth. Before you get too excited, however (tough, we know), we should point out that Rockchip is apparently just using the phone as a showcase for its own chipset, which it hopes will be used in a whole range of different Android-based devices. The prototype on display was apparently fully functional though, and included both landline and 3G connectivity, and a built-in camera for video calls -- so there may be at least a slight chance that it could wind up as an actual product someday. Rockchip shows off Android-based desk phone, won't sell you one originally appeared on Engadget on Sat, 11 Sep 2010 08:46:00 EDT. Please see our terms for use of feeds . Permalink &#160; SlashGear &#160;|&#160; iMP3.net &#160;|&#160; Email this &#160;|&#160; Comments + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://purl.org/dc/terms/title + Rockchip shows off Android-based desk phone, won't sell you one + + + http://www.engadget.com/2010/09/11/rockchip-shows-off-android-based-desk-phone-wont-sell-you-one/ + http://purl.org/dc/terms/date + 2010-09-11T12:46:00+0000 + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://rdfs.org/sioc/ns#Post + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://rdfs.org/sioc/ns#has_container + http://engadget.com/ + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://rdfs.org/sioc/ns#content + It's common knowledge that the Doctor 's time- and space-bending TARDIS is a lot roomier on the inside than its external dimensions let on, and now we can put a definite number to just how much space there is in there: a terabyte. Yup, that's how much storage Max Shanly managed to cram inside his "toy" TARDIS. It took a bit of elbow grease (plus a screwdriver) to get it all to fit, but most of the credit here is for sheer ingenuity -- who doesn't want to back up his data onto a freaking Time Lord's intertemporal transportation device? Max is currently working on hooking up the flashing light up top to represent hard drive activity and we're calling up our favorite KIRF suppliers to get them cranking these out. [Thanks, Max] Gallery: 1TB hard drive thrown into a toy TARDIS 1TB hard drive thrown into a toy TARDIS, gives us a proper Time Machine originally appeared on Engadget on Sat, 11 Sep 2010 09:59:00 EDT. Please see our terms for use of feeds . Permalink &#160; &#160;|&#160; &#160;|&#160; Email this &#160;|&#160; Comments + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://purl.org/dc/terms/title + 1TB hard drive thrown into a toy TARDIS, gives us a proper Time Machine + + + http://www.engadget.com/2010/09/11/1tb-hard-drive-thrown-into-a-toy-tardis-gives-us-a-proper-time/ + http://purl.org/dc/terms/date + 2010-09-11T13:59:00+0000 + + + + http://rss.slashdot.org/Slashdot/slashdot + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://rdfs.org/sioc/ns#Post + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://rdfs.org/sioc/ns#has_container + http://slashdot.org/ + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://rdfs.org/sioc/ns#content + An anonymous reader writes "For years the US Patent and Trademark Office has published data to show how well it and the patent system were running. Under new leadership, the USPTO has begun to publish a dashboard of information, including a new look at questions like how long does it really take to get a final answer on whether you will receive a patent or not? The pat answer was, on the average, about 3 years. But with the new figures, it's obvious that the real number, when you don't play games with how you define a patent application, is six years. The backlog of patents is almost 730K. And the Commerce Department under the Obama administration wants the average down to 20 months. How does this happen? Only if everyone closes their eyes and pretends. It's time to take drastic action, like ending software patents. As it is, by the time companies get a software patent, there's little value to them because, after six years, the industry has already moved on." Read more of this story at Slashdot. + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://purl.org/dc/terms/title + Patent Office Admits Truth &mdash; Things Are a Disaster + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da63190/l/0Lyro0Bslashdot0Borg0Cstory0C10A0C0A90C110C0A542120CPatent0EOffice0EAdmits0ETruth0Emdash0EThings0EAre0Ea0EDisaster0Dfrom0Frss/story01.htm + http://purl.org/dc/terms/date + 2010-09-11T12:13:28+0000 + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://www.w3.org/1999/02/22-rdf-syntax-ns#type + http://rdfs.org/sioc/ns#Post + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://rdfs.org/sioc/ns#has_container + http://slashdot.org/ + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://rdfs.org/sioc/ns#content + itwbennett writes "In a WSJ interview, Intel CEO Paul Otellini said that 'Google TV starts shipping this month.' Although, as blogger Peter Smith notes, 'Exactly which devices he means isn't clear. Sony TVs and the Logitech Revue will be the first out so if he is referring to a finished consumer project, he's referring to one or the other of those, but as CNET points out, he might be referring to product shipping to retail rather than being on sale to consumers this month. Either way, it looks like you'll be able to have Google TV in your living room by sometime in October at the latest.' What, if anything does this mean for the Boxee Box, which is still due in November? 'If Google is out there first, and puts marketing muscle behind Google TV (and of course they're including it built into some televisions) it might be hard for Boxee to find its niche,' says Smith. 'Particularly with that bizarre form factor that won't fit anywhere.'" Read more of this story at Slashdot. + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://purl.org/dc/terms/title + Google TV Next Month, Boxee In November + + + http://slashdot.feedsportal.com/c/32909/f/530758/s/da6847f/l/0Ltech0Bslashdot0Borg0Cstory0C10A0C0A90C110C11522160CGoogle0ETV0ENext0EMonth0EBoxee0EIn0ENovember0Dfrom0Frss/story01.htm + http://purl.org/dc/terms/date + 2010-09-11T13:10:29+0000 + + + diff --git a/test/data/suites/trix/trix-test5.nq b/test/data/suites/trix/trix-test5.nq new file mode 100644 index 000000000..54f3fe8ed --- /dev/null +++ b/test/data/suites/trix/trix-test5.nq @@ -0,0 +1,227 @@ + . + "Museum Kampa" . + . + "National Gallery" . + . + "The Frick Collection" . + . + "Museo Thyssen - Bornemisza" . + . + "The Metropolitan Museum of Art" . + . + "Museo Reina Sofia" . + . + . + . + _:B87b2f0d7fd881fd442a0daa342a1d0a4 . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + "Tate Britain" . + . + "Uffizi Gallery" . + . + "Van Gogh Museum" . + . + "Freer Gallery of Art, Smithsonian" . + . + "Palace of Versailles" . + . + "The State Hermitage Museum" . + . + "The State Tretyakov Gallery" . +_:B87b2f0d7fd881fd442a0daa342a1d0a4 "200"^^ . +_:B87b2f0d7fd881fd442a0daa342a1d0a4 "Fri, 25 Mar 2011 08:47:34 GMT" . +_:B87b2f0d7fd881fd442a0daa342a1d0a4 "TornadoServer/1.0" . +_:B87b2f0d7fd881fd442a0daa342a1d0a4 "5676" . +_:B87b2f0d7fd881fd442a0daa342a1d0a4 "application/rdf+xml" . +_:B87b2f0d7fd881fd442a0daa342a1d0a4 "Keep-Alive" . + . + "Alte Nationalgalerie" . + . + "MoMA, The Museum of Modern Art" . + . + "Gemäldegalerie" . + . + "Rijksmuseum" . + _:Bf07ec0e3942244f0203c8c1adb982b00 . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . +_:Bf07ec0e3942244f0203c8c1adb982b00 "200"^^ . +_:Bf07ec0e3942244f0203c8c1adb982b00 "Fri, 25 Mar 2011 08:47:34 GMT" . +_:Bf07ec0e3942244f0203c8c1adb982b00 "TornadoServer/1.0" . +_:Bf07ec0e3942244f0203c8c1adb982b00 "11129" . +_:Bf07ec0e3942244f0203c8c1adb982b00 "application/rdf+xml" . +_:Bf07ec0e3942244f0203c8c1adb982b00 "Keep-Alive" . +_:B3599262bfe486661ba9c33177ab2066e "200"^^ . +_:B3599262bfe486661ba9c33177ab2066e "Fri, 25 Mar 2011 08:47:34 GMT" . +_:B3599262bfe486661ba9c33177ab2066e "TornadoServer/1.0" . +_:B3599262bfe486661ba9c33177ab2066e "1522" . +_:B3599262bfe486661ba9c33177ab2066e "application/rdf+xml" . +_:B3599262bfe486661ba9c33177ab2066e "Keep-Alive" . + . + . + . + . + . + . + . + . + . + . + . + _:B3599262bfe486661ba9c33177ab2066e . + _:B775950cb35873e81a066abe293375699 . +_:B775950cb35873e81a066abe293375699 "200"^^ . +_:B775950cb35873e81a066abe293375699 "Fri, 25 Mar 2011 08:47:36 GMT" . +_:B775950cb35873e81a066abe293375699 "TornadoServer/1.0" . +_:B775950cb35873e81a066abe293375699 "19199" . +_:B775950cb35873e81a066abe293375699 "application/rdf+xml" . +_:B775950cb35873e81a066abe293375699 "Keep-Alive" . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . diff --git a/test/data/suites/trix/trix-test5.trix b/test/data/suites/trix/trix-test5.trix new file mode 100644 index 000000000..80d514fbb --- /dev/null +++ b/test/data/suites/trix/trix-test5.trix @@ -0,0 +1,1149 @@ + + + http://linkeddata.few.vu.nl/googleart/index.rdf + + http://linkeddata.few.vu.nl/googleart/museums/kampa + http://purl.org/dc/terms/title + Museum Kampa + + + http://linkeddata.few.vu.nl/googleart/museums/kampa + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Prague + + + http://linkeddata.few.vu.nl/googleart/museums/nationalgallery + http://purl.org/dc/terms/title + National Gallery + + + http://linkeddata.few.vu.nl/googleart/museums/nationalgallery + http://purl.org/dc/terms/location + http://dbpedia.org/resource/London + + + http://linkeddata.few.vu.nl/googleart/museums/frick + http://purl.org/dc/terms/title + The Frick Collection + + + http://linkeddata.few.vu.nl/googleart/museums/frick + http://purl.org/dc/terms/location + http://dbpedia.org/resource/New_York_City + + + http://linkeddata.few.vu.nl/googleart/museums/thyssen + http://purl.org/dc/terms/title + Museo Thyssen - Bornemisza + + + http://linkeddata.few.vu.nl/googleart/museums/thyssen + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Madrid + + + http://linkeddata.few.vu.nl/googleart/museums/met + http://purl.org/dc/terms/title + The Metropolitan Museum of Art + + + http://linkeddata.few.vu.nl/googleart/museums/met + http://purl.org/dc/terms/location + http://dbpedia.org/resource/New_York_City + + + http://linkeddata.few.vu.nl/googleart/museums/reinasofia + http://purl.org/dc/terms/title + Museo Reina Sofia + + + http://linkeddata.few.vu.nl/googleart/museums/reinasofia + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Madrid + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/uffizi + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/vangogh + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/thyssen + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://code.google.com/p/ldspider/ns#headerInfo + 905c9842db2cdcac25fe3b421c651ca6 + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/freer + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/reinasofia + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/nationalgallery + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/moma + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/kampa + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/gemaldegalerie + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/met + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/hermitage + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/rijks + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/altesnational + + + http://linkeddata.few.vu.nl/googleart/index.rdf + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/versailles + + + http://linkeddata.few.vu.nl/googleart/museums/tate + http://purl.org/dc/terms/title + Tate Britain + + + http://linkeddata.few.vu.nl/googleart/museums/tate + http://purl.org/dc/terms/location + http://dbpedia.org/resource/London + + + 905c9842db2cdcac25fe3b421c651ca6 + http://www.w3.org/2006/http#connection + Keep-Alive + + + 905c9842db2cdcac25fe3b421c651ca6 + http://www.w3.org/2006/http#content-type + application/rdf+xml + + + 905c9842db2cdcac25fe3b421c651ca6 + http://www.w3.org/2006/http#content-length + 5676 + + + 905c9842db2cdcac25fe3b421c651ca6 + http://www.w3.org/2006/http#server + TornadoServer/1.0 + + + 905c9842db2cdcac25fe3b421c651ca6 + http://www.w3.org/2006/http#date + Fri, 25 Mar 2011 08:47:34 GMT + + + 905c9842db2cdcac25fe3b421c651ca6 + http://www.w3.org/2006/http#responseCode + 200 + + + http://linkeddata.few.vu.nl/googleart/museums/uffizi + http://purl.org/dc/terms/title + Uffizi Gallery + + + http://linkeddata.few.vu.nl/googleart/museums/uffizi + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Florence + + + http://linkeddata.few.vu.nl/googleart/museums/vangogh + http://purl.org/dc/terms/title + Van Gogh Museum + + + http://linkeddata.few.vu.nl/googleart/museums/vangogh + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Amsterdam + + + http://linkeddata.few.vu.nl/googleart/museums/freer + http://purl.org/dc/terms/title + Freer Gallery of Art, Smithsonian + + + http://linkeddata.few.vu.nl/googleart/museums/freer + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Washington,_DC + + + http://linkeddata.few.vu.nl/googleart/museums/versailles + http://purl.org/dc/terms/title + Palace of Versailles + + + http://linkeddata.few.vu.nl/googleart/museums/versailles + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Versailles + + + http://linkeddata.few.vu.nl/googleart/museums/hermitage + http://purl.org/dc/terms/title + The State Hermitage Museum + + + http://linkeddata.few.vu.nl/googleart/museums/hermitage + http://purl.org/dc/terms/location + http://dbpedia.org/resource/St.Petersburg + + + http://linkeddata.few.vu.nl/googleart/museums/tretyakov + http://purl.org/dc/terms/title + The State Tretyakov Gallery + + + http://linkeddata.few.vu.nl/googleart/museums/tretyakov + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Moscow + + + http://linkeddata.few.vu.nl/googleart/museums/altesnational + http://purl.org/dc/terms/title + Alte Nationalgalerie + + + http://linkeddata.few.vu.nl/googleart/museums/altesnational + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Berlin + + + http://linkeddata.few.vu.nl/googleart/museums/moma + http://purl.org/dc/terms/title + MoMA, The Museum of Modern Art + + + http://linkeddata.few.vu.nl/googleart/museums/moma + http://purl.org/dc/terms/location + http://dbpedia.org/resource/New_York_City + + + http://linkeddata.few.vu.nl/googleart/museums/gemaldegalerie + http://purl.org/dc/terms/title + Gemäldegalerie + + + http://linkeddata.few.vu.nl/googleart/museums/gemaldegalerie + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Berlin + + + http://linkeddata.few.vu.nl/googleart/museums/rijks + http://purl.org/dc/terms/title + Rijksmuseum + + + http://linkeddata.few.vu.nl/googleart/museums/rijks + http://purl.org/dc/terms/location + http://dbpedia.org/resource/Amsterdam + + + + http://linkeddata.few.vu.nl/googleart/museums/tretyakov + + http://linkeddata.few.vu.nl/googleart/museums/tretyakov + http://code.google.com/p/ldspider/ns#headerInfo + 7128436a097ddcf004a4546b411d7c28 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-a-s-pushkin-123 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/alyonushka-173 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/matchmaking-of-the-major-149 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/dragonfly-painters-daughter-portrait-185 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-k-g-ravich-141 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/morning-of-the-execution-of-the-streltsy-179 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/boyarina-morozova-181 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/pancake-week-14 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/princess-reverie-193 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-maria-dyakova-105 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/christ-in-the-wilderness-165 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/saviour-made-without-hands-the-reverse-24 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-count-g-i-golovkin-85 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-a-a-chelishchev-121 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/saviour-made-without-hands-50 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/celebration-of-our-lady-sobor-bogomateri-32 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-miracle-of-the-icon-the-sign-of-our-lady%C2%BB-battle-between-warriors-of-novgorod-and-suzdal-30 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/in-the-ploughed-field-spring-143 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-a-p-struiskaya-95 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/landscape-in-the-surroundings-of-petersburg-111 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/interiors-reception-room-with-columns-on-the-mezzanine-145 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/st-nicetas-the-warrior-48 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/moonlit-night-on-the-dniepr-169 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/dmitry-solunsky-18 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-an-unknown-woman-in-russian-costume-101 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/a-rider-129 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-apparition-of-christ-to-the-people-the-apparition-of-the-messiah + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/boris-and-gleb-with-scenes-from-their-lives-34 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-peter-iii-91 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/red-square-in-moscow-113 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/fishes-wine-fruit-10 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-empress-anna-ioannovna-87 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-henriette-girshman-8 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-catherine-ii-the-legislatress-in-the-temple-devoted-to-the-godess-of-justice-107 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-emerald-necklace-16 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/whirlwind-2 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-catherine-ii-empress-of-russia-in-the-park-119 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-procope-demidov-103 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-last-tavern-at-the-city-gates-155 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-pavel-tretyakov-167 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-a-v-tropinin-137 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-m-i-lopukhina-115 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-catherine-ii-93 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-fresh-cavalier-the-morning-after-of-an-official-who-has-received-his-first-state-order-147 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/beer-sheva-virsavia-131 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-fedor-dostoyevsky-157 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/saviour-made-without-hands-22 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/moscow-patio-195 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/what-is-truth-christ-and-pilate-189 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-tsarevna-natalya-alekseevna-83 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/girl-with-peaches-portrait-of-v-s-mamontova-4 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/archangel-michael-from-the-deisus-chin-row-zvenigorodsky-38 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/holy-trinity-troitsa-40 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/ustyug-annunciation-20 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/a-veranda-overgrown-with-grape-vines-127 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-a-m-izmailova-89 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/virgin-eleousa-of-kykkos-54 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/trinity-with-the-saints-28 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/genealogy-of-the-state-of-muscovy-panegyric-to-our-lady-of-vladimir-52 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-m-p-musorgsky-187 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/last-judgment-197 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-countess-ursula-mniszek-109 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/lace-maker-139 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/heroes-bogatyri-175 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/saviour-from-the-deisus-chin-36 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/krestny-khod-religious-procession-in-kursk-gubernia-183 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/lady-in-blue-portrait-of-ye-m-martynova-12 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/metropolitan-alexis-44 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-black-sea-a-storm-begins-to-whip-up-in-the-black-sea-163 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/farewell-of-hector-and-andromache-99 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-spring-pilgrimage-of-the-tsarina-under-tsar-aleksy-mihailovich-153 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/self-portrait-133 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/rye-171 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/new-rome-the-castle-of-s-angelo-125 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-prince-a-b-kurakin-117 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/portrait-of-v-e-novosiltsova-97 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-apotheosis-of-war-177 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/wet-meadow-161 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/via-appia-at-sunset-135 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/rooks-have-returned-159 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/our-lady-of-the-great-panagiya-%D0%BEranta-26 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-unequal-marriage-151 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/the-rape-of-europa-6 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/blessed-be-the-host-of-the-king-of-heaven%E2%80%A6-46 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/our-lady-of-guide-of-wayfarers-odigitria-42 + + + http://linkeddata.few.vu.nl/googleart//museums/tretyakov + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tretyakov/demon-sitting-191 + + + 7128436a097ddcf004a4546b411d7c28 + http://www.w3.org/2006/http#connection + Keep-Alive + + + 7128436a097ddcf004a4546b411d7c28 + http://www.w3.org/2006/http#content-type + application/rdf+xml + + + 7128436a097ddcf004a4546b411d7c28 + http://www.w3.org/2006/http#content-length + 11129 + + + 7128436a097ddcf004a4546b411d7c28 + http://www.w3.org/2006/http#server + TornadoServer/1.0 + + + 7128436a097ddcf004a4546b411d7c28 + http://www.w3.org/2006/http#date + Fri, 25 Mar 2011 08:47:34 GMT + + + 7128436a097ddcf004a4546b411d7c28 + http://www.w3.org/2006/http#responseCode + 200 + + + + http://linkeddata.few.vu.nl/googleart/museums/frick + + 9ccce320f6bc068d2640a6ed1994e0ee + http://www.w3.org/2006/http#connection + Keep-Alive + + + 9ccce320f6bc068d2640a6ed1994e0ee + http://www.w3.org/2006/http#content-type + application/rdf+xml + + + 9ccce320f6bc068d2640a6ed1994e0ee + http://www.w3.org/2006/http#content-length + 1522 + + + 9ccce320f6bc068d2640a6ed1994e0ee + http://www.w3.org/2006/http#server + TornadoServer/1.0 + + + 9ccce320f6bc068d2640a6ed1994e0ee + http://www.w3.org/2006/http#date + Fri, 25 Mar 2011 08:47:34 GMT + + + 9ccce320f6bc068d2640a6ed1994e0ee + http://www.w3.org/2006/http#responseCode + 200 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/the-mall-in-st-jamess-park-4 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/sir-thomas-more-10 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/comtesse-dhaussonville-16 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/the-progress-of-love-the-meeting-8 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/salisbury-cathedral-from-the-bishops-garden-14 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/mother-and-children-la-promenade-2 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/self-portrait-12 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/the-harbor-of-dieppe-18 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/st-francis-in-the-desert + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/officer-and-laughing-girl-6 + + + http://linkeddata.few.vu.nl/googleart//museums/frick + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/frick/the-forge-20 + + + http://linkeddata.few.vu.nl/googleart/museums/frick + http://code.google.com/p/ldspider/ns#headerInfo + 9ccce320f6bc068d2640a6ed1994e0ee + + + + http://linkeddata.few.vu.nl/googleart/museums/tate + + http://linkeddata.few.vu.nl/googleart/museums/tate + http://code.google.com/p/ldspider/ns#headerInfo + dd4a917e2ab2d9d1b14d333e6a74392f + + + dd4a917e2ab2d9d1b14d333e6a74392f + http://www.w3.org/2006/http#connection + Keep-Alive + + + dd4a917e2ab2d9d1b14d333e6a74392f + http://www.w3.org/2006/http#content-type + application/rdf+xml + + + dd4a917e2ab2d9d1b14d333e6a74392f + http://www.w3.org/2006/http#content-length + 19199 + + + dd4a917e2ab2d9d1b14d333e6a74392f + http://www.w3.org/2006/http#server + TornadoServer/1.0 + + + dd4a917e2ab2d9d1b14d333e6a74392f + http://www.w3.org/2006/http#date + Fri, 25 Mar 2011 08:47:36 GMT + + + dd4a917e2ab2d9d1b14d333e6a74392f + http://www.w3.org/2006/http#responseCode + 200 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/horse-devoured-by-a-lion-98 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/portrait-of-mrs-ernest-moon-156 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/carnation-lily-lily-rose-118 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/titania-and-bottom-192 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/mrs-carl-meyer-and-her-children-162 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-fairy-fellers-master-stroke-230 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/portrait-of-captain-thomas-lee-22 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/gordale-scar-a-view-of-gordale-in-the-manor-of-east-malham-in-craven-yorkshire-the-property-of-lord-ribblesdale-44 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/mrs-james-wyatt-jr-and-her-daughter-sarah-250 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/alleluia-116 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/king-cophetua-and-the-beggar-maid-134 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/a-foregone-conclusion-226 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-north-west-passage-50 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/sir-thomas-kyston-8 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-all-pervading-60 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/satan-sin-and-death-a-scene-from-miltons-paradise-lost-82 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-thames-above-waterloo-bridge-284 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/mr-and-mrs-william-lindow-204 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/eve-repentant-128 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/portrait-of-elizabeth-roydon-lady-golding-14 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/christ-in-the-house-of-his-parents-the-carpenters-shop-246 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/wandering-musicians-232 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-meeting-of-dido-and-aeneas-190 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/beata-beatrix-46 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/chatterton-266 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/lady-bampfylde-198 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/a-youth-relating-tales-to-ladies-258 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/cupid-and-psyche-138 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/a-boy-at-play-166 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-lady-of-shalott-112 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/percival-delivering-belisane-from-the-enchantment-of-urma-66 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/sheerness-and-the-isle-of-sheppey-after-j-m-w-turner-280 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/cliveden-on-thames-282 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-golden-stairs-140 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-last-judgement-94 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/she-shall-be-called-woman-126 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/portrait-of-mary-hill-lady-killigrew-30 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/fishermen-at-sea-90 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/glacier-of-rosenlaui-74 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/mrs-woodhull-218 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/st-martin-in-the-fields-170 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/england-richmond-hill-on-the-prince-regents-birthday-276 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/pegwell-bay-kent-a-recollection-of-october-5th-1858-234 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/trees-beside-the-river-with-bridge-in-the-middle-distance-290 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-ghost-of-a-flea-78 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/portrait-of-susanna-temple-later-lady-lister-20 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/jerusalem-and-the-valley-of-jehoshaphat-from-the-hill-of-evil-counsel-42 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/venice-the-bridge-of-sighs-304 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-minotaur-122 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-two-crowns-136 + + + http://linkeddata.few.vu.nl/googleart//museums/tate + http://purl.org/dc/terms/relation + http://linkeddata.few.vu.nl/googleart/museums/tate/the-bay-of-baiae-with-apollo-and-the-sibyl-298 + + + diff --git a/test/test_parsers/test_trix_parse.py b/test/test_parsers/test_trix_parse.py index 17315c933..691a13b7a 100644 --- a/test/test_parsers/test_trix_parse.py +++ b/test/test_parsers/test_trix_parse.py @@ -18,7 +18,7 @@ def testAperture(self): g = ConjunctiveGraph() trix_path = os.path.relpath( - os.path.join(TEST_DATA_DIR, "suites", "trix/aperture.trix"), os.curdir + os.path.join(TEST_DATA_DIR, "suites", "trix/trix-aperture.trix"), os.curdir ) g.parse(trix_path, format="trix") c = list(g.contexts()) @@ -36,7 +36,8 @@ def testSpec(self): g = ConjunctiveGraph() trix_path = os.path.relpath( - os.path.join(TEST_DATA_DIR, "suites", "trix/nokia_example.trix"), os.curdir + os.path.join(TEST_DATA_DIR, "suites", "trix/trix-nokia-example.trix"), + os.curdir, ) g.parse(trix_path, format="trix") @@ -47,7 +48,8 @@ def testNG4j(self): g = ConjunctiveGraph() trix_path = os.path.relpath( - os.path.join(TEST_DATA_DIR, "suites", "trix/ng4jtest.trix"), os.curdir + os.path.join(TEST_DATA_DIR, "suites", "trix/trix-ng4j-test-01.trix"), + os.curdir, ) g.parse(trix_path, format="trix") diff --git a/test/utils/_RDFT.py b/test/utils/_RDFT.py index be7eacfa9..adce983b0 100644 --- a/test/utils/_RDFT.py +++ b/test/utils/_RDFT.py @@ -36,3 +36,7 @@ class RDFT(DefinedNamespace): TestTrigPositiveSyntax: URIRef TestTrigNegativeSyntax: URIRef + + TestTrixEval: URIRef # A positive TriX evaluation test. + TestTrixNegativeSyntax: URIRef # A negative TriX syntax test. + TestTrixPositiveSyntax: URIRef # A positive TriX syntax test. diff --git a/test/utils/manifest.py b/test/utils/manifest.py index 3cedf8908..329399aa4 100644 --- a/test/utils/manifest.py +++ b/test/utils/manifest.py @@ -1,7 +1,7 @@ from test.utils.namespace import RDFT from typing import Iterable, List, NamedTuple, Optional, Tuple, Union, cast -from rdflib import RDF, RDFS, Graph, Namespace +from rdflib import RDF, RDFS, Graph, Namespace, logger from rdflib.term import Identifier, Node, URIRef MF = Namespace("http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#") @@ -133,6 +133,8 @@ def _str(x): RDFT.TestNTriplesNegativeSyntax, RDFT.TestTurtlePositiveSyntax, RDFT.TestTurtleNegativeSyntax, + RDFT.TestTrixPositiveSyntax, + RDFT.TestTrixNegativeSyntax, ): query = g.value(e, MF.action) syntax = _type in ( @@ -140,6 +142,7 @@ def _str(x): RDFT.TestNTriplesPositiveSyntax, RDFT.TestTrigPositiveSyntax, RDFT.TestTurtlePositiveSyntax, + RDFT.TestTrixPositiveSyntax, ) elif _type in ( @@ -147,12 +150,18 @@ def _str(x): RDFT.TestTurtleNegativeEval, RDFT.TestTrigEval, RDFT.TestTrigNegativeEval, + RDFT.TestTrixEval, ): query = g.value(e, MF.action) res = g.value(e, MF.result) - syntax = _type in (RDFT.TestTurtleEval, RDFT.TestTrigEval) + syntax = _type in ( + RDFT.TestTurtleEval, + RDFT.TestTrigEval, + RDFT.TestTrixEval, + ) else: + logger.debug(f"Don't know {_type}") pass print("I dont know DAWG Test Type %s" % _type) continue