Re: [xsl] Name Spaces in Selects and xsl:element

Subject: Re: [xsl] Name Spaces in Selects and xsl:element
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 5 May 2005 23:01:40 +0100
> How about in an identity transformation, how do you preserve the
> original name of an element, but add a namespace to it?

same way as any other way you'd change the name of every element match
every element with * and generate a new name with xsl:element

<xsl:template match="*">
<xsl:element name="{local-name()}" namespace="whatever">
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:eleemnt>
...

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread