Revision eed6b268
ID | eed6b268adcb70660b0a5251c2d434b591c7bd8b |
Parent | 6187a97f |
Child | 19434406 |
bug #4637: Adds > operator for boolean expresions.
> evaluates to
true if the value is included in a result array. An array of attributes
is obtained for multiple values xpath, e.g.
<CLUSTER>
<ID>100</ID>
<ID>101</ID>
</CLUSTER>
an expresion of the form CLUSTER/ID in a requirement returns [100, 101].
To test if a given element is in a datastore:
CLUSTER/ID > 101 -----> [100, 101]
> 101 ---> true
Note that CLUSTER/ID = 101 only evaluates the first element found
CLUSTER/ID = 101 ----> 100 = 101 ----> false
Files
- added
- modified
- copied
- renamed
- deleted