xsl-list
[Top] [All Lists]

Re: Generate Site index

2002-11-14 11:13:05
´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(_at_)nag(_dot_)co(_dot_)uk>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
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



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