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 08:13:23 2001 --- shadow/2859.tmp.29938 Fri Jul 27 08:13:23 2001 *************** *** 0 **** --- 1,57 ---- + +============================================================================+ + | xsltc fails conf test namespace36 not resetting of the unspecified default | + +----------------------------------------------------------------------------+ + | Bug #: 2859 Product: XalanJ2 | + | Status: NEW Version: 2.0.0 | + | Resolution: Platform: Sun | + | Severity: Normal OS/Version: Solaris | + | Priority: Other Component: org.apache.xalan.xsltc | + +----------------------------------------------------------------------------+ + | Assigned To: [EMAIL PROTECTED] | + | Reported By: [EMAIL PROTECTED] | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + Expected Output + =============== + <?xml version="1.0" encoding="UTF-8"?> + <out><foo xmlns="abc"><yyy xmlns=""/></foo></out> + + Obtained Ouput (Xalan, XT, and Saxon) + ===================================== + <?xml version="1.0" encoding="UTF-8"?> + <out><foo xmlns="abc"><yyy xmlns=""/></foo></out> + + + <yyy xmlns=""/> + ^^^^^^^^ <-- MISSING in obtained output + + XSL + === + <?xml version="1.0"?> + <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + + <!-- FileName: namespace36 --> + <!-- Document: http://www.w3.org/TR/xslt --> + <!-- DocVersion: 19991116 --> + <!-- Section: 7.1.2 Creating Elements --> + <!-- Creator: Scott Boag --> + <!-- Purpose: Test for resetting of the unspecified default namespace by a + contained xsl:element. --> + + <xsl:template match = "/"> + <out> + <xsl:element namespace="abc" name="foo"> + <xsl:element name="yyy"/> + </xsl:element> + </out> + </xsl:template> + + </xsl:stylesheet> + + XML + === + <?xml version="1.0"?> + <doc>x</doc>
