|
[
Permlink
| « Hide
]
Brian Minchau added a comment - 13/Jul/06 12:00 AM
Brian Minchau agreed to look at this one, per the bug triage on July 11, 2006
It looks like you can work around the problem by using the combination of xsl:for-each to select the namespace nodes and xsl:copy to copy them:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="xml" indent="yes" /> <xsl:template match="/author"> <test> <xsl:for-each select="namespace::*"> <xsl:copy/> </xsl:for-each> </test> </xsl:template> </xsl:stylesheet> This is a duplicate of XALANJ-1959.
Henry Zongaro made changes - 14/Aug/06 01:24 PM
Henry Zongaro made changes - 14/Aug/06 01:24 PM
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||