Re: [xsl] Generate Site index

Subject: Re: [xsl] Generate Site index
From: Robert Sösemann <robert.soesemann@xxxxxx>
Date: Thu, 14 Nov 2002 19:13:05 +0100
´Thanks a lot. That was nearly perfect. But the first big A is not in front
of the first entry with an "A" but the last one.

It looks like:

.    Adfsdf
.    Adfgdgh
..
A  Artree
.    Bgsfg
.    Bgxcgdf
...
B    Brewwef

instead of

A    Adfsdf
.    Adfgdgh
..
.    Artree
B   Bgsfg
.    Bgxcgdf
...
    Brewwef

I guess that because of this line:
>   <xsl:if test="$x != substring(following-sibling::ENTRY[1]/KEYWORD,1,2)">

But I coulnd figure out why exactely.
----- Original Message -----
From: "David Carlisle" <davidc@xxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Thursday, November 14, 2002 5:08 PM
Subject: Re: [xsl] Generate Site index


>
> <xsl:template match="parentofentry">
>  ...
>  <xsl:for-each select="ENTRY">
>   <xsl:variable name="x" select="substring(KEYWORD,1,2)"/>
>   <xsl:if test="$x != substring(following-sibling::ENTRY[1]/KEYWORD,1,2)">
>     <a href="#all{$x}s"><xsl:value-of select="$x"/></a>
>   </xsl:if>
>   </xsl:for-each>
> ..
>
> <xsl:template match="ENTRY">
>  ...
>   <xsl:variable name="x" select="substring(KEYWORD,1,2)"/>
>   <xsl:if test="$x != substring(following-sibling::ENTRY[1]/KEYWORD,1,2)">
>   <h2><a name="all{$x}s"/><xsl:value-of select="$x"/></h2>
>   </xsl:if>
>  .....
>
> ..
>
>
>
> _____________________________________________________________________
> This message has been checked for all known viruses by Star Internet
> delivered through the MessageLabs Virus Scanning Service. For further
> information visit http://www.star.net.uk/stats.asp or alternatively call
> Star Internet for details on the Virus Scanning Service.
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


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


Current Thread