RE: Incrementing/Recursion... (somewhat)

Subject: RE: Incrementing/Recursion... (somewhat)
From: Ed Staub <estaub@xxxxxxxx>
Date: Mon, 13 Nov 2000 16:17:18 -0500
Two references to the same page in ten minutes; see page 546 etc. in Michael
Kay's "XSLT" book, on "Programming without Assignment Statements".  Either
recurse or use something like 
	substring(">>>>>>>>>>>",1,position())

-Ed Staub

-----Original Message-----
From: Stephen Cunliffe [mailto:scunliffe@xxxxxxxxxxxxxxxxxx]
Sent: Monday, November 13, 2000 12:35 PM
To: XSL List
Subject: Incrementing/Recursion... (somewhat)


Monday is causing me brain failure...

I'm looking to do the following (or something similar).

based on the pseudo XML below:

<groups>
    <group>First</group>
    <group>Second</group>
    <group>Third</group>
    <group>Fourth</group>
    <group>Fifth</group>
</groups>

in my XSL I want to get output, that "increments" for each item of group
data, as it is processed,
giving HTML output of:

[#] First
[#][#] Second
[#][#][#] Third
[#][#][#][#] Fourth
[#][#][#][#][#] Fifth

where "[#]" is some bit of text,(not a number) that can be repeated for
spacing output in a pseudo tree format.

I guess what I'm looking for is something that will "repeat" or
"for-each", based on the position, within "groups".

T.I.A.

Steve.


 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