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=2801 *** shadow/2801 Wed Jul 25 13:40:53 2001 --- shadow/2801.tmp.6630 Wed Jul 25 13:40:53 2001 *************** *** 0 **** --- 1,39 ---- + +============================================================================+ + | xsltc fails conf test lre21 by copying ext namespace to lre | + +----------------------------------------------------------------------------+ + | Bug #: 2801 Product: XalanJ2 | + | Status: NEW Version: CurrentCVS | + | Resolution: Platform: All | + | Severity: Normal OS/Version: All | + | Priority: Other Component: org.apache.xalan.xsltc | + +----------------------------------------------------------------------------+ + | Assigned To: [EMAIL PROTECTED] | + | Reported By: [EMAIL PROTECTED] | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | URL: | + +============================================================================+ + | DESCRIPTION | + When a literal result element is instantiated, a namespace defined as a + extension namespace by the "extension-element-prefix" attribute should not be + copied. + + In this test, the template + + <xsl:template match="doc"> + <out english="to leave" xsl:extension-element-prefixes="ext"/> + </xsl:template> + + Should not copy the extension name space declated in the + stylesheet element as follows: + + xmlns:ext="http://somebody.elses.extension" + + But xsltc outputs the following + + <out xmlns:ext="http://somebody.elses.extension" + xmlns:ped="http://tester.com" english="to leave"/> + + and should output + + <out xmlns:ped="http://tester.com" english="to leave"/>
