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

Re: Copy all attributes except except some

Subject: Re: Copy all attributes except except some
From: "Imsieke, Gerrit, le-tex gerrit.imsieke@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 11 Jun 2014 06:33:30 -0000
Re:  Copy all attributes except except some
@*[not(local-name() = ('signed', 'otherAtt', 'foo', 'bar'))]

Alternatively, in a more XSLT-ish idiom,

<xsl:apply-templates select="@*" mode="someMode"/>

with

<xsl:template match="@*" mode="someMode">
  <xsl:copy/>
</xsl:template>
<xsl:template match="@signed" mode="someMode"/>
<xsl:template match="@otherAtt" mode="someMode"/>
b&

Gerrit

On 11.06.2014 01:05, Philipp Kursawe phil.kursawe@xxxxxxxxx wrote:
I am using:
<xsl:copy-of select="@*[local-name() != 'signed']"/>

I assume I have to make a long list of "or local-name() != 'otherAtt'"
to exclude all my attributes that should not be copied over. Or is
there a smarter way to just define a list of attributes that are not
copied?

Thanks!

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.