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

Re: Sorting - one to many

Subject: Re: Sorting - one to many
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 28 Sep 1999 17:26:41 +0100 (BST)
how many xsl sort
putting <x> ... </x> around your list of books to get a well formed
document, then



<xsl:stylesheet 
  xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">


<xsl:template match="x">
<xsl:apply-templates select="book/country[not(. = following::country)]">
 <xsl:sort select="."/>
</xsl:apply-templates>
</xsl:template>



<xsl:template match="country">
<xsl:value-of select="."/>
<xsl:variable name="c" select="."/>
<xsl:apply-templates select="//book[country=$c]/title">
 <xsl:sort select="."/>
</xsl:apply-templates>
</xsl:template>


</xsl:stylesheet>


bash-2.01$ xt book.xml book.xsl 

          Canada
     
          A book that is published in 2 countries
     
          A book that is published in 3 countries
     
          Mexico
     
          A book that is published in 3 countries
     
          United States
    
          A book that is published in 2 countries
     
          A book that is published in 3 countries
     bash-2.01$ 


David


 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.