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

Re: for-loop in xslt problem

Subject: Re: for-loop in xslt problem
From: "Dimitre Novatchev" <dnovatchev@xxxxxxxxx>
Date: Sat, 5 Apr 2003 17:44:33 +0200
for loop in xsl
Using FXSL one would write:

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:myPrint="f:myPrint"
 >
 <xsl:import href="iter.xsl"/>
 <xsl:output method="text"/>

  <xsl:template match="/">

   <xsl:variable name="vfPrint" select="document('')/*/myPrint:*[1]"/>

    <xsl:variable name="vrtfIterResult">
      <xsl:call-template name="scanIter">
        <xsl:with-param name="arg1"
                  select="ceiling(/*/total div /*/skip)"/>
        <xsl:with-param name="arg2" select="$vfPrint"/>
      </xsl:call-template>
    </xsl:variable>

    <xsl:value-of select="$vrtfIterResult"/>
  </xsl:template>

  <myPrint:myPrint/>
  <xsl:template match="myPrint:*">
    Print this!
  </xsl:template>

</xsl:stylesheet>

When this transformation is performed on your source.xml:

<t>
  <total>45</total>
  <skip>20</skip>
</t>

the wanted result is produced:


    Print this!

    Print this!

    Print this!


=====
Cheers,

Dimitre Novatchev.
http://fxsl.sourceforge.net/ -- the home of FXSL



"Frankie Roberto" <public@xxxxxxxxxxxxxxxxxx> wrote in message
news:ILEMJNHHHLEKFFNFNLDMOEFJCHAA.public@xxxxxxxxxxxxxxxxxxxxx
>
> Hi,
>
> I'm having problems trying to implement a 'for' loop in xslt - I haven't
> seen any syntax so far that can cope with this (and my book doesn't go
into
> it).
>
> To explain, my XML looks something like:
>
> <total>45</total>
> <skip>20</skip>
>
>
> The PHP script I am converting would do something like this:
>
> for ($count = 0; $count<=$total; ($count = $count + $skip)) {
>
> echo("Print this");
>
> }
>
> ..looping $total/$skip times plus once for the remainder.
>
> But I can't see any way of doing this in xslt so far...
>
> Ta.
>
> Frankie
>
>
>  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

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.