diff options
author | Dave Beckett <dave@dajobe.org> | 2005-07-18 14:26:39 +0000 |
---|---|---|
committer | Dave Beckett <dave@dajobe.org> | 2005-07-18 14:26:39 +0000 |
commit | bd77c20868a86ff74137e8fa25c8708af1270024 (patch) | |
tree | dfb715f348cadd19a5e6e5f91313ea0e5e03cd9b /tests | |
parent | 58839bbf679eba02a5808c9c05b80df8a7631ccf (diff) | |
download | raptor-bd77c20868a86ff74137e8fa25c8708af1270024.tar.gz |
Added ex-58
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 4 | ||||
-rw-r--r-- | tests/ex-58.out | 3 | ||||
-rw-r--r-- | tests/ex-58.rdf | 15 |
3 files changed, 20 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 4c141931..64ea4104 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -47,7 +47,7 @@ ex-20.rdf ex-21.rdf ex-22.rdf ex-23.rdf ex-24.rdf ex-25.rdf ex-26.rdf \ ex-27.rdf ex-28.rdf ex-29.rdf ex-30.rdf ex-31.rdf ex-32.rdf ex-33.rdf \ ex-34.rdf ex-35.rdf ex-36.rdf ex-37.rdf ex-38.rdf ex-39.rdf ex-40.rdf \ ex-41.rdf ex-46.rdf ex-47.rdf ex-48.rdf ex-49.rdf ex-51.rdf \ -ex-53.rdf ex-54.rdf ex-56.rdf ex-57.rdf \ +ex-53.rdf ex-54.rdf ex-56.rdf ex-57.rdf ex-58.rdf \ 22-rdf-syntax-ns.rdf rdfs-namespace.rdf rdf-schema.rdf \ owl-schema.rdf daml-oil.rdf wine.rdf @@ -76,7 +76,7 @@ ex-27.out ex-28.out ex-29.out ex-30.out ex-31.out ex-32.out ex-33.out \ ex-34.out ex-35.out ex-36.out ex-37.out ex-38.out ex-39.out ex-40.out \ ex-41.out ex-42.out ex-43.out ex-44.out ex-45.out ex-46.out ex-47.out \ ex-48.out ex-49.out ex-51.out ex-53.out ex-54.out ex-55.out ex-56.out \ -ex-57.out \ +ex-57.out ex-58.out \ 22-rdf-syntax-ns.out rdfs-namespace.out rdf-schema.out \ owl-schema.out daml-oil.out wine.out diff --git a/tests/ex-58.out b/tests/ex-58.out new file mode 100644 index 00000000..28221630 --- /dev/null +++ b/tests/ex-58.out @@ -0,0 +1,3 @@ +<http://www.w3.org/> <http://purl.org/dc/elements/1.1/title> "World Wide Web Consortium" . +<http://www.w3.org/> <http://purl.org/dc/elements/1.1/source> <http://example.org/test1/test2/> . +<http://www.w3.org/> <http://purl.org/dc/elements/1.1/relation> <http://example.org/test1/> . diff --git a/tests/ex-58.rdf b/tests/ex-58.rdf new file mode 100644 index 00000000..081f8df1 --- /dev/null +++ b/tests/ex-58.rdf @@ -0,0 +1,15 @@ +<?xml version="1.0"?> +<rdf:RDF xml:base="http://example.org/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + + <!-- test of xml:base relative URI to an outer xml:base + see http://lists.w3.org/Archives/Public/www-archive/2005Jul/0017.html + for discussion + --> + <rdf:Description rdf:about="http://www.w3.org/" xml:base="test1/"> + <dc:title>World Wide Web Consortium</dc:title> + <dc:source rdf:resource="test2/"/> + <dc:relation rdf:resource=""/> + </rdf:Description> +</rdf:RDF> |