curcuru 00/11/14 06:22:05
Modified: test/tests/api/trax TransformerAPIOutputFormat.xsl Log: Updated to use all kinds of xsl:output attrs Must be coordinated with org.apache.qetest.trax.TransformerAPITest Revision Changes Path 1.2 +10 -2 xml-xalan/test/tests/api/trax/TransformerAPIOutputFormat.xsl Index: TransformerAPIOutputFormat.xsl =================================================================== RCS file: /home/cvs/xml-xalan/test/tests/api/trax/TransformerAPIOutputFormat.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- TransformerAPIOutputFormat.xsl 2000/11/09 22:16:20 1.1 +++ TransformerAPIOutputFormat.xsl 2000/11/14 14:22:04 1.2 @@ -1,8 +1,16 @@ <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> +<!-- Include all XSLT spec xsl:output attrs --> <xsl:output method="xml" - omit-xml-declaration="yes" - cdata-section-elements="cdataHere" /> + version="123.45" + encoding="UTF-16" + standalone="yes" + doctype-public="this-is-doctype-public" + doctype-system="this-is-doctype-system" + cdata-section-elements="cdataHere" + indent="yes" + media-type="text/test/xml" + omit-xml-declaration="yes" /> <xsl:template match="doc"> <out>
