From: Oleg T. <he...@us...> - 2005-10-28 22:29:28
|
Update of /cvsroot/mvp-xml/XInclude/v2/test/XInclude-Test-Suite/Imaq/result/XInclude In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20225/v2/test/XInclude-Test-Suite/Imaq/result/XInclude Added Files: docids.xml fallback.xml include.xml nodes.xml recursive.xml txtinclude.xml Log Message: --- NEW FILE: docids.xml --- <?xml version="1.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 --> <doc xml:base="../ents/ids.xml"> <isid myid="dup"/> <isid myid="foo"/> <isid myid="bar"/> </doc> </book> --- NEW FILE: include.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Simple test of including another XML document --> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> </x> --- NEW FILE: txtinclude.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Simple test of including another text document --> this is some text in ASCII </x> --- NEW FILE: nodes.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Simple test of including a set of nodes from an XML document --> <p xml:base="../ents/something.xml">something</p><p xml:base="../ents/something.xml">really</p><p xml:base="../ents/something.xml">simple</p> </x> --- NEW FILE: fallback.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Simple test of a fallback on unavailble URI --> <warning>Inclusion failed</warning> </x> --- NEW FILE: recursive.xml --- <?xml version="1.0"?> <this><sub-inc xml:base="../ents/sub-inc.ent">is a test </sub-inc></this> |