diff options
Diffstat (limited to 'libxml2/test/XInclude/docs')
-rw-r--r-- | libxml2/test/XInclude/docs/docids.xml | 15 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/fallback.xml | 6 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/fallback2.xml | 10 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/include.xml | 4 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/nodes.xml | 4 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/nodes2.xml | 4 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/nodes3.xml | 4 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/recursive.xml | 3 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/tstencoding.xml | 5 | ||||
-rw-r--r-- | libxml2/test/XInclude/docs/txtinclude.xml | 4 |
10 files changed, 0 insertions, 59 deletions
diff --git a/libxml2/test/XInclude/docs/docids.xml b/libxml2/test/XInclude/docs/docids.xml deleted file mode 100644 index 7791620..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/fallback.xml b/libxml2/test/XInclude/docs/fallback.xml deleted file mode 100644 index e80222e..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/fallback2.xml b/libxml2/test/XInclude/docs/fallback2.xml deleted file mode 100644 index dac71f9..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/include.xml b/libxml2/test/XInclude/docs/include.xml deleted file mode 100644 index 806ac23..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/nodes.xml b/libxml2/test/XInclude/docs/nodes.xml deleted file mode 100644 index d0ccab9..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/nodes2.xml b/libxml2/test/XInclude/docs/nodes2.xml deleted file mode 100644 index 32f8cfe..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/nodes3.xml b/libxml2/test/XInclude/docs/nodes3.xml deleted file mode 100644 index 355c548..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/recursive.xml b/libxml2/test/XInclude/docs/recursive.xml deleted file mode 100644 index a9285ac..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/tstencoding.xml b/libxml2/test/XInclude/docs/tstencoding.xml deleted file mode 100644 index b1309a9..0000000 --- a/libxml2/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/libxml2/test/XInclude/docs/txtinclude.xml b/libxml2/test/XInclude/docs/txtinclude.xml deleted file mode 100644 index f1af6a2..0000000 --- a/libxml2/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> |