dmarston 2002/09/10 15:37:02 Modified: test/tests/conf/output output38.xsl Log: Avoid complications of the encoding; we just need to see that it's different. Revision Changes Path 1.2 +6 -6 xml-xalan/test/tests/conf/output/output38.xsl Index: output38.xsl =================================================================== RCS file: /home/cvs/xml-xalan/test/tests/conf/output/output38.xsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- output38.xsl 15 Dec 2000 22:54:51 -0000 1.1 +++ output38.xsl 10 Sep 2002 22:37:02 -0000 1.2 @@ -1,20 +1,20 @@ -<?xml version="1.0" encoding="ISO-8859-1" ?> +<?xml version="1.0" encoding="UTF-8" ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> - <xsl:output method="html" encoding="SHIFT_JIS" - doctype-public="-//W3C//DTD HTML 4.0 Transitional"/> - <!-- FileName: OUTP38 --> + <!-- FileName: output38 --> <!-- Document: http://www.w3.org/TR/xslt --> <!-- DocVersion: 19991116 --> <!-- Section: 16.2 HTML Output Method --> <!-- Purpose: Meta should be added immediately after after the start-tag of the HEAD element specifying the character encoding actually used. --> +<xsl:output method="html" encoding="ISO-8859-1" + doctype-public="-//W3C//DTD HTML 4.0 Transitional"/> + <xsl:template match="/"> <HTML> <HEAD> - <Body> - </Body> + <Body>Hi</Body> </HEAD> </HTML> </xsl:template>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]