Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


RE: [xsl] Xsl:copy-of writes xmlns:xsi always - Any way to avoid this?

From: "Michael Kay" <mike@------------>
To:
Date: 3/5/2007 9:24:00 AM
> Hi,
>   I use <xsl:copy-of select="./*"/> to select child elements 
> of a node which passes <xsl:when>. However copy-of is 
> inserting 
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance with 
> each child element it selects. 

In XSLT 2.0 you can copy an element without copying its namespaces using the
copy-namespaces="no" attribute.

In XSLT 1.0 the answer is no. xsl:copy-of copies a tree unchanged, which
includes its namespace nodes (remember that in the data model, an element
has namespace nodes corresponding to all in-scope namespaces, including
those declared on ancestor elements). You only remedy is not to use
xsl:copy-of, but to do a manual copy using a modified identity template:

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

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


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent