DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=30129>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=30129 Trace Selection Event (-TS) interferes with output Summary: Trace Selection Event (-TS) interferes with output Product: XalanJ2 Version: 2.6 Platform: Sun OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: org.apache.xalan.xsltc AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] data <?xml version="1.0" encoding="UTF-8" ?> <root>data-is-here</root> xsl <?xml version="1.0" encoding="UTF-8" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" version="1.0" /> <xsl:template match="/"> <html> <body> <xsl:value-of select="/root[1]" /> </body> </html> </xsl:template> </xsl:stylesheet> command line java org.apache.xalan.xslt.Process -IN c.xml -XSL c.xsl -OUT c.html produces the correct result <html> <body>data-is-here</body> </html> adding -TS to the above command line incorrectly produces <html> <body></body> </html> -TS should not have this side effect see also http://www.biglist.com/lists/xsl-list/archives/200311/msg01097.html I looked here but did not see the bug reported --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
