Re: [xsl] iterating over unstructured data

Subject: Re: [xsl] iterating over unstructured data
From: "W. Eliot Kimber" <eliot@xxxxxxxxxx>
Date: Mon, 04 Feb 2002 08:08:54 -0600
Andrew Welch wrote:
> 
> Hi,
> 
> This may be a faq, but my searches have so far been unproductive.

The way I do this is:

<xsl:for-each select="foo">
 <fo:table-cell>
  <xsl:apply-templates/>
 </fo:table-cell>
 <fo:table-cell>
  <xsl:apply-templates "following-sibling::bar[1]"/>
 </fo:table-cell>
</xsl:for-each>

You might also be able to do it by doing apply-templates select="foo"
and
then doing the following-sibling::bar[1] in foo's template, but I
haven't tried it.

Cheers,

Eliot Kimber
ISOGEN International, LLC

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


Current Thread