xsl-list
[Top] [All Lists]

Re: [xsl] Sorting in A for-each-group

2007-06-20 05:22:20

<xsl:variable name="divs" as="node()*" select="$docs//TEI.2/text/body/div"/>


I believe TEI.2 is always the topmost element of a TEI doc? but //
implies searching to arbitrary depth to find them all, your probably
just want / there.

                <!-- I want to insert a xsl:sort here so that i can sort 
the current-group() according to the @n -->
                <xsl:apply-templates select="current-group()[1]/head"/>
                <xsl:for-each-group select="current-group()/div" 
group-by="@n">

seems like you want to add <xsl:sort select="@n"/> at this point

hard to check without any input though-)


________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

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