diff options
author | André Malo <nd@apache.org> | 2008-12-26 22:45:59 +0100 |
---|---|---|
committer | André Malo <nd@apache.org> | 2008-12-26 22:45:59 +0100 |
commit | 80f5bdd29e6207d4d46ba35d869d93fe49379578 (patch) | |
tree | d76b80b3803384c7ede902d945947ce2fdbf0ae3 /docs | |
parent | add mod_proxy_scgi, as announced a long time ago (diff) | |
download | apache2-80f5bdd29e6207d4d46ba35d869d93fe49379578.tar.xz apache2-80f5bdd29e6207d4d46ba35d869d93fe49379578.zip |
fix validation errors
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@729539 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/mod/mod_lbmethod_bybusyness.xml | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_lbmethod_byrequests.xml | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_lbmethod_bytraffic.xml | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_rewrite.xml | 12 | ||||
-rw-r--r-- | docs/manual/rewrite/rewrite_flags.xml | 3 |
5 files changed, 10 insertions, 11 deletions
diff --git a/docs/manual/mod/mod_lbmethod_bybusyness.xml b/docs/manual/mod/mod_lbmethod_bybusyness.xml index 6b8154e08e..0b3b05a684 100644 --- a/docs/manual/mod/mod_lbmethod_bybusyness.xml +++ b/docs/manual/mod/mod_lbmethod_bybusyness.xml @@ -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> diff --git a/docs/manual/mod/mod_lbmethod_byrequests.xml b/docs/manual/mod/mod_lbmethod_byrequests.xml index fd8b96515e..28a91c24f6 100644 --- a/docs/manual/mod/mod_lbmethod_byrequests.xml +++ b/docs/manual/mod/mod_lbmethod_byrequests.xml @@ -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> diff --git a/docs/manual/mod/mod_lbmethod_bytraffic.xml b/docs/manual/mod/mod_lbmethod_bytraffic.xml index b76b61cad4..f64daf650d 100644 --- a/docs/manual/mod/mod_lbmethod_bytraffic.xml +++ b/docs/manual/mod/mod_lbmethod_bytraffic.xml @@ -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> diff --git a/docs/manual/mod/mod_rewrite.xml b/docs/manual/mod/mod_rewrite.xml index 525b5ed767..3518fd5a9d 100644 --- a/docs/manual/mod/mod_rewrite.xml +++ b/docs/manual/mod/mod_rewrite.xml @@ -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> diff --git a/docs/manual/rewrite/rewrite_flags.xml b/docs/manual/rewrite/rewrite_flags.xml index 2648d56999..53afe72470 100644 --- a/docs/manual/rewrite/rewrite_flags.xml +++ b/docs/manual/rewrite/rewrite_flags.xml @@ -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 |