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=6760>. 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=6760 <xsl:output> does not include doctype attribute values in the output [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From [EMAIL PROTECTED] 2002-03-07 18:42 ------- I believe this bug has been fixed by other bug fixes. I tried to replicate the error with the following test case stylesheet: <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="xml" media-type="text/vnd.wap.wml" omit-xml-declaration="no" indent="yes" doctype-public="-//WAPFORUM//DTD WML 1.1//EN" doctype-system="http://www.wapforum.org/DTD/wml_1.1.xml"/> <xsl:template match="/"> <hello/> </xsl:template> </xsl:stylesheet> Both xalan and xsltc gives the same output: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE hello PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml"> <hello/> If you have a test case that proves otherwise, please send it to me and I'll be glad to try it out. This test case is the best I could come up with from the comments of the bug. Thanks.
