« Previous | Next » 

Revision eed6b268

IDeed6b268adcb70660b0a5251c2d434b591c7bd8b
Parent 6187a97f
Child 19434406

Added by Ruben S. Montero almost 5 years ago

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

View differences