From 187fb420ad235c68cc8432d865357ff9af083e4c Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Thu, 9 Mar 2017 08:50:12 +0000 Subject: [PATCH] Wording/formatting/typo fixes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1786113 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.xml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/docs/manual/mod/core.xml b/docs/manual/mod/core.xml index 8213a83daf..ce1b948861 100644 --- a/docs/manual/mod/core.xml +++ b/docs/manual/mod/core.xml @@ -2420,8 +2420,8 @@ presence or absence of a specific directive

In the former case, the directives between the start and end markers are only processed if a directive of the given name is available at the time of processing. The second format reverses the test, - and only processes the directives if the directive-name is - not defined.

+ and only processes the directives if directive-name is + not available.

This section should only be used if you need to have one configuration file that works across multiple versions of @@ -2449,30 +2449,31 @@ presence or absence of a specific section directive test>...</IfSection> section is used to mark directives that are conditional on the presence of a specific section directive. A section directive is any directive - such as virtualhost which + such as VirtualHost which encloses other directives, and has a directive name with a leading - "<". The sec + "<".

- The directives within an The directives within an IfSection section are only processed if the test is true. If test is false, everything between the start and end markers is ignored.

-

The section-name specified must not include the - leading "<". The test in the IfSection section can be one of two - forms:

+

The section-name must be specified without either + the leading "<" or closing ">". The test in the + IfSection section can be one + of two forms:

  • section-name
  • !section-name
-

In the former case, the directives between the start and - end markers are only processed if a section directive of the given +

In the former case, the directives between the start and end + markers are only processed if a section directive of the given name is available at the time of processing. The second format - reverses the test, and only processes the directives if the - section-name is not defined.

+ reverses the test, and only processes the directives if + section-name is not an available + section directive.

For example:

-- 2.40.0