Re: [xsl] Sorting and re-ordering down a hierarchy

Subject: Re: [xsl] Sorting and re-ordering down a hierarchy
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 18 Jul 2003 16:11:04 +0100
something like

<xsl:template match="/input">
<output>
  <xsl:apply-templates select="node">
   <xsl:sort select="rank" data-type="number" order="ascending"/>
  </xsl:apply-templates>
</output>
</xsl:template>

<xsl:template match="node">
<node>
<xsl:copy-of select="rank"/>
  <xsl:apply-templates select="node">
   <xsl:sort select="rank" data-type="number" order="ascending"/>
  </xsl:apply-templates>
</node>
</xsl:template>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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


Current Thread