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=1411 *** shadow/1411 Sun May 20 17:25:37 2001 --- shadow/1411.tmp.20027 Thu Jul 26 13:53:44 2001 *************** *** 1,19 **** ! Bug#: 1411 ! Product: XalanJ2 ! Version: 2.0.0 ! Platform: Sun ! OS/Version: Solaris ! Status: NEW ! Resolution: ! Severity: Normal ! Priority: Medium ! Component: org.apache.xalan.xsltc ! AssignedTo: [EMAIL PROTECTED] ! ReportedBy: [EMAIL PROTECTED] ! URL: ! Cc: ! Summary: namespace-alias not outputting XSL URI in stylesheet element ! The namespace-alias element is not working. This is an important feature because it enables style sheets to be written that generate stylesheets as output. Although the mapping is described in terms of the prefix, it is the URI that is --- 1,19 ---- ! +============================================================================+ ! | namespace-alias not outputting XSL URI in stylesheet element | ! +----------------------------------------------------------------------------+ ! | Bug #: 1411 Product: XalanJ2 | ! | Status: NEW Version: 2.0.0 | ! | Resolution: Platform: Sun | ! | Severity: Normal OS/Version: Solaris | ! | Priority: Medium Component: org.apache.xalan.xsltc | ! +----------------------------------------------------------------------------+ ! | Assigned To: [EMAIL PROTECTED] | ! | Reported By: [EMAIL PROTECTED] | ! | CC list: Cc: | ! +----------------------------------------------------------------------------+ ! | URL: | ! +============================================================================+ ! | DESCRIPTION | The namespace-alias element is not working. This is an important feature because it enables style sheets to be written that generate stylesheets as output. Although the mapping is described in terms of the prefix, it is the URI that is *************** *** 101,103 **** --- 101,125 ---- I'm using my mk024 test to verify. + + ------- Additional Comments From [EMAIL PROTECTED] 2001-07-26 13:53 ------- + xsltc also fails conf test namespace19 which has + <xsl:namespace-alias stylesheet-prefix="axsl" result-prefix="xsl"/> + + The expected output has the "axsl" prefix + + <?xml version="1.0" encoding="UTF-8"?> + <axsl:stylesheet xmlns:axsl="http://www.w3.org/1999/XSL/Transform" + version="1.0"> + <axsl:template match="h1"> + <axsl:apply-templates/> + </axsl:template> + </axsl:stylesheet> + + whereas the obtained output doesn't + <?xml version="1.0" encoding="utf-8" ?> + <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> + <xsl:template match="h1"> + <xsl:apply-templates/> </xsl:template> + + </xsl:stylesheet>
