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

Re: sort / unsort

Subject: Re: sort / unsort
From: Mike Berrow <mberrow@xxxxxxxxxxx>
Date: Thu, 08 Aug 2002 17:43:12 -0700
mike.berrow
That was fun!!

Here is how I did it ...
==============================
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">
<xsl:output method="xml" indent="yes"/>

<xsl:template match="nodes">
  <xsl:variable name="fooSet" select="foo"/>
  <xsl:variable name="topSortedIDs">
    <xsl:for-each select="$fooSet">
      <xsl:sort select="."/>
      <xsl:if test="position() &lt; 6">
        <xsl:value-of select="generate-id()" />
      </xsl:if>
    </xsl:for-each>   
  </xsl:variable>
  <partlySortedSet>
    <xsl:for-each select="foo">
      <xsl:sort select="."/>
      <xsl:if test="position() &lt; 6"><xsl:copy-of select="."/></xsl:if>
    </xsl:for-each>
    <xsl:text>&#xA;</xsl:text>
    <xsl:comment>Unsorted Remainder</xsl:comment>
    <xsl:for-each select="$fooSet">
      <xsl:variable name="currNode" select="."/>
      <xsl:if test="not(contains($topSortedIDs,generate-id()))">
        <xsl:copy-of select="."/>
      </xsl:if>
    </xsl:for-each>
  </partlySortedSet>
</xsl:template>

</xsl:stylesheet>
==============================

Does anyone see a better way?

-- Mike Berrow


----- Original Message ----- 
From: "McKeever, Marty" <marty.mckeever@xxxxxxxxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Thursday, August 08, 2002 12:44 PM
Subject:  sort / unsort


Interesting problem, i've been wracking my brain to solve.

>From a group of nodes, output the first five in a sorted order, and dump the
remainder in document order.

that is:
<foo>I</foo>
<foo>F</foo>
<foo>E</foo>
<foo>D</foo>
<foo>A</foo>
<foo>C</foo>
<foo>B</foo>
<foo>H</foo>
<foo>G</foo>

would output:
<foo>A</foo>
<foo>B</foo>
<foo>C</foo>
<foo>D</foo>
<foo>E</foo>
<foo>I</foo>
<foo>F</foo>
<foo>H</foo>
<foo>G</foo>
note that only the first 5 are sorted.
the remainder are in document order - less the 5 sorted items.

TIA,
Marty

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



 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.