Changes between Version 3 and Version 4 of TewiDirectiveBeginIf
- Timestamp:
- Sep 26, 2024, 4:20:31 AM (7 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TewiDirectiveBeginIf
v3 v4 2 2 == !BeginIf / !EndIf 3 3 Encloses directives that will be processed only if a test is true at startup. 4 This is equivalent to {{{ httpd }}}'s {{{ IfDefined }}}4 This is equivalent to `httpd`'s `IfDefined` 5 5 6 6 {{{ 7 BeginIf Defined 7 BeginIf Defined test 8 8 ForceLog "defined" 9 9 EndIf … … 12 12 == !BeginIfNot / !EndIfNot 13 13 Same as above for false values. 14 This is equivalent to {{{ httpd's }}} {{{ IfDefined !parameter-name }}}14 This is equivalent to `httpd`'s `IfDefined !parameter-name` 15 15 16 16 {{{ 17 17 BeginIfNot Defined test 18 18 ForceLog "not defined" 19 EndIf Not19 EndIf 20 20 }}}