[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: applying all rules in a mode

Subject: Re: applying all rules in a mode
From: "Richard Lander" <rlander@xxxxxxxxxxxxxxxxxxx>
Date: Tue, 10 Aug 1999 11:10:02 -0400
mode toc
 Have you considered using <xsl:for-each ? It would seem to me to be the best
for creating a TOC at the start of your document. It would likely do away with
your need for modes.

Something like:

<xsl:for-each select="chapter | title | head">
<A>
  <xsl:choose>
    <xsl:when test="@id">
      <xsl:attribute name="href"><xsl:value-of select="@id"/></xsl:attribute>
    </xsl:when>
    <xsl:otherwise>
      <xsl:attribute name="href"><xsl:value-of
select="generate-id()"/></xsl:attribute>
    </xsl:otherwise>
  </xsl:choose>
  <xsl:value-of select="TITLE">
</A>
</xsl:for-each>

Good luck,

Richard.

Richard Lander
relander at uwaterloo.ca
http://pdbeam.uwaterloo.ca/~rlander/

Professional XML Authoring
http://www.on-line-learning.com/

----- Original Message -----
From: Hadar, Oren <ohadar@xxxxxxxxxxxxxxxxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxx>
Sent: Tuesday, August 10, 1999 8:37 AM
Subject: applying all rules in a mode


> I have a set of rules in my stylesheet for setting up a table of contents.
> Each of the rules has <xsl:template match=something mode="toc">.  The
> different rules match different XML elements.  To actually generate the TOC,
> I need something in the root rule that will go through the stylesheet and
> apply all of the rules that have mode="toc".  I tried the following, but it
> didn't work:
>
> <xsl:apply-templates mode="toc" select="*"/>
>
> Neither does this:
>
> <xsl:apply-templates mode="toc"/>
>
> The only thing I could get to work it a bit of a kludge:
>
> <xsl:apply-templates mode="toc" select="//Title|//Head|//Chapter (etc.)"/>
>
> ...where Title, Head, Chapter, etc. are all the elements included in my TOC.
> Is there a more elegant way to do this?
>
> Oren Hadar
> Application Designer
> Interleaf, Inc.
> (781) 768-1082
> ohadar@xxxxxxxxxxxxx
>
>
>  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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.