xsl-list
[Top] [All Lists]

Re: [xsl] processing order

2007-03-27 16:26:29

One way:


stop them being processed in the usual run of events:

<xsl:template match="file[(_at_)label="Help']" priority="1001"/>
<xsl:template match="file[(_at_)label="Logout']" priority="1001"/>

then after whichever apply-templates is processing the rest of the stuff
do

<xsl:for-each select="//file[(_at_)label='Help' or 'Label='Logout']">
  do something
</xsl:for-each>

David

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