You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2008/12/26 22:46:00 UTC

svn commit: r729539 - in /httpd/httpd/trunk/docs/manual: mod/mod_lbmethod_bybusyness.xml mod/mod_lbmethod_byrequests.xml mod/mod_lbmethod_bytraffic.xml mod/mod_rewrite.xml rewrite/rewrite_flags.xml

Author: nd
Date: Fri Dec 26 13:45:59 2008
New Revision: 729539

URL: http://svn.apache.org/viewvc?rev=729539&view=rev
Log:
fix validation errors

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bybusyness.xml
    httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml
    httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bytraffic.xml
    httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml
    httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.xml

Modified: httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bybusyness.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bybusyness.xml?rev=729539&r1=729538&r2=729539&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bybusyness.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bybusyness.xml Fri Dec 26 13:45:59 2008
@@ -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>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml?rev=729539&r1=729538&r2=729539&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_byrequests.xml Fri Dec 26 13:45:59 2008
@@ -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>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bytraffic.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bytraffic.xml?rev=729539&r1=729538&r2=729539&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bytraffic.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lbmethod_bytraffic.xml Fri Dec 26 13:45:59 2008
@@ -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>

Modified: httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml?rev=729539&r1=729538&r2=729539&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_rewrite.xml Fri Dec 26 13:45:59 2008
@@ -1264,15 +1264,15 @@
         <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>

Modified: httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.xml?rev=729539&r1=729538&r2=729539&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.xml Fri Dec 26 13:45:59 2008
@@ -172,12 +172,11 @@
 <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