You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2002/02/28 00:26:09 UTC

DO NOT REPLY [Bug 6751] New: - XSLTC ignores attributes in instruction.

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6751>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6751

XSLTC ignores attributes in <xsl:output/> instruction.

           Summary: XSLTC ignores attributes in <xsl:output/> instruction.
           Product: XalanJ2
           Version: 2.3
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Blocker
          Priority: Other
         Component: org.apache.xalan.xsltc
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: derek.sayeau@cognos.com


Using XalanJ2.3.1 JDK1.3.1 XSLTC ignores any of the attributes given in the 
<xsl:output/> instruction.

Using the following stylesheet (any input doc will do), play around with the 
attributes in the <xsl:output/> instruction, notice the output is always the 
same (for example the output should not be indented, it is...if you set
method to xml, html is still output).

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
	<xsl:output method="html" version="1.0" encoding="UTF-8" indent="no"/>
	<xsl:template match="/">
		<html>
			<body>
	<table><tr><td>123</td></tr></table>
				</body>
		</html>
	</xsl:template>
</xsl:stylesheet>