xsl-list
[Top] [All Lists]

RE: transforming flat data to hierarchical data. Recursion??

2003-06-06 02:26:08
Works like a charm

Thanks
Dave


From: Jarno(_dot_)Elovirta(_at_)nokia(_dot_)com
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
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



<Prev in Thread] Current Thread [Next in Thread>