|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Sorting - one to many
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








