]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Markup typos. Rebuild HTML.
authorRich Bowen <rbowen@apache.org>
Mon, 4 Apr 2011 12:21:22 +0000 (12:21 +0000)
committerRich Bowen <rbowen@apache.org>
Mon, 4 Apr 2011 12:21:22 +0000 (12:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1088588 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/new_features_2_4.html.en
docs/manual/new_features_2_4.html.fr
docs/manual/new_features_2_4.xml
docs/manual/rewrite/flags.html.en
docs/manual/rewrite/flags.xml

index ed05f193cd8fb7e76c027ac2300ca2520b5b7b84..239f5b61b08e12bc0e15ef3a2d4c5a01262cc664 100644 (file)
       <dt><code class="module"><a href="./mod/mod_info.html">mod_info</a></code></dt>
       <dd><code class="module"><a href="./mod/mod_info.html">mod_info</a></code> can now dump the pre-parsed configuration
           to stdout during server startup.</dd>
+
+      <dt><code class="module"><a href="./mod/mod_rewrite.html">mod_rewrite</a></code></dt>
+      <dd><code class="module"><a href="./mod/mod_rewrite.html">mod_rewrite</a></code> adds the <code>[QSD]</code>
+      (Query String Discard) and <code>[END]</code> flags for
+      <code class="directive"><a href="./mod/mod_rewrite.html#rewriterule">RewriteRule</a></code> to
+      simplify common rewriting scenarios.</dd>
     </dl>
   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
 <div class="section">
index 75bf9cf53e88ecad93f351d626bfcd5126882a56..d7643050d2c94ec94e97cff65a1f68a409b41d9f 100644 (file)
@@ -206,11 +206,16 @@ serveur HTTP Apache</h1>
       clients anciens qui nécessitent de tels en-têtes (Ceci affecte
       tous les modules qui utilisent ces variables d'environnement).</dd>
 
-      <dt>Conteneurs de logique d'autorisation de <code class="module"><a href="./mod/mod_authz_core.html">mod_authz_core</a></code></dt>
+      <dt><code class="module"><a href="./mod/mod_authz_core.html">mod_authz_core</a></code>Conteneurs de logique d'autorisation</dt>
 
       <dd>La directive <code class="directive"><a href="./mod/mod_authz_core.html#require">Require</a></code> et les directives de
       conteneurs associées, comme <code class="directive"><a href="./mod/mod_authz_core.html#requireall">&lt;RequireAll&gt;</a></code>, permettent de définir une
       logique d'autorisation avancée.</dd>
+
+      <dt><code class="module"><a href="./mod/mod_info.html">mod_info</a></code></dt>
+      <dd><code class="module"><a href="./mod/mod_info.html">mod_info</a></code> est maintenant capable d'afficher la
+      configuration préinterprétée sur stdout au cours du démarrage du
+      serveur.</dd>
       
     </dl>
   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
index ae4c46638954011db0c8bdbfc4c0d5736d7c425e..95a4f425aba7903120c5d1836c91607c6f927dce 100644 (file)
       <dd><module>mod_info</module> can now dump the pre-parsed configuration
           to stdout during server startup.</dd>
 
-      <dt><module>mod_rewrite</module></td>
+      <dt><module>mod_rewrite</module></dt>
       <dd><module>mod_rewrite</module> adds the <code>[QSD]</code>
       (Query String Discard) and <code>[END]</code> flags for
       <directive module="mod_rewrite">RewriteRule</directive> to
index 945ce8a6d376e9d71f616f7f2bb11a44144544c0..f93dd4a83ea49d7a6235edd80099aa0080d730f3 100644 (file)
@@ -32,6 +32,7 @@ providing detailed explanations and examples.</p>
 <li><img alt="" src="../images/down.gif" /> <a href="#flag_co">CO|cookie</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#flag_dpi">DPI|discardpathinfo</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#flag_e">E|env</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#flag_end">END</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#flag_f">F|forbidden</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#flag_g">G|gone</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#flag_h">H|handler</a></li>
@@ -261,6 +262,15 @@ CustomLog logs/access_log combined env=!image
 an example, not as a recommendation.</p>
 </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
+<h2><a name="flag_end" id="flag_end">END</a></h2>
+<p>Using the [END] flag terminates not only the current round ot rewrite
+processing (like [L]) but also prevents any subsequent rewrite
+processing from occurring in per-directory (htaccess) context.</p>
+
+<p>This does not apply to new requests resulting from external
+redirects.</p>
+</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
 <h2><a name="flag_f" id="flag_f">F|forbidden</a></h2>
 <p>Using the [F] flag causes the server to return a 403 Forbidden status
 code to the client. While the same behavior can be accomplished using
index 14086ab03ec39d32c0e14478f6f49abf2f5fb819..c2d360cbfc65c3851902a21c19017a39a228cac3 100644 (file)
@@ -258,7 +258,7 @@ an example, not as a recommendation.</p>
 <section id="flag_end"><title>END</title>
 <p>Using the [END] flag terminates not only the current round ot rewrite
 processing (like [L]) but also prevents any subsequent rewrite
-processing from occurring in per-directory (htaccess) context.<p>
+processing from occurring in per-directory (htaccess) context.</p>
 
 <p>This does not apply to new requests resulting from external
 redirects.</p>