Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A script node allows the user to define an Expression to be evaluated at that point in the grammar. The Expression must be entered as text between opening and closing Script Nodes, as shown below:

Code Block
languagexml
<Script>$complete = if($count == 10, 1, 0)</Script>


A CDATA tag must be used if the Expression includes any characters which could be interpreted as XML (e.g. a < sign), as shown below:

Code Block
languagexml
<Script>

...


  <![CDATA[ 

...


  $complete = if($count < 10, 1, 0)

...


  ]]>

...


</Script>


Dollar variables in an Expression may refer to preceding Attribute Nodes, now assigned values read from the file, providing that these Attribute Nodes have been declared as script variables in the scriptVariables attributes of ancestor nodes (in each case, an ancestor node of both the Attribute Node, and the current Script Node). Dollar variables referring to Attribute Nodes in this way must be in the form $scope_attributeName, where scope is the name of the node that the script variable was declared on.

A Script Node has no attributes other than the common attributes (see 3.1).

A Script Node should not contain any child nodes. Any child nodes of a Script Node will be ignored.

...