if-local-variable


<if-local-variable> performs a test on a local variable. The type of test performed depends on the operator specified by the op attribute. The following table shows the type of test performed by each operator. If local variable holds a node set then the string value of each node in the nodeset is used for comparison purposes. If the same local variable exists in both the policy scope and the driver scope, the variable in the policy scope takes precedence.

operator Returns true when...

available

there is a local variable with the specified name that has been defined by an action of a earlier <rule> within the <policy>.

equal

there is a local variable with the specified name and its value equals the content of the condition when compared using the specified comparison mode.

Supports variable expansion.

lt

there is a local variable with the specified name and its value is less than the content of the condition when compared using the specified comparison mode.

Supports variable expansion.

gt

there is a local variable with the specified name and its value is greater than the content of the condition when compared using the specified comparison mode.

Supports variable expansion.

not-available

available would return false.

not-equal

equal would return false.

not-lt

lt would return false.

not-gt

gt would return false.

Examples

<if-local-variable name="myLocalVariable" op="available"/>

<if-local-variable mode="nocase" name="myLocalVariable" op="equal">enabled</if-local-variable>

1. Allowed Content

#PCDATA

2. Attributes

AttributeValue(s)Default Value
disabled true   |  false
true if this element is disabled
false
mode case   |  nocase   |  regex   |  src-dn   |  dest-dn   |  numeric   |  octet
comparison mode if op implies a comparison
nocase
name CDATA
name of the variable
supports variable expansion
after expansion, must be a legal XML Name
#REQUIRED
notrace true   |  false
false
op available   |  equal   |  lt   |  gt   |  not-available   |  not-equal   |  not-lt   |  not-gt
test operator
#REQUIRED

3. Content Rule

( #PCDATA )

4. Parent Elements

and
  logical conjunction
or
  logical disjunction

Top Elements || All Elements || Tree


DirXMLScript DTD