|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Unwanted Prefixes in Output
> I believe he wants to process any atom document which could have any
> namespaces. But instead of having the namespace declared at
> the element
> level, he wants the namespaces declared on the root element.
>
> I don't think it is possible without declaring the namespace
> in the XSL
> stylesheet root element, right?
You can achieve this with
<xsl:template match="/*">
<xsl:copy> (or <lre>)
<xsl:copy-of select="//namespace::*"/>
However, this will also copy namespaces that aren't used in the result
document. If you want to eliminate unused namespaces AND promote retained
namespaces to the outermost element, then a two-phase transformation is
probably the cleanest way.
Michael Kay
http://www.saxonica.com/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








