From: Rich Bowen
Date: Fri, 8 Apr 2011 14:50:47 +0000 (+0000)
Subject: hernan gonzalez points out that the USER_AGENT
X-Git-Tag: 2.3.12~70
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53b7c7519658aa8fd502efe4b063cb75d334a929;p=thirdparty%2Fapache%2Fhttpd.git
hernan gonzalez points out that the USER_AGENT
strings were probably more accurate with the leading ^ anchor.
Rebuilds a few other changes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1090284 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/configuring.html.fr b/docs/manual/configuring.html.fr
index 192be34e306..e8f2f4f5881 100644
--- a/docs/manual/configuring.html.fr
+++ b/docs/manual/configuring.html.fr
@@ -111,6 +111,11 @@ le Serveur HTTP Apache.
de configuration sans démarrer le serveur à l'aide de la commande
apachectl configtest
ou de l'option de ligne de commande
-t
.
+
+ Vous pouvez utiliser la définition -DDUMP_CONFIG
de
+ mod_info
pour afficher la configuration avec tous
+ les fichiers inclus et les variables d'environnement évaluées, tous
+ les commentaires et les sections <IfDefine>
et <IfModule>
non actives ayant été supprimés.

diff --git a/docs/manual/developer/new_api_2_4.html.en b/docs/manual/developer/new_api_2_4.html.en
index 1f8ab26b06b..983d21b82ea 100644
--- a/docs/manual/developer/new_api_2_4.html.en
+++ b/docs/manual/developer/new_api_2_4.html.en
@@ -223,7 +223,9 @@
REMOVES: accept, lockfile, lock_mech, set_scoreboard (locking uses the new ap_mutex API)
NEW API to drop privileges (delegates this platform-dependent
function to modules)
-
NEW Hooks: mpm_query, mpm_note_child_killed, timed_callback, get_name, and function ap_mpm_note_child_killed
+
NEW Hooks: mpm_query, timed_callback, and get_name
+
CHANGED interfaces: monitor hook,
+ ap_reclaim_child_processes, ap_relieve_child_processes
diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en
index 6dba4315835..e3dbc67be5b 100644
--- a/docs/manual/mod/mod_rewrite.html.en
+++ b/docs/manual/mod/mod_rewrite.html.en
@@ -676,10 +676,10 @@ RewriteRule ...some special stuff for any of these hosts...
use the following:
-RewriteCond %{HTTP_USER_AGENT} Mozilla
+RewriteCond %{HTTP_USER_AGENT} ^Mozilla
RewriteRule ^/$ /homepage.max.html [L]
-RewriteCond %{HTTP_USER_AGENT} Lynx
+RewriteCond %{HTTP_USER_AGENT} ^Lynx
RewriteRule ^/$ /homepage.min.html [L]
RewriteRule ^/$ /homepage.std.html [L]
diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml
index 9b3fa51d476..adf76883caa 100644
--- a/docs/manual/mod/mod_rewrite.xml
+++ b/docs/manual/mod/mod_rewrite.xml
@@ -852,10 +852,10 @@ RewriteRule ...some special stuff for any of these hosts...
-RewriteCond %{HTTP_USER_AGENT} Mozilla
+RewriteCond %{HTTP_USER_AGENT} ^Mozilla
RewriteRule ^/$ /homepage.max.html [L]
-RewriteCond %{HTTP_USER_AGENT} Lynx
+RewriteCond %{HTTP_USER_AGENT} ^Lynx
RewriteRule ^/$ /homepage.min.html [L]
RewriteRule ^/$ /homepage.std.html [L]