[xsl] using only xpath string to count list items

Subject: [xsl] using only xpath string to count list items
From: "Deb Harding" <Deb.Harding@xxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 18 Nov 2004 13:01:25 -0700
Hello,

I am working with a styling tool where I am only using an xpath string
to generate text. I have the following xml where I want to know the
l1items in a task. So if I am at the first l1item in the first subtask I
can get back a count of two. I have been trying to use something along
the lines of 

count(./preceding::l1item[./ancestor::task])+1

but don't know how to get to the current l1item node and figure out
where it is located in the task. The tool doesn't support current() so
any help doing this with an XPath string would be great.
 
<task>
<topic>
<title></title>
<subtask>
<effect></effect>
<list1>
<l1item>
</l1item>
</list1>
</subtask>
<subtask>
<effect></effect>
<list1>
<l1item></l1item>
<l1item></l1item>
</list1>
</subtask>
</topic>
</task>

Thanks,

Deb

Current Thread