diff options
author | Mike Hommey <glandium@debian.org> | 2006-01-31 19:25:18 +0100 |
---|---|---|
committer | Mike Hommey <glandium@debian.org> | 2006-01-31 19:25:18 +0100 |
commit | c5d565931c4823dc8f62fffcb65aecfec516f7b9 (patch) | |
tree | 9550b0b41e973d707cbbca74333c1b05ab89e5ee /test/XInclude/docs | |
parent | 0fd83af441e251fc23fc1af7959fd6ecfa105fe1 (diff) | |
download | libxml2-upstream/2.6.23.dfsg.2.tar.gz |
Removing tests and resultsupstream/2.6.23.dfsg.2
Diffstat (limited to 'test/XInclude/docs')
-rw-r--r-- | test/XInclude/docs/.memdump | 4 | ||||
-rw-r--r-- | test/XInclude/docs/docids.xml | 15 | ||||
-rw-r--r-- | test/XInclude/docs/fallback.xml | 6 | ||||
-rw-r--r-- | test/XInclude/docs/fallback2.xml | 10 | ||||
-rw-r--r-- | test/XInclude/docs/include.xml | 4 | ||||
-rw-r--r-- | test/XInclude/docs/nodes.xml | 4 | ||||
-rw-r--r-- | test/XInclude/docs/nodes2.xml | 4 | ||||
-rw-r--r-- | test/XInclude/docs/nodes3.xml | 4 | ||||
-rw-r--r-- | test/XInclude/docs/recursive.xml | 3 | ||||
-rw-r--r-- | test/XInclude/docs/tstencoding.xml | 5 | ||||
-rw-r--r-- | test/XInclude/docs/txtinclude.xml | 4 |
11 files changed, 0 insertions, 63 deletions
diff --git a/test/XInclude/docs/.memdump b/test/XInclude/docs/.memdump deleted file mode 100644 index aed5a9e..0000000 --- a/test/XInclude/docs/.memdump +++ /dev/null @@ -1,4 +0,0 @@ - 11:55:34 AM - - MEMORY ALLOCATED : 0, MAX was 20068 -BLOCK NUMBER SIZE TYPE diff --git a/test/XInclude/docs/docids.xml b/test/XInclude/docs/docids.xml deleted file mode 100644 index 7791620..0000000 --- a/test/XInclude/docs/docids.xml +++ /dev/null @@ -1,15 +0,0 @@ -<!DOCTYPE book [ -<!ELEMENT book (doc*)> -<!ELEMENT doc (isid*)> -<!ELEMENT isid EMPTY> -<!ATTLIST isid myid ID #IMPLIED> -]> -<book> -<doc> -<isid myid="mine"/> -<isid myid="dup"/> -</doc> -<!-- including another XML document with IDs --> -<xinclude:include xmlns:xinclude="http://www.w3.org/2001/XInclude" - href="../ents/ids.xml"/> -</book> diff --git a/test/XInclude/docs/fallback.xml b/test/XInclude/docs/fallback.xml deleted file mode 100644 index e80222e..0000000 --- a/test/XInclude/docs/fallback.xml +++ /dev/null @@ -1,6 +0,0 @@ -<x xmlns:xinclude="http://www.w3.org/2001/XInclude"> - <!-- Simple test of a fallback on unavailble URI --> - <xinclude:include href="something.xml"> - <xinclude:fallback><warning>Inclusion failed</warning></xinclude:fallback> - </xinclude:include> -</x> diff --git a/test/XInclude/docs/fallback2.xml b/test/XInclude/docs/fallback2.xml deleted file mode 100644 index dac71f9..0000000 --- a/test/XInclude/docs/fallback2.xml +++ /dev/null @@ -1,10 +0,0 @@ -<a> - <xi:include href="b.xml" xmlns:xi="http://www.w3.org/2001/XInclude"> - <xi:fallback>There is no b.xml ... </xi:fallback> - </xi:include> - <xi:include href="c.xml" xmlns:xi="http://www.w3.org/2001/XInclude"> - <xi:fallback>There is no c.xml ... </xi:fallback> - </xi:include> - -</a> - diff --git a/test/XInclude/docs/include.xml b/test/XInclude/docs/include.xml deleted file mode 100644 index 806ac23..0000000 --- a/test/XInclude/docs/include.xml +++ /dev/null @@ -1,4 +0,0 @@ -<x xmlns:xinclude="http://www.w3.org/2001/XInclude"> - <!-- Simple test of including another XML document --> - <xinclude:include href="../ents/something.xml"/> -</x> diff --git a/test/XInclude/docs/nodes.xml b/test/XInclude/docs/nodes.xml deleted file mode 100644 index d0ccab9..0000000 --- a/test/XInclude/docs/nodes.xml +++ /dev/null @@ -1,4 +0,0 @@ -<x xmlns:xinclude="http://www.w3.org/2001/XInclude"> - <!-- Simple test of including a set of nodes from an XML document --> - <xinclude:include href="../ents/something.xml#xpointer(//p)"/> -</x> diff --git a/test/XInclude/docs/nodes2.xml b/test/XInclude/docs/nodes2.xml deleted file mode 100644 index 32f8cfe..0000000 --- a/test/XInclude/docs/nodes2.xml +++ /dev/null @@ -1,4 +0,0 @@ -<x xmlns:xinclude="http://www.w3.org/2003/XInclude"> - <!-- Simple test of including a set of nodes from an XML document --> - <xinclude:include href="../ents/something.xml" xpointer="xpointer(//p)"/> -</x> diff --git a/test/XInclude/docs/nodes3.xml b/test/XInclude/docs/nodes3.xml deleted file mode 100644 index 355c548..0000000 --- a/test/XInclude/docs/nodes3.xml +++ /dev/null @@ -1,4 +0,0 @@ -<x xmlns:xinclude="http://www.w3.org/2003/XInclude"> - <!-- Simple test of including a set of nodes from an XML document --> - <xinclude:include href="../ents/something.xml#xpointer(//p)"/> -</x> diff --git a/test/XInclude/docs/recursive.xml b/test/XInclude/docs/recursive.xml deleted file mode 100644 index a9285ac..0000000 --- a/test/XInclude/docs/recursive.xml +++ /dev/null @@ -1,3 +0,0 @@ -<this><xinc:include href="../ents/sub-inc.ent" parse="xml" - xmlns:xinc="http://www.w3.org/2001/XInclude"/></this> - diff --git a/test/XInclude/docs/tstencoding.xml b/test/XInclude/docs/tstencoding.xml deleted file mode 100644 index b1309a9..0000000 --- a/test/XInclude/docs/tstencoding.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> -<x xmlns:xinclude="http://www.w3.org/2001/XInclude"> - <!-- Simple test of including another text document --> - <xinclude:include href="../ents/isolatin.txt" encoding="ISO-8859-1" parse="text"/> -</x> diff --git a/test/XInclude/docs/txtinclude.xml b/test/XInclude/docs/txtinclude.xml deleted file mode 100644 index f1af6a2..0000000 --- a/test/XInclude/docs/txtinclude.xml +++ /dev/null @@ -1,4 +0,0 @@ -<x xmlns:xinclude="http://www.w3.org/2001/XInclude"> - <!-- Simple test of including another text document --> - <xinclude:include href="../ents/something.txt" parse="text"/> -</x> |