]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
hernan gonzalez <hgonzalez gmail.com> points out that the USER_AGENT
authorRich Bowen <rbowen@apache.org>
Fri, 8 Apr 2011 14:50:47 +0000 (14:50 +0000)
committerRich Bowen <rbowen@apache.org>
Fri, 8 Apr 2011 14:50:47 +0000 (14:50 +0000)
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

docs/manual/configuring.html.fr
docs/manual/developer/new_api_2_4.html.en
docs/manual/mod/mod_rewrite.html.en
docs/manual/mod/mod_rewrite.xml

index 192be34e3061b874000471f5db2a93c49d18f642..e8f2f4f5881a861b4aa00ad5db758a8d310c0939 100644 (file)
@@ -111,6 +111,11 @@ le Serveur HTTP Apache.</p>
     de configuration sans démarrer le serveur à l'aide de la commande
     <code>apachectl configtest</code> ou de l'option de ligne de commande
     <code>-t</code>.</p>
+
+    <p>Vous pouvez utiliser la définition <code>-DDUMP_CONFIG</code> de
+    <code class="module"><a href="./mod/mod_info.html">mod_info</a></code> pour afficher la configuration avec tous
+    les fichiers inclus et les variables d'environnement évaluées, tous
+    les commentaires et les sections <code class="directive"><a href="./mod/core.html#ifdefine">&lt;IfDefine&gt;</a></code> et <code class="directive"><a href="./mod/core.html#ifmodule">&lt;IfModule&gt;</a></code> non actives ayant été supprimés.</p>
   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
 <div class="section">
 <h2><a name="modules" id="modules">Modules</a></h2>
index 1f8ab26b06b3e78a5f6cbc063aacb561a2cd096b..983d21b82ea5997aefc04db6acdde4eda4a876f8 100644 (file)
       <li>REMOVES: accept, lockfile, lock_mech, set_scoreboard (locking uses the new ap_mutex API)</li>
       <li>NEW API to drop privileges (delegates this platform-dependent
           function to modules)</li>
-      <li>NEW Hooks: mpm_query, mpm_note_child_killed, timed_callback, get_name, and function ap_mpm_note_child_killed</li>
+      <li>NEW Hooks: mpm_query, timed_callback, and get_name</li>
+      <li>CHANGED interfaces: monitor hook,
+      ap_reclaim_child_processes, ap_relieve_child_processes</li>
     </ul>
   
 
index 6dba4315835a2ae361995bf52d5aeadf8cb3c860..e3dbc67be5b27a115a58e03f802e3bd53ce07c09 100644 (file)
@@ -676,10 +676,10 @@ RewriteRule ...some special stuff for any of these hosts...
         use the following: </p>
 
 <div class="example"><pre>
-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]
index 9b3fa51d47690b3bc93816781d95515326aab7cd..adf76883caaa39c635f731ed06817f0a57a8e082 100644 (file)
@@ -852,10 +852,10 @@ RewriteRule ...some special stuff for any of these hosts...
 
 <example>
 <pre>
-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]