Changes between Version 3 and Version 4 of TewiDirectiveBeginIf


Ignore:
Timestamp:
Sep 26, 2024, 4:20:31 AM (7 weeks ago)
Author:
Nishi
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TewiDirectiveBeginIf

    v3 v4  
    22== !BeginIf / !EndIf
    33Encloses directives that will be processed only if a test is true at startup.
    4 This is equivalent to {{{ httpd }}}'s {{{ IfDefined }}}
     4This is equivalent to `httpd`'s `IfDefined`
    55
    66{{{
    7 BeginIf Defined
     7BeginIf Defined test
    88    ForceLog "defined"
    99EndIf
     
    1212== !BeginIfNot / !EndIfNot
    1313Same as above for false values.
    14 This is equivalent to {{{ httpd's }}} {{{ IfDefined !parameter-name }}}
     14This is equivalent to `httpd`'s `IfDefined !parameter-name`
    1515
    1616{{{
    1717BeginIfNot Defined test
    1818   ForceLog "not defined"
    19 EndIfNot
     19EndIf
    2020}}}