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