xsl-list
[Top] [All Lists]

Re: alphabetic set of xsl:result-document

2005-08-22 06:14:05

You probably don't need both the key (the xslt1 way of grouping) and
for-each-group.

after
<xsl:for-each-group select="//div[(_at_)type='psalm']//w" 
group-by="lower-case(.)">
select="key('word', lower-case(.)"
is probably the same thing as
select="current-group()"

so you are probably making saxon index everything twice.

If I understand you correctly you just need to insert an extra layer of
grouping, just grouping on the first letter:

<xsl:for-each-group select="//div[(_at_)type='psalm']//w"
group-by="lower-case(substring(.,1,1)">
<xsl:result-file....

<xsl:for-each-group select="current-group()" group-by="lower-case(.)">
     <xsl:sort select="lower-case(.)" />

...

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
________________________________________________________________________

--~------------------------------------------------------------------
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>