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

Re: a nicer total sibling count than this

Subject: Re: a nicer total sibling count than this
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Wed, 18 Sep 2002 20:51:43 +0100
xsl count of siblings
Hi Stewart,

> To my surprise and delight, the following worked, producing heavy
> def numbers with a following non-break space:
>
>  <xsl:template match="def">
>   <xsl:if test="(count(preceding-sibling::def) +   
>                  count(following-sibling::def)) >= 1">
>    <xsl:element name="strong">
>     <xsl:number/>
>     <xsl:text>&#160;</xsl:text>
>    </xsl:element>
>   </xsl:if>
>   <xsl:apply-templates/>
>  </xsl:template>
>
> Is there a prettier/more efficient way of doing the same thing
> without resorting to frankly ugly
> '(count(preceding-sibling::def)+count(following-sibling::def))'?

Since you don't actually need to know *how many* there are, just
whether there are any siblings of the current def or not, you could
use:

  <xsl:if test="preceding-sibling::def or following-sibling::def">
    ...
  </xsl:if>

or you could see if the def element's parent has more than one def
child:

  <xsl:if test="../def[2]">
    ...
  </xsl:if>

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 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.