From: Rich Bowen Date: Fri, 30 Mar 2012 01:54:23 +0000 (+0000) Subject: Rebuild. X-Git-Tag: 2.5.0-alpha~7294 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b2c9a39e381883af51494e3deecc61ae567886a;p=apache Rebuild. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1307212 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_ssl.html.en b/docs/manual/mod/mod_ssl.html.en index 1b63ab730f..7b7ece1aea 100644 --- a/docs/manual/mod/mod_ssl.html.en +++ b/docs/manual/mod/mod_ssl.html.en @@ -1747,6 +1747,28 @@ boolean expression is true Status:Extension Module:mod_ssl + +

SSLRequire is deprecated

+

SSLRequire is deprecated and should in general be replaced +by Require expr. The so called +ap_expr syntax of Require expr is +a superset of the syntax of SSLRequire, with the following +exception:

+ +

In SSLRequire, the comparison operators <, +<=, ... are completely equivalent to the operators +lt, le, ... and work in a somewhat pecular way that +first compares the length of two strings and then the lexical order. +On the other hand, ap_expr has two sets of +comparison operators: The operators <, +<=, ... do lexical string comparison, while the operators +-lt, -le, ... do integer comparison. +For the latter, there are also aliases without the leading dashes: +lt, le, ... +

+ +
+

This directive specifies a general access requirement which has to be fulfilled in order to allow access. It is a very powerful directive because the @@ -1837,27 +1859,6 @@ the left-hand-side expression.

-

SSLRequire is deprecated

-

SSLRequire is deprecated and should in general be replaced -by Require expr. The so called -ap_expr syntax of Require expr is -a superset of the syntax of SSLRequire, with the following -exception:

- -

In SSLRequire, the comparison operators <, -<=, ... are completely equivalent to the operators -lt, le, ... and work in a somewhat pecular way that -first compares the length of two strings and then the lexical order. -On the other hand, ap_expr has two sets of -comparison operators: The operators <, -<=, ... do lexical string comparison, while the operators --lt, -le, ... do integer comparison. -For the latter, there are also aliases without the leading dashes: -lt, le, ... -

- -
-

See also