Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: IZPACK-1409: remove attribute byLine

...

Code Block
languagehtml/xml
<condition type="contains" id="...">
    <string>a string</string>
    <value>a substring</value>
</condition>
 
<condition type="contains" id="...">
    <variable>a variable</variable>
    <value>a substring</value>
</condition>
 
<condition type="contains" id="...">
    <file>a string</file>
    <value byLine="true" caseInsensitive="false" regex="false">a substring</value>
</condition>

...

NameRequiredDefault ValueDescription

byLine

notrue
Note

Beginning with version 5.0.9 the regex patterns do match to partial contents also (see IZPACK-1408). Therefore the attribute byLine isĀ  no longer needed and has been removed. See IZPACK-1409 for details.

Whether to look up an entry on each line separately or just on a compact content.
This is honored in combination with regex="true" only and makes sense especially for file content.
The condition evaluates true, if the expression is found in at least one of the lines.

caseInsensitive

nofalseWhether to look up case-insensitive.

regex

nofalseWhether the value should be considered a Java regular expression pattern for looking up a content.