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

RE: Node with maximum attribute value

Subject: RE: Node with maximum attribute value
From: "Richard Birkby" <rbirkby@xxxxxxxxxxxxxxx>
Date: Mon, 21 Feb 2000 19:30:59 -0000
xpath maximum attribute value
There is still the problem of a "return value". I want to use the
max-of-rest in an XPath, probably several times. Doing all this recursion
several times for each template instantiation would be very time consuming.

BTW, your logic appears to print out an increasing series of numbers, or the
last Max value it found, for every node. It doesn't have a single output.

> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxx
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxx]On Behalf Of Kay Michael
> Sent: 21 February 2000 18:26
> To: 'xsl-list@xxxxxxxxxxxxxxxx'
> Subject: RE: Node with maximum attribute value
>
>
> >I want to find the maximum mid attribute from the node-set.
>
> This is one that does need recursion, follow the logic:
>
> template name="get-max"
> param name="nodes"
>  choose
>  when test="$nodes"
>    variable name="max-of-rest"
>     call-template name="get-max"
>      with-param name="nodes" select="$nodes[position()!=1]"
>     /call-template
>    /variable
>    choose
>    when test="nodes[1]/@mid > $max-of-rest"
>     value-of select="nodes[1]/@mid"
>    /when
>    otherwise
>     value-of select="$max-of-rest"
>    /otherwise
>    /choose
>  /when
>  otherwise
>   value-of select="-1 div 0" <!-- minus infinity -->
>  /otherwise
>  /choose
> /template
>
> Mike Kay
>
>
>
>  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.