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

RE: Numbering - how to exclude "cousin" elements?

Subject: RE: Numbering - how to exclude "cousin" elements?
From: "Glen Little" <glittle@xxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 17 Jun 2004 16:15:58 -0600
RE:  Numbering - how to exclude "cousin" elements?
Thanks to Josh and Charles for your answers. Both strategies worked for the
sample given.

As usual, the real code is more complex. In practice, I needed to be able to
put the  Standalone="true"  on a few other levels as well. What I've now
started to use is similar to this:
<xsl:template match="Sentence">
  <xsl:variable name="StartFrom">
    <xsl:value-of select="generate-id(ancestor::*[@Standalone='true'][1])"/>
  </xsl:variable>
  <xsl:copy>
    <xsl:copy-of select="@*"/>
    <xsl:attribute name="Number">
      <xsl:number
count="Sentence[generate-id(ancestor::*[@Standalone='true'][1])=$
StartFrom]" level="any"/>
    </xsl:attribute>
    <xsl:apply-templates/>
  </xsl:copy>
</xsl:template>

Thanks again!
Glen



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.