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(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com]De la part de
David
Carlisle
Envoyé : jeudi 4 mars 2004 14:39
À : xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Objet : Re: [xsl] 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