[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] xpath expression restriction


Subject: Re: [xsl] xpath expression restriction
From: ac <ac@xxxxxxxxxxxxx>
Date: Fri, 04 Mar 2011 03:10:20 -0500

Hi Mukul,

It works with the braces.
Still I wonder why it did not pick the "if" and evaluate it?
I am not sure if I understand your question right, but
In the example, $cond is only checking for empty (null) or not.
In the code, it is more like
if ($logging or ($logged and string($nxtid))) then 1 else 0
also, abc is a sequence closer to
$data//wf/*
and the idea is simply to not copy the first element, under some condition
also, it is not really an xsl:copy-of, but an xsl:sequence ...

Thank you.

Regards,
ac




Hi Andre,
      I'm not sure, but perhaps writing the whole if condition in
braces may force evaluation of the if expression before providing this
operand to operator "gt".

i.e could you please try if following works,

<xsl:copy-of select="abc[position() gt (if ($cond) then 1 else 0)]"/>

also curious to know, what do you write to evaluate $cond?

On Fri, Mar 4, 2011 at 11:22 AM, ac<ac@xxxxxxxxxxxxx> wrote:
Hi,

There must be a reason why I can write

<xsl:variable name="x" select="if ($cond) then 1 else 0"/>
<xsl:copy-of select="abc[position() gt $x]"/>

but not

<xsl:copy-of select="abc[position() gt if ($cond) then 1 else 0]"/>

What is the reason?  Is there any way to avoid having to declare the
variable?

Thank you,

Regards,
Andre


Current Thread