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

RE: reccursive sum ?

Subject: RE: reccursive sum ?
From: "Ricaud Matthieu" <matthieu.ricaud@xxxxxxx>
Date: Thu, 4 Mar 2004 17:36:53 +0100
sum sum
Ok I proceed and it work fine ! I only had a bug because of the folowing
line :

		document(concat('../ME/', $refME, '.xml')

So I put it in a variable

		<xsl:variable name="PathMEXML">
			../ME/<xsl:value-of select="$refME"/>.xml
		</xsl:variable>
and then :
		document($PathMEXML)

and it work ! But i really don't understant why it did not work with the
first expression !!!??,

-----Message d'origine-----
De : owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]De la part de David
Carlisle
Envoyé : jeudi 4 mars 2004 14:39
À : xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Objet : Re:  reccursive sum ?



> So there's no solution..

oh, there's always a solution:-)

for example in your "first pass" node set you could store the sums rather
than the links (just using the "one file" form of document() ) so
something like

<xsl:variable name="ME-sum">
<xsl:for-each select="ME>
 <sum>
 <xsl:value-of
select="count(document(concat('../',@xid,'.xml'))/some/path/i/forget"/>
 </sum>
</xsl:variable>

so now $ME-sum is something like
<sum>5</sum><sum>7</sum><sum>3</sum><sum>3</sum>
including repeated sums, so you just want to sum that:

<xsl:value-of select="msxsl:node-set($ME-sum)/sum"/>

David

--
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

 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.