xsl-list
[Top] [All Lists]

Re: Name Spaces in Selects and xsl:element

2005-05-05 15:01:40

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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--