Re: node after current node in xsl:for-each with xsl:sort (was: conditional page-break table based on row number?)

this list is more for FO issues than XSLT programming (I think) but
anyway

                 <xsl:apply-templates
                             select="self::*[position() + 1]"
self::* selects at most 1 node, which will always have position()=1
but in any case, if you use [] with a numeric value rather than a
predicate it is short for
[position()=...]
so *[1] means *[position()=1]
and selects the first thing and
[position() + 1] is short for [position()=(position() + 1)] and selects
all those elements for which 0=1 ie, it selects the empty set.


Actually it's a bit tricky in pure xslt 1 to sort and then access the
sorted list at the same time, as the sorted list information goes to the
result tree where by design you can't really get it back.

If you can use your processor's node-set extension (if it has one) first
sort the input into a temporary variable then process every other item
in this sorted list, and access the next item by
following-sibling::*[1]
if xx:node-set() isn't available, ask again:-)

David


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. 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
________________________________________________________________________

Received on Monday, 11 October 2004 21:24:03 UTC