Update of /cvsroot/mvp-xml/XInclude/v2/test/XInclude-Test-Suite/Nist/result In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20225/v2/test/XInclude-Test-Suite/Nist/result Added Files: nist-include-01.xml nist-include-02.xml nist-include-04.xml nist-include-06.xml nist-include-07.xml nist-include-09.xml nist-include-10.xml nist-include-13.xml nist-include-14.xml nist-include-16.xml nist-include-17.xml nist-include-18.xml nist-include-19.xml nist-include-20.xml nist-include-21.xml nist-include-22.xml nist-include-26.xml nist-include-27.xml nist-include-28.xml nist-include-29.xml nist-include-30.xml nist-include-31.xml nist-include-34.xml nist-include-35.xml nist-include-36.xml nist-include-37.xml nist-include-38.xml nist-include-39.xml nist-include-40.xml nist-include-49.xml nist-include-50.xml nist-include-51.xml nist-include-52.xml nist-include-55.xml Log Message: --- NEW FILE: nist-include-28.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, using a shorthand pointer. --> <isid myid="dup" xml:base="../ents/prtids.xml"/> </book> --- NEW FILE: nist-include-02.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test that the encoding attribute of the XInclude element has no efect when parse="xml"--> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> </x> --- NEW FILE: nist-include-34.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including another XML document with ids using XPointer element schema. --> <family fnumber="f1" xml:base="../ents/idtst.xml">Lopez</family> </x> --- NEW FILE: nist-include-26.xml --- <?xml version="1.0"?> <this><sub-inc xml:base="../ents/reluriref.ent">testing relative uri reference. </sub-inc></this> --- NEW FILE: nist-include-01.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Simple test of including another XML document --> <book xml:base="../ents/books.xml"> <chapter>chapter 1. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> <chapter>chapter 2. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> <chapter>chapter 3. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> </book> </x> --- NEW FILE: nist-include-13.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test that a fallback element content is not dependent on the value of the parse attribute. --> <doc>With something else.</doc> </x> --- NEW FILE: nist-include-10.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test content other than the fallback, in the xinclude element. This content must be ignored. --> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> </x> --- NEW FILE: nist-include-22.xml --- <?xml version="1.0"?> <!-- Testing when the document (top level) element in the source infoset is an include element.--> <book xml:base="../ents/books.xml"> <chapter>chapter 1. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> <chapter>chapter 2. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> <chapter>chapter 3. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> </book> --- NEW FILE: nist-include-50.xml --- <?xml version="1.0" encoding="UTF-8"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test an include location identifying the document information item without an Xpointer, the set of top-level included item should be the children of the acquired inforset's document information item, except for the document type declaration information item. --> <doc xml:base="../ents/idtst.xml"> <family fnumber="f1">Lopez</family> <family fnumber="f2">Clark</family> <family fnumber="f3" mother="f1" father="f2">Jackson</family> <family fnumber="f4" mother="f1" father="f2">Medina</family> </doc> </x> --- NEW FILE: nist-include-55.xml --- <?xml version="1.0"?> <!DOCTYPE x [ <!ELEMENT x (xinclude:include* , view*)> <!ELEMENT xinclude:include EMPTY> <!ATTLIST xinclude:include xmlns:xinclude CDATA #FIXED "http://www.w3.org/2001/XInclude"> <!ATTLIST xinclude:include href CDATA #REQUIRED> <!ATTLIST xinclude:include parse (xml | text) "xml"> <!ATTLIST xinclude:include encoding CDATA #IMPLIED> <!ELEMENT view EMPTY> <!ENTITY image SYSTEM "gris.jpg" NDATA jpg> <!ATTLIST view sun ENTITY #IMPLIED> ]> <!-- Including a duplicate unparsed entity. Test should ignore duplicate unparsed entity. --> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <view sun="image" xml:base="../ents/unparent.xml"/> <view sun="image"/> </x> --- NEW FILE: nist-include-39.xml --- <?xml version="1.0"?> <!-- Testing the content of the xinclude element. The comment should be ignored. --> <x xmlns:xi="http://www.w3.org/2001/XInclude"> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> </x> --- NEW FILE: nist-include-16.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test the exclusion of the document type declaration information item when performing an inclusion.--> <book xml:base="../ents/books.xml"> <chapter>chapter 1. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> <chapter>chapter 2. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> <chapter>chapter 3. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> </book> </x> --- NEW FILE: nist-include-38.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including another XML document using the XPointer Framework. --> <family fnumber="f2" xml:base="../ents/idtst.xml">Clark</family> </x> --- NEW FILE: nist-include-51.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test an include location identifying a comment. In this case the set of top level include items consist of the information item corresponding to the comment node in the acquired infoset. --> <!-- Comment for chapter 1. --> </x> --- NEW FILE: nist-include-36.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including another XML document with ids using XPointer element schema. --> <family fnumber="f2" xml:base="../ents/idtst.xml">Clark</family> </x> --- NEW FILE: nist-include-52.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test an include location identifying a processing instruction. In this case the set of top level included items consist of the information item corresponding to the processing node in the acquired infoset. --> <?some processing instructions ?> </x> --- NEW FILE: nist-include-19.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 --> <chapter xml:base="../ents/books.xml">chapter 1. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> </x> --- NEW FILE: nist-include-18.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 --> <chapter xml:base="../ents/books.xml">chapter 1. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter><chapter xml:base="../ents/books.xml">chapter 2. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter><chapter xml:base="../ents/books.xml">chapter 3. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> </x> --- NEW FILE: nist-include-37.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including another XML document using XPointer Framework. If the processor does not support the scheme used in a pointer part, it skip that pointer part. --> <family fnumber="f2" xml:base="../ents/idtst.xml">Clark</family> </x> --- NEW FILE: nist-include-27.xml --- <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test that the encoding attribute of the XInclude element has no efect when parse="xml"--> <foo xml:base="../ents/include1.xml"/> </x> --- NEW FILE: nist-include-04.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test the fallback as a child of an xinclude element. Resource should be fetch. This test should pass. --> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> </x> --- NEW FILE: nist-include-30.xml --- <?xml version="1.0"?> <!DOCTYPE x [ <!ELEMENT x (family)*> <!ELEMENT family (#PCDATA)> <!ATTLIST family fnumber ID #REQUIRED> <!ATTLIST family father IDREF #IMPLIED> <!ATTLIST family mother IDREF #IMPLIED> ]> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including another XML document with ids using a shorthand pointer. --> <family fnumber="f3" mother="f1" father="f2" xml:base="../ents/idtst.xml">Jackson</family> </x> --- NEW FILE: nist-include-35.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including another XML document with ids using XPointer element schema. --> <doc xml:base="../ents/idtst.xml"> <family fnumber="f1">Lopez</family> <family fnumber="f2">Clark</family> <family fnumber="f3" mother="f1" father="f2">Jackson</family> <family fnumber="f4" mother="f1" father="f2">Medina</family> </doc> </x> --- NEW FILE: nist-include-40.xml --- <?xml version="1.0"?> <!-- Testing the content of the xinclude element. The element elem should be ignored. --> <x xmlns:xi="http://www.w3.org/2001/XInclude"> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> </x> --- NEW FILE: nist-include-17.xml --- <?xml version="1.0"?> <x xmlns:xinc="http://www.w3.org/2001/XInclude"> <!-- Test intra-document reference within include elements. --> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> </x> --- NEW FILE: nist-include-14.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test a fallback element containing text even when xml is specified in the parse aurgument.--> Add something else. </x> --- NEW FILE: nist-include-29.xml --- <?xml version="1.0"?> <!DOCTYPE x [ <!ELEMENT x (family)*> <!ELEMENT family (#PCDATA)> <!ATTLIST family fnumber ID #REQUIRED> <!ATTLIST family father IDREF #IMPLIED> <!ATTLIST family mother IDREF #IMPLIED> ]> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including another XML document with ids using a shorthand pointer. --> <family fnumber="f1" xml:base="../ents/idtst.xml">Lopez</family> </x> --- NEW FILE: nist-include-31.xml --- <?xml version="1.0"?> <!-- Including an XML document using an XPointer element schema. --> <document> <p>The relevant excerpt is:</p> <quotation> <p xml:base="../ents/ptrtst.xml">Sentence 1. Sentence 2.</p> </quotation> </document> --- NEW FILE: nist-include-49.xml --- <?xml version="1.0"?> <!DOCTYPE x [ <!ENTITY e SYSTEM "../ents/004.ent"> ]> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including another XML document that contains an unexpanded entity reference. --> <doc xml:base="../ents/extref.xml">&e;</doc> </x> --- NEW FILE: nist-include-06.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test a fallback when a resource error occurs. --> <doc> <p>with</p> <p>something</p> <p>else</p> </doc> </x> --- NEW FILE: nist-include-09.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test unqualified attributes in the xinclude element --> <doc xml:base="../ents/something.xml"> <p>something</p> <p>really</p> <p>simple</p> </doc> </x> --- NEW FILE: nist-include-07.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test an empty fallback element. The include element is removed from the results. --> </x> --- NEW FILE: nist-include-20.xml --- <?xml version="1.0"?> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Test an include location identifying a document information item with an xpointer locating the document root. In this case the set of top level include items is the children of acquired infoset's document information item, except for the document type information item. --> <book xml:base="../ents/books.xml"> <chapter>chapter 1. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> <chapter>chapter 2. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> <chapter>chapter 3. <subtitle>first subtitle</subtitle> <subtitle>Second subtitle</subtitle> </chapter> </book> </x> --- NEW FILE: nist-include-21.xml --- <?xml version="1.0"?> <!DOCTYPE x [ <!ELEMENT x (view)*> <!ELEMENT view EMPTY> <!ATTLIST view sun ENTITY #IMPLIED> <!ENTITY image SYSTEM "gris.jpg" NDATA jpg> ]> <x xmlns:xinclude="http://www.w3.org/2001/XInclude"> <!-- Including an XML document with an unparsed entity. --> <view sun="image" xml:base="../ents/unparent.xml"/> </x> |