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

RE: xsl:call-template question

Subject: RE: xsl:call-template question
From: "Lin, Jessica" <jlin@xxxxxxxxxxx>
Date: Wed, 23 Aug 2006 11:40:35 -0700
missed call templates
Thanks Gandhi, I missed your reply. I am reading it now. That's really
helpful.

--- Jessica

-----Original Message-----
From: Mukul Gandhi [mailto:gandhi.mukul@xxxxxxxxx]
Sent: Wednesday, August 23, 2006 11:31 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  xsl:call-template question

I gave a solution to this problem two days back, after testing it.
Didn't that solve the problem? Haven't recieved any comments from
you..

But if you want to write the code yourself, I encourage you to do so.
It's worth learning the language.

On 8/23/06, Lin, Jessica <jlin@xxxxxxxxxxx> wrote:
> Here is the block of xml file. I want to repeat stream twice in
> stream_loop and change the SCID to PID with differenct start number by
> using xsl:call-template.
>
>  <stream_loop>
>    <stream_definition>
>      <stream_type>2</stream_type>
>      <SCID>100</SCID>
>      <descriptors_loop_length>compute</descriptors_loop_length>
>      <descriptor_loop>
>        <about_descriptor>some description</about_descriptor>
>        <additional_descriptor>other
description</additional_descriptor>
>      </descriptor_loop>
>    </stream_definition>
>  </stream_loop>
>
>
> Here is the expected result:
>  <stream_loop>
>    <stream>
>      <stream_type>2</stream_type>
>      <PID>4112</SCID>
>      <ECM>4113</ECM>
>      <descriptors_loop_length>compute</descriptors_loop_length>
>      <descriptor_loop>
>        <about_descriptor>some description</about_descriptor>
>        <additional_descriptor>other
description</additional_descriptor>
>      </descriptor_loop>
>    </stream>
>    <stream>
>      <stream_type>2</stream_type>
>      <PID>4114</SCID>
>      <ECM>4115</ECM>
>      <descriptors_loop_length>compute</descriptors_loop_length>
>      <descriptor_loop>
>        <about_descriptor>some description</about_descriptor>
>        <additional_descriptor>other
description</additional_descriptor>
>      </descriptor_loop>
>    </stream>
>  </stream_loop>
>
>
>
> Here is my xslt block:
>
>
> <xsl:template name="repeat twice">
>  <xsl:param name="base" select="4112"/>
>  <xsl:param name="start" select="0"/>
>  <xsl:choose>
>    <xsl:when test="$start &lt; 2">
>      <stream>
>        <xsl:for-each select="node()">
>          <xsl:choose>
>            <xsl:when test="local-name(.)='SCID'">
>              <PID>
>                    <xsl:value-of select="$base"/>
>              </PID>
>              <ECM>
>                <xsl:value-of select="$base+1"/>
>              </ECM>
>            </xsl:when>
>            <xsl:otherwise>
>              <xsl:copy-of select="."/>
>            </xsl:otherwise>
>          </xsl:choose>
>        </xsl:for-each>
>      </stream>
>      <xsl:call-template name="calculate">
>        <xsl:with-param name="base" select="$base+$start*2" />
>        <xsl:with-param name="start" select="$start+1"/>
>      </xsl:call-template>
>    </xsl:when>
>  </xsl:choose>
> </xsl:template>
>
>
> But the real result is not as what I am expecting. Can anyone tell me
> what's wrong in my xslt block? Thank a lot.
>
>
> --- Jessica


--
Regards,
Mukul Gandhi

http://gandhimukul.tripod.com

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.