Update of /cvsroot/mvp-xml/XInclude/v2/test/XInclude-Test-Suite/Imaq/test/XInclude/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20225/v2/test/XInclude-Test-Suite/Imaq/test/XInclude/docs Added Files: docids.xml fallback.xml include.xml nodes.xml recursive.xml txtinclude.xml Log Message: --- NEW FILE: docids.xml --- <!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> --- NEW FILE: include.xml --- <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Simple test of including another XML document --> <xinclude:include href="../ents/something.xml"/> </x> --- NEW FILE: txtinclude.xml --- <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> --- NEW FILE: nodes.xml --- <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="xpointer(//p)"/> </x> --- NEW FILE: fallback.xml --- <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> --- NEW FILE: recursive.xml --- <this><xinc:include href="../ents/sub-inc.ent" parse="xml" xmlns:xinc="http://www.w3.org/2001/XInclude"/></this> |