Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] Creating lists and sublists from a level attribute

From: David Carlisle <davidc@--------->
To:
Date: 9/1/2004 1:31:00 PM
This is a standard grouping problem, XSLT2  has (will have) specific
grouping constructs (group-adjacent) to make this easy but in xslt1 you
can use any grouping technique (eg those on jeni's site
http://www.jenitennison.com/xslt/grouping

eg something like



<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:output indent="yes"/>

<xsl:template match="x">
<ul>
<xsl:apply-templates mode="toc" select="heading[1]"/>
</ul>
</xsl:template>

<xsl:template mode="toc" match="heading">
<li>
 <span><xsl:value-of select="."/></span>
 <xsl:if test="@level &lt; following-sibling::heading[1]/@level">
 <ul>
 <xsl:apply-templates mode="toc" select="following-sibling::heading[1]"/>
 </ul>
 </xsl:if>
</li>
 <xsl:apply-templates mode="toc" select="following-sibling::heading[@level=current()/@level][1]"/>
</xsl:template>


</xsl:stylesheet>


<x>

<heading level="1">A main Heading</heading>
<heading level="2">Sub heading of main heading</heading>
<heading level="2">another sub heading of main heading</heading>
<heading level="1">Another main Heading</heading> 

</x>


$ saxon head.xml head.xsl
<?xml version="1.0" encoding="utf-8"?>
<ul>
   <li>
      <span>A main Heading</span>
      <ul>
         <li>
            <span>Sub heading of main heading</span>
         </li>
         <li>
            <span>another sub heading of main heading</span>
         </li>
      </ul>
   </li>
   <li>
      <span>Another main Heading</span>
   </li>
</ul>

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent