From: Rich Bowen Date: Sat, 11 May 2013 16:14:28 +0000 (+0000) Subject: Merge docs tweaks from trunk X-Git-Tag: 2.4.5~297 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70f17f4ac14b8b1374ad3c6f15db4550f7f2dacf;p=apache Merge docs tweaks from trunk git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1481368 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/expr.xml b/docs/manual/expr.xml index da17b56244..cecd792d13 100644 --- a/docs/manual/expr.xml +++ b/docs/manual/expr.xml @@ -519,7 +519,7 @@ listfunction ::= listfuncname "(" word ")" # Only allow access to this content during business hours <Directory "/foo/bar/business"> - Require expr %{TIME_HOUR} -gt 9 && %{TIME_HOUR} -lt 17 + Require expr "%{TIME_HOUR} -gt 9 && %{TIME_HOUR} -lt 17" </Directory> diff --git a/docs/manual/mod/mod_authz_core.xml b/docs/manual/mod/mod_authz_core.xml index 7f1f9bca84..8e29ffa395 100644 --- a/docs/manual/mod/mod_authz_core.xml +++ b/docs/manual/mod/mod_authz_core.xml @@ -218,7 +218,7 @@ SetEnvIf User-Agent ^KnockKnock/2\.0 let_me_in decisions on arbitrary expressions.

- Require expr %{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17 + Require expr "%{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17"

The syntax is described in the ap_expr diff --git a/docs/manual/urlmapping.xml b/docs/manual/urlmapping.xml index 016d835866..c2b394143e 100644 --- a/docs/manual/urlmapping.xml +++ b/docs/manual/urlmapping.xml @@ -97,12 +97,12 @@

Then a request for http://www.example.com/fish/ will cause httpd to attempt to serve the file /var/www/html/fish/index.html. In the event that - that file didn't exist, it will next attempt to serve file file + that file does not exist, it will next attempt to serve the file /var/www/html/fish/index.php.

-

If neither of these files existed, the next step would be to +

If neither of these files existed, the next step is to attempt to provide a directory index, if - mod_autoindex were loaded and configured to permit + mod_autoindex is loaded and configured to permit that.

httpd is also capable of Virtual