Re: [xsl] recursive function?

Subject: Re: [xsl] recursive function?
From: "Juergen" <xsl@xxxxxxxxxxxxxxx>
Date: Mon, 24 Jan 2005 09:18:35 +0100
Hi Tore,

I would have two apply-templates.
The match for person just give out name and city if available.

<xsl:template match = "/">
   Connected to city
   <xsl:apply-templates select="result/person[city]"/>
   People not connected to city
   <xsl:apply-templates select="result/person[not city]"/>
...

Cheers,

Juergen

Current Thread