dmarston 02/01/28 10:42:50 Modified: test/tests/conf/output output22.xsl output22.xml Log: Avoid new-line character, and otherwise broaden the set displayed. Revision Changes Path 1.2 +7 -6 xml-xalan/test/tests/conf/output/output22.xsl Index: output22.xsl =================================================================== RCS file: /home/cvs/xml-xalan/test/tests/conf/output/output22.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- output22.xsl 15 Dec 2000 22:54:51 -0000 1.1 +++ output22.xsl 28 Jan 2002 18:42:50 -0000 1.2 @@ -1,17 +1,18 @@ <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> - <xsl:output omit-xml-declaration="no" encoding="EBCDIC-CP-IT"/> - <!-- FileName: OUTP22 --> + <!-- FileName: output22 --> <!-- Document: http://www.w3.org/TR/xslt --> <!-- DocVersion: 19991116 --> <!-- Section: 16.1 XML Output Method --> - <!-- Purpose: Test EBCDIC-CP-IT encoding. --> + <!-- Purpose: Test EBCDIC-CP-IT encoding. Avoid new-lines in output until XML 1.1 + addresses the EBCDIC-specific new-line issue. It all looks like gibberish on + an ASCII/ISO/UTF platform anyway, so you won't notice the lack of an XML decl. --> + +<xsl:output omit-xml-declaration="yes" encoding="EBCDIC-CP-IT"/> <xsl:template match="/"> - <out> - <test>Testing</test> - </out> + <out>ABCDEFGHIJKLMNOPQRSTUVWXYZ 0123456789 abcdefghijklmnopqrstuvwxyz</out> </xsl:template> </xsl:stylesheet> 1.2 +1 -3 xml-xalan/test/tests/conf/output/output22.xml Index: output22.xml =================================================================== RCS file: /home/cvs/xml-xalan/test/tests/conf/output/output22.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- output22.xml 15 Dec 2000 22:54:51 -0000 1.1 +++ output22.xml 28 Jan 2002 18:42:50 -0000 1.2 @@ -1,4 +1,2 @@ <?xml version="1.0"?> -<doc> - <foo>a</foo> -</doc> \ No newline at end of file +<doc/> \ No newline at end of file
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
