xsl-list
[Top] [All Lists]

Re: [xsl] Display text and all the following nodes except <anchor> and <pb>

2008-09-18 04:59:13
I am doing the same. Below is my code!!!
<div id="docnav">
 <ul>
         <xsl:for-each select="//docGroup//div[(_at_)type='ss1']">
    <li>
        <a>
            <xsl:attribute name="href">#sec<xsl:number format="1"
count="//docGroup//div[(_at_)type='ss1']" level="any" from="docGroup"
          /></xsl:attribute>
      <xsl:apply-templates select="head" mode="toc"/>
                        </a>
                     </li>
               </xsl:for-each>
</ul>
            </div>

<xsl:template match="div[(_at_)type='ss1']/head" mode="toc">
<xsl:apply-templates select="*[not(name(.)='anchor' or name(.)='pb')] |text()"/>
</xsl:template>

<xsl:template match="div/head">
   <xsl:choose>
      <xsl:when test="../@type='ss1'">
         <h2>
            <xsl:apply-templates/>
         </h2>
   </xsl:choose>
</xsl:template>


At 02:20 PM 9/18/2008, David Carlisle wrote:


> Actually I want to make TOC of the chapter and I want anchor in one
> place but not in another place that why George's solution  does not
> fit for me

making TOC is the motivating use case for modes. Use one mode
for the main body and another mode for the toc.

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________

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


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