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: LOOPING WITH THE EXACT NUMBER OF ITERATIONS


 <xsl:variable name="start" select="number(1)"/>
 <xsl:variable name="increment" select="number(1)"/>
 <xsl:variable name="end" select="number(10)" />

     <xsl:call-template name="loop">
      <xsl:with-param name="counter" select="$start"/>
     </xsl:call-template>

 <xsl:template name="loop">
  <xsl:param name="counter"/>
  <xsl:if test="$counter &lt;= $end">
        your logic    
       <xsl:call-template name="loop">
            <xsl:with-param name="counter" select="$counter + $increment"/>
       </xsl:call-template>
  </xsl:if>
 </xsl:template>


Narsu
http://www.hytes.com


----- Original Message ----- 
From: "Jayaranga Subasinghe" <jayarangas@eurocenter.lk>
To: <xsl-list@lists.mulberrytech.com>
Sent: Monday, June 18, 2001 5:58 AM
Subject: [xsl] LOOPING WITH THE EXACT NUMBER OF ITERATIONS


> hi,
> how can I traverse a node in a xml tree for a given number of times
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 


 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]