The following section describes how to enter parameter values in the configuration file.
The following settings for Boolean parameters are interchangeable:
TRUE = true = True = ON = on = Y = y = 1
FALSE = false = False = OFF = off = N = n =0
Some parameters require string values that contain quotation marks. Percent-encode each quotation mark by inserting a backslash before it.
For example:
FIELDSTART0="<font face=\"arial\"size=\"+1\"><b>
"
Here, the beginning and end of the string are indicated by quotation marks, while all quotation marks that are contained in the string are percent-encoded.
If you want to enter a comma-separated list of strings for a parameter, and one of the strings contains a comma, you must indicate the start and the end of this string with quotation marks.
For example:
ParameterName=cat,dog,bird,"wing,beak",turtle
If any string in a comma-separated list contains quotation marks, you must put this string into quotation marks and percent-encode each quotation mark in the string by inserting a backslash before it.
For example:
ParameterName="<font face=\"arial\"size=\"+1\"><b>",dog,bird,"wing,beak",turtle
|