]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix validation errors
authorAndré Malo <nd@apache.org>
Fri, 26 Dec 2008 21:45:59 +0000 (21:45 +0000)
committerAndré Malo <nd@apache.org>
Fri, 26 Dec 2008 21:45:59 +0000 (21:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@729539 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lbmethod_bybusyness.xml
docs/manual/mod/mod_lbmethod_byrequests.xml
docs/manual/mod/mod_lbmethod_bytraffic.xml
docs/manual/mod/mod_rewrite.xml
docs/manual/rewrite/rewrite_flags.xml

index 6b8154e08ea2e87045b403d7b775e3fc5a5dd140..0b3b05a684c180193c275a614dfd4060a8a16b6b 100644 (file)
@@ -31,7 +31,7 @@
 <compatibility>Split off from <module>mod_proxy_balancer</module> in 2.3</compatibility>
 
 <summary>
-<!-- FIXME: --> This document is still under development.
+<!-- FIXME: --> <p>This document is still under development.</p>
 </summary>
 <seealso><module>mod_proxy</module></seealso>
 <seealso><module>mod_proxy_balancer</module></seealso>
index fd8b96515e9fa509fb0f42de3021b40b68210d82..28a91c24f69317bf0488cdfe4504db9384784036 100644 (file)
@@ -31,7 +31,7 @@
 <compatibility>Split off from <module>mod_proxy_balancer</module> in 2.3</compatibility>
 
 <summary>
-<!-- FIXME: --> This document is still under development.
+<!-- FIXME: --> <p>This document is still under development.</p>
 </summary>
 <seealso><module>mod_proxy</module></seealso>
 <seealso><module>mod_proxy_balancer</module></seealso>
index b76b61cad4e5be506426283da4f0c38f1b7b58cd..f64daf650ddf2335a8c74657b8007da28a03ec6e 100644 (file)
@@ -31,7 +31,7 @@
 <compatibility>Split off from <module>mod_proxy_balancer</module> in 2.3</compatibility>
 
 <summary>
-<!-- FIXME: --> This document is still under development.
+<!-- FIXME: --> <p>This document is still under development.</p>
 </summary>
 <seealso><module>mod_proxy</module></seealso>
 <seealso><module>mod_proxy_balancer</module></seealso>
index 525b5ed767b88261e4a13d02b95a4fdd0fdff633..3518fd5a9d43c5f081cc537a6957e04840e2101a 100644 (file)
@@ -1264,15 +1264,15 @@ cannot use <code>$N</code> in the substitution string!
         <dd><p>Apache has to unescape URLs before mapping them,
         so backreferences will be unescaped at the time they are applied.
         Using the B flag, non-alphanumeric characters in backreferences
-        will be escaped. For example, consider the rule:
+        will be escaped. For example, consider the rule:</p>
         <example>
         RewriteRule ^(/.*)$ /index.php?show=$1
         </example>
-        This will map <code>/C++</code> to <code>/index.php?show=/C++</code>.
-        But it will also map <code>/C%2b%2b</code> to
-        <code>/index.php?show=/C++</code>, because the <code>%2b</code>
-        has been unescaped.  With the B flag, it will instead map to
-        <code>/index.php?show=/C%2b%2b</code>.</p>
+        <p>This will map <code>/C++</code> to
+        <code>/index.php?show=/C++</code>. But it will also map
+        <code>/C%2b%2b</code> to <code>/index.php?show=/C++</code>, because
+        the <code>%2b</code> has been unescaped.  With the B flag, it will
+        instead map to <code>/index.php?show=/C%2b%2b</code>.</p>
         <p>This escaping is particularly necessary in a proxy situation,
         when the backend may break if presented with an unescaped URL.</p>
         </dd>
index 2648d5699993cbf229efe78390e8e737fb7bae99..53afe72470a0d8c454dc4eac79dee9db1fc052ec 100644 (file)
@@ -172,12 +172,11 @@ that does not contain the literal <code>.</code> character.
 <p>This can be also used to force the handler based on some conditions.
 For example, the following snippet used in per-server context allows
 <code>.php</code> files to be <em>displayed</em> by <code>mod_php</code>
-if they are requested with the <code>.phps</code> extension:
+if they are requested with the <code>.phps</code> extension:</p>
 
 <example>
 RewriteRule ^(/source/.+\.php)s$ $1 [H=application/x-httpd-php-source]
 </example>
-</p>
 
 <p>The regular expression above - <code>^(/source/.+\.php)s$</code> - will
 match any request that starts with <code>/source/</code> followed by 1 or