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

Re: Re: Re: Using XSL for a "world records" table

Subject: Re: Re: Re: Using XSL for a "world records" table
From: Ryan Heise <rheise@xxxxxxxxxxxxx>
Date: Sun, 18 May 2003 19:01:13 +1000
ryan heise
On Sun, May 18, 2003 at 10:35:18AM +0200, Dimitre Novatchev wrote:

>          <xsl:value-of select="position() + count(/*/record[time &lt;
> current()/time])"/>

This looks nifty. If you just use the count() idea, keys are not
required:

<xsl:for-each select="record">
 <xsl:sort data-type="number" select="time"/>
 <xsl:apply-templates select=".">
  <xsl:with-param name="place" select="1 + count(/*/record[time &lt; current()/time])"/>
 </xsl:apply-templates>
</xsl:for-each>

I also just figured out another approach that just uses keys and not
count:

<xsl:for-each select="record">
 <xsl:if test="not(preceding-sibling::record/time = time)">
  <xsl:apply-templates select="key('records-by-time', time)">
   <xsl:with-param name="place" select="position()"/>
  </xsl:apply-templates>
 </xsl:if>
</xsl:for-each>

I don't know which way is best, though. I guess whichever way runs the
fastest :-)

Thanks!

Ryan

 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.