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

Re: grouping/position problem

Subject: Re: grouping/position problem
From: Bruce D'Arcus <bdarcus@xxxxxxxxx>
Date: Sat, 23 Apr 2005 19:20:32 -0400
current year xsl
Actually, I need to correct two things on my reply to Mike; first the template needs to put the year variable within the year-grouped for-each (it was outside the for-each). So:

<xsl:template match="list" mode="sort_author-year">
<xsl:for-each-group select="item" group-by="@author">
<xsl:sort select="current-grouping-key()"/>
<xsl:for-each-group select="current-group()" group-by="@year">
<xsl:sort select="current-grouping-key()" />
<xsl:for-each select="current-group()">
<xsl:variable name="year">
<xsl:value-of select="current-grouping-key()"/>
<xsl:if test="last() > 1">
<xsl:number value="position()" format="a"/>
</xsl:if>
</xsl:variable>
<xsl:variable name="author-position" select="position()"/>
<xsl:variable name="shorten-author" as="xs:boolean"select="$author-position > 1" />
<xsl:apply-templates select=".">
<xsl:with-param name="year" select="$year"/>
<xsl:with-param name="shorten-author"select="$shorten-author"/>
</xsl:apply-templates>
</xsl:for-each>
</xsl:for-each-group>
</xsl:for-each-group>
</xsl:template>


Therefore this is wrong:

... here's the expected result:

<result>
   <item>
      <shorten-author>false</shorten-author>
      <year>2001a</year>
   </item>
   <item>
      <shorten-author>true</shorten-author>
      <year>2001a</year>
   </item>
   <item>
      <shorten-author>true</shorten-author>
      <year>2002b</year>
   </item>
</result>

It should be:


<result>
   <item>
      <shorten-author>false</shorten-author>
      <year>2001a</year>
   </item>
   <item>
      <shorten-author>true</shorten-author>
      <year>2001a</year>
   </item>
   <item>
      <shorten-author>true</shorten-author>
      <year>2002</year>
   </item>
</result>

Note the last year.

Bruce

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.