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

RE: Xsl:copy-of writes xmlns:xsi always - Any way to

Subject: RE: Xsl:copy-of writes xmlns:xsi always - Any way to avoid this?
From: <binu.idicula@xxxxxxxxx>
Date: Mon, 5 Mar 2007 15:26:34 +0530
RE:  Xsl:copy-of writes xmlns:xsi always - Any way to
Thanks  Micheal for the quick reply,

I have to stick onto XSLT1.0.

I used the following .. But the problem was that it is not copying
nested.
It just copies the direct chile element nodes. If the child element has
another child, do I have to write one more for-each OR is there a simple
way.

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

Once I select a particular node, all the contents (including next level
- children) should be translated to another XML. Please advice.

regards
Binu Kuttikkattu Idicula

-----Original Message-----
From: Michael Kay [mailto:mike@xxxxxxxxxxxx]
Sent: Monday, March 05, 2007 2:53 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE:  Xsl:copy-of writes xmlns:xsi always - Any way to
avoid this?

>
> 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/



The information contained in this electronic message and any attachments to
this message are intended for the exclusive use of the addressee(s) and may
contain proprietary, confidential or privileged information. If you are not
the intended recipient, you should not disseminate, distribute or copy this
e-mail. Please notify the sender immediately and destroy all copies of this
message and any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should
check this email and any attachments for the presence of viruses. The company
accepts no liability for any damage caused by any virus transmitted by this
email.

www.wipro.com

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

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-2013 All Rights Reserved.