RE: [xsl] transforming flat data to hierarchical data. Recursion??

Subject: RE: [xsl] transforming flat data to hierarchical data. Recursion??
From: "dave peeters" <elechi76@xxxxxxxxxxx>
Date: Fri, 06 Jun 2003 11:26:08 +0200
Works like a charm

Thanks
Dave


From: Jarno.Elovirta@xxxxxxxxx
Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Subject: RE: [xsl] transforming flat data to hierarchical data. Recursion??
Date: Fri, 6 Jun 2003 11:37:29 +0300

Hi,

How about

<xsl:key name="id" match="PAGE" use="@id" />
<xsl:key name="idref" match="Next" use="@id" />

<xsl:template match="Pages">
  <xsl:copy>
    <xsl:apply-templates select="PAGE[not(key('idref', @id))]" />
  </xsl:copy>
</xsl:template>

<xsl:template match="Next">
  <xsl:copy>
    <xsl:apply-templates select="key('id', @id)" />
  </xsl:copy>
</xsl:template>

<xsl:template match="@*|node()">
  <xsl:copy>
    <xsl:apply-templates select="@*|node()"/>
  </xsl:copy>
</xsl:template>

Cheers,

Jarno - Dulce Liquido: Pissed Off

XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list


_________________________________________________________________ Hotmail: je gratis e-mail ! http://www.msn.be/hotmail


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread