xsl-list
[Top] [All Lists]

Re: Generate Site index

2002-11-14 09:08:05

<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



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