xsl-list
[Top] [All Lists]

Re: copy without duplicates

2005-03-04 05:27:07

Is it possible to do this with XSLT 1.0 in one stylesheet? 
yes but inconvient to use keys so might be quite a bit slower than a key
based grouping mechanism.

However if you have a node-set extension (almost every system except
mozilla has one) then you can  do your two-pass version within the same
stylesheet as usual with node-set.

<xsl:template match="/"
<xsl:variable name="x">
  <xsl:apply-templates mode="a"/>
</xsl:variable>
so $x now has what would have been teh output of your first stylesheet
then do
<xsl:apply-template mode="b" select="exslt:node-set($x)"/>
where mode b does whatever your 2nd stylesheet was going to do
</xsl:template


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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