20. parameterSet

<parameterSet
  name = non empty token
>
  Content: [ parameterGroup ]*
</parameterGroup>

A parameterSet is a named set of XSL style sheet parameters normally created using the Parameter SetSave menu item of the Parameter Set Chooser dialog box in XMLmind XML Editor - Online Help. However a consultant may create such parameter sets manually and add them to a (manually written) configuration file. This allows to make available to a group of authors a number of predefined parameter sets.

A parameter set has a name which uniquely identifies it. It contains a list of parameterGroups, each parameterGroup corresponding to an existing process command. Example:

<parameterSet name="Experts">
  <parameterGroup name="docb.toPS.transformParameters">
    <parameter name="profile.condition">expert</parameter>
    <parameter name="variablelist.as.blocks">1</parameter>
  </parameterGroup>
  <parameterGroup name="docb.toRTF.transformParameters">
    <parameter name="profile.condition">expert</parameter>
  </parameterGroup>
</parameterSet>