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=2859 *** shadow/2859 Fri Jul 27 12:53:10 2001 --- shadow/2859.tmp.21982 Wed Aug 1 06:46:02 2001 *************** *** 98,100 **** --- 98,139 ---- <?xml version="1.0" encoding="UTF-8"?> <out><foo xmlns="zebie"><yyy xmlns=""/></foo></out> + + + ------- Additional Comments From [EMAIL PROTECTED] 2001-08-01 06:46 ------- + Note sure, but conf test namespace75 may be related. It has the following + template: + + <?xml version="1.0"?> + <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + + <!-- FileName: namespace75 --> + <!-- Document: http://www.w3.org/TR/xslt --> + <!-- DocVersion: 19991116 --> + <!-- Section: 7.1.2 Creating Elements --> + <!-- Creator: David Marston --> + <!-- Purpose: Baseline case of a non-empty but unprefixed xmlns declaration in + xsl:element. --> + + <xsl:template match = "/"> + <out> + <xsl:element name="foo" xmlns="test.com"> + <yyy/> + </xsl:element> + </out> + </xsl:template> + + </xsl:stylesheet> + + Expected Output + =============== + <?xml version="1.0" encoding="UTF-8"?> + <out><foo xmlns="zebie"><yyy xmlns=""/></foo></out> + + Obtained Output + =============== + <?xml version="1.0" encoding="UTF-8"?> + <out><foo xmlns="zebie"><yyy xmlns=""/></foo></out> + + +
