David Carlisle wrote:
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>
--~--
That worked, thanks!
--~------------------------------------------------------------------
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>
--~--