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

Subject: Re: [xsl] Name Spaces in Selects and xsl:element
From: Karl Stubsjoen <kstubs@xxxxxxxxx>
Date: Thu, 5 May 2005 17:01:06 -0700
Thanks guys... local-name() is different than name() how?

On 5/5/05, David Carlisle <davidc@xxxxxxxxx> wrote:
>
> > 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