This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: for loop


On Thu, 2001-10-18 at 01:58, Clark, Jason wrote:
> Hello All,
> 
> I have one node that holds a value of say 5 (this number could be any number
> 1-5 ).  I need to take that value and create 5 links that point to different
> locations.  Since the for-each is only a iterator across node sets, how
> would I handle this.

use a recursive template:

<xsl:template name="loop">
	<xsl:param name="index" />
.................
.................
	<xsl:if test="$index $gt; 0">
    	<xsl:call-template name="loop">
    		<xsl:with-param name="index" select="$index - 1"/>
    	</xsl:call-template>
	</xsl:if>
</xsl:template>

Just insert the code you want where the dots are and on the initial call
set the value of index appropriately

gavin
  



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]