[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Increment a variable

Subject: Re: Increment a variable
From: omprakash.v@xxxxxxxxxxxxx
Date: Thu, 18 Aug 2005 11:16:33 +0530
xslt iterate variable
Hi Chandu,

       XSLT is a functional programming language and not a procedural one.
Hence, what you ask has to be handled differently. Your input xslt has to
have atleast as many nodes as the upper limit in the for loop (1000 in your
case) for this to work. Or in your case since you want the var reset for
every 100
nodes, 10 nodes atleast 100 deep I would imagine.

The general idea is outlined below: You would need something to call your
iterate template though.

<xsl:template name="iterate">

<xsl:for-each select="ancestor::node()[position() &lt; 100]">

<xsl:call-template name="fun2">
<xsl:with-param name="var" select="0"/>
</xsl:call-template>

</xsl:for-each>

</xsl:template>

<xsl:template name="fun2">
<xsl:param name="var"/>

<!-- dom something with var here -->

<xsl:if test="$var = 100">
<xsl:call-template name="iterate">
</xsl:if>

<xsl:choose>
<xsl:when test="$var = 100">
<xsl:call-template name="iterate"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="fun2">
<xsl:with-param name="var" select="number($var)+1"/>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>

</xsl:template>


</xsl:for-each>
















                                                                                                                                         
                      "ChandraShekar, A"                                                                                                 
                      <ChandraShekar.A@s         To:      <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>                                              
                      iemens.com>                cc:      (bcc: omprakash.v/Polaris)                                                     
                                                 Subject:  Increment a variable                                                     
                      08/18/2005 10:04                                                                                                   
                      AM                                                                                                                 
                      Please respond to                                                                                                  
                      xsl-list                                                                                                           
                                                                                                                                         
                                                                                                                                         




 Hello,
             I don't know whether this question is stupid question or not?

             How can I achieve following c++ code in XSLT.

             void fun1()
             {
                         for(int i=0;i<1000;i++)
                         {
                            fun2(i);
                         }
             }

             void fun2(int var)
             {
                         if ( var == 0 )
                         {
                                     var++;
                                     // do something
                         }
                         else
                         {
                                     Var++;
                                     // do something
                         }
                         if ( var == 100 )
                         {
                                     Var = 0;
                                     // do something

                         }
             }


Thanks in advance,





This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected to you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction, dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its attachment other than by its intended recipient/s is strictly prohibited.

Visit Us at http://www.polaris.co.in

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.