From 334f4ef3f2f0050cea2137ad32c20dde63fb9105 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Mon, 12 Apr 2004 16:14:35 +0000 Subject: [PATCH] some nitpicking git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103352 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_version.html.en | 27 +++++++++++++-------------- docs/manual/mod/mod_version.xml | 9 +++++---- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/manual/mod/mod_version.html.en b/docs/manual/mod/mod_version.html.en index 4cd8c9710d..8cecd1e5ff 100644 --- a/docs/manual/mod/mod_version.html.en +++ b/docs/manual/mod/mod_version.html.en @@ -79,19 +79,18 @@ assumed to be zero. The following numerical operators are possible:

- - - +
operatordescription
= or ==
+ - + - + - + - + -
operatordescription
= or == httpd version is equal
>
> httpd version is greater than
>=
>= httpd version is greater or equal
<
< httpd version is less than
<=
<= httpd version is less or equal
+

Example

<IfVersion >= 2.1>
@@ -105,15 +104,14 @@

Besides the numerical comparison it is possible to match a regular expression against the httpd version. There are two ways to write it:

- - - +
operatordescription
= or ==
+ - + -
operatordescription
= or == version has the form /regex/
~
~ version has the form regex
+

Example

<IfVersion = /^2.1.[01234]$/>
@@ -134,7 +132,8 @@ </IfVersion>

-

If the operator is omitted, it is assumed to be =.

+

If the operator is omitted, it is assumed to be + =.

diff --git a/docs/manual/mod/mod_version.xml b/docs/manual/mod/mod_version.xml index 8ada1df3cc..4ecdb2ec02 100755 --- a/docs/manual/mod/mod_version.xml +++ b/docs/manual/mod/mod_version.xml @@ -71,7 +71,7 @@ assumed to be zero. The following numerical operators are possible:

- +
@@ -97,8 +97,8 @@

Besides the numerical comparison it is possible to match a regular expression against the httpd version. There are two ways to write it:

-
operatordescription
= or == httpd version is equal
- +
operatordescription
+ @@ -126,7 +126,8 @@ </IfVersion> -

If the operator is omitted, it is assumed to be =.

+

If the operator is omitted, it is assumed to be + =.

-- 2.50.1
operatordescription
= or == version has the form /regex/