xsl-list
[Top] [All Lists]

RE: apply templates to all attributes except for one

2006-01-07 12:24:25
In 2.0 you can write

select="@* except @foo"

Or of course you can write 

<xsl:template match="@foo"/>

with xsl:apply-templates select="@*"

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


-----Original Message-----
From: Tobi Reif [mailto:tobiasreif(_at_)pinkjuice(_dot_)com] 
Sent: 07 January 2006 18:38
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] apply templates to all attributes except for one

Hi

In an XSLT I have the following:

  <xsl:apply-templates select="@*[not(local-name()='foo')]"/>

It works. But is there a more elegant (or at least shorter)
way to write this?

Tobi


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





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



<Prev in Thread] Current Thread [Next in Thread>