Hi!

Is there a difference between following two if statement expressions:

if ($node-set/foo/bar == "klm") {
    <output> "blah";
}

..and:

if ($node-set[foo/bar == "klm"]) {
    <output> "blah";
}


Respective XSLT representations are:

<xsl:if test="$node-set/foo/bar = &quot;klm&quot;">

..and:

<xsl:if test="$node-set[foo/bar = &quot;klm&quot;]">


As far as I can tell, those two expressions are identical.


thanks,
Martin
_______________________________________________
juniper-nsp mailing list [email protected]
https://puck.nether.net/mailman/listinfo/juniper-nsp

Reply via email to