|
Subject: Re: Wish List: Allow <xsl:choose> within <xsl:call-template> From: "Nikita Ogievetsky" <nogievet@xxxxxxxxxxxx> Date: Thu, 11 Nov 1999 23:31:31 -0000 |
Well, if you really - really want to use
logic right in the place where you are calling templates,
you can
<xsl:call-template name="base-function">
<xsl:with-param name="one">
<xsl:when test="$one">
<xsl:copy-of select="$one"/>
</xsl:when>
<xsl:when test="$done" >
<xsl:copy-of select="$done" />
</xsl:when>
</xsl:with-param>
</xsl:call-template>
This will save you from creating extra 10 variables.
Inside xsl:template body you can use
select ="string($one)"
It does not help in the situation when you only
want to send sub-set of parameters.
Although it is a nice feature to have,
I am not sure that it is something unavoidable.
The worth comes to worth you can send
some special value (like "to-be-replaced-with-default")
that internally will be substituted with default.
On Thu, 11 Nov 1999, Clark C. Evans wrote:
> > On Thu, 11 Nov 1999, Nikita Ogievetsky wrote:
> > > <xsl:choose>
> > > <xsl:when test="$one">
> > > <xsl:variable name="par_one" select="$one"/>
> > > </xsl:when>
> > > <xsl:when test="$done" >
> > > <xsl:variable name="par_one" select="$done"/>
> > > </xsl:when>
> > > </xsl:choose>
> > > ...
> > > <xsl:call-template name="base-function">
> > > <xsl:with-param name="one" select="$par_one" />
> > > </xsl:call-template>
> >
> > Yes. This is logically equivalent to what I was doing,
>
> Actually, it isn't. In Nikita's case, I don't have
> the option to _not_ use the parameter in the call.
> As I do in this case:
>
> <xsl:call-template name="base-function">
> <xsl:if test="$one" >
> <xsl:with-param name="one" select="$one" />
> </xsl:if
> </xsl:call-template>
>
> And once again, its not the single parameter case that
> it important, it is the 10 parameter case, with 10!
> permutations that I'm having problems with.
>
> Clark
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: XT Bug? Re: Wish List: Allow <, Clark C. Evans | Thread | Re: Wish List: Allow <xsl:choose> w, Alexandra Morgan |
| RE: Wish List: Allow <xsl:choose> w, Mike Brown | Date | writing to javascript variables -- , Stephen Yearl |
| Month |