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: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] 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>
