PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3056 *** shadow/3056 Thu Aug 9 06:18:00 2001 --- shadow/3056.tmp.16965 Thu Aug 9 06:18:00 2001 *************** *** 0 **** --- 1,52 ---- + +============================================================================+ + | error processing DOCTYPE line | + +----------------------------------------------------------------------------+ + | Bug #: 3056 Product: XalanJ2 | + | Status: NEW Version: 2.2.x | + | Resolution: Platform: Sun | + | Severity: Normal OS/Version: Solaris | + | Priority: Other Component: Xalan | + +----------------------------------------------------------------------------+ + | Assigned To: [EMAIL PROTECTED] | + | Reported By: [EMAIL PROTECTED] | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + See + + http://www.biglist.com/lists/xsl-list/archives/200108/msg00521.html + + for a context to this problem. + + An XHTML file starts with + + <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> + + and is transformed with this stylesheet + + ---8<---------------------------------------- + <?xml version="1.0"?> + + <xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:xhtml="http://www.w3.org/1999/xhtml"> + + <xsl:output method="html" indent="yes" + doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN" + doctype-system="http://www.w3.org/TR/html4/loose.dtd"/> + + <xsl:template match="@*|node()"> + <xsl:copy> + <xsl:apply-templates select="@*|node()" /> + </xsl:copy> + </xsl:template> + + </xsl:stylesheet> + --->8---------------------------------------- + + The resulting HTML file contains all comment nodes from the XHTML DTD + at http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd. This happened + with an older version of Xalan and with Xalan 2.2.D6, together with + Xerces 1.4.2. \ No newline at end of file
