Re: [xsl] count in several document

Subject: Re: [xsl] count in several document
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 23 Jun 2003 16:12:46 +0100

when you use a node set, such as //chapmod/attribute::docref in the
argument of a function expecting a string, or explictly coerce it to a
string using string() then XPath1 _always_ takes the string value of the
first node in the set in document order, and discards all the rest.

If your source file had the full filename

<chapmod docref="document1.xml" lang="FR"/>
...

then you would be in much better shape as you could go
select="count(document(//chapmod/@docref)//ht)"

Otherwise your simplest solution is probably to make one pass to make a
document of that form just using an xml-xml transformation to add .xml
to the filenames, then make a second pass that does the above.

Otherwise you'll have to do a recursive template that does the addition
by hand. That isn't hard but changing the input document is easier, if
that is an option.

David

________________________________________________________________________
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


Current Thread