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 = "klm"">
..and:
<xsl:if test="$node-set[foo/bar = "klm"]">
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