Re: [xsl] copy without duplicates

Subject: Re: [xsl] copy without duplicates
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 4 Mar 2005 12:27:07 GMT
> 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
________________________________________________________________________

Current Thread