xsl-list
[Top] [All Lists]

Re: conditional looping in a for loop based on look ahead

2003-09-18 09:43:37

This is a grouping problem, so you may like to look at teh faq on
grouping, but in general you should not think of breaking out of loops,
but rather of selecting the nodes that you want to process.

You can optimise this using keys (look for muenchian grouping)
but to use generate-id you want something like
<xsl:variable name="nexth3" select="generate-id(following-sibling::h3[1])"/>
Now you want to apply templates to all divs that have that as their
following h3, ie

<xsl:apply-templates 
  select="following-sibling::div[generate-id(following-sibling::h3[1])=$nexth3]"


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



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