[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: xsl:copy- of and namespaces

Subject: RE: xsl:copy- of and namespaces
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Tue, 1 Apr 2008 23:10:29 +0800
RE:  xsl:copy- of and namespaces
> Can someone please tell me how I can give elements of a 
> subtree that are copied to the output with <xsl:copy-of 
> select="."> a new namespace?
> 

You can't: xsl:copy-of always copies elements without change.

You need a variation of the identity template which walks the tree
recursively creating new elements whose name is based on the existing name:

<xsl:template match="*">
  <xsl:element name="{local-name()}" namespace="new-namespace-uri">
    <xsl:copy-of select="@*"/>
    <xsl:apply-emplates/>
  </xsl:element>
</xsl:template>

Michael Kay
http://www.saxonica.com/

Current Thread

Back To School Sale!

Save 30% off all Stylus Studio 2008 Products when you purchase from our Online Shop.

Offer ends August 31, 2008.

Coupon Code
TRTY-C4JV-OFF

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2007 All Rights Reserved.