You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2012/02/02 22:52:12 UTC

svn commit: r1239873 - in /httpd/httpd/trunk/docs/manual: mod/mod_rewrite.html.en rewrite/rewritemap.html.en

Author: covener
Date: Thu Feb  2 21:52:12 2012
New Revision: 1239873

URL: http://svn.apache.org/viewvc?rev=1239873&view=rev
Log:
xforms

Modified:
    httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en
    httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en

Modified: httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en?rev=1239873&r1=1239872&r2=1239873&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_rewrite.html.en Thu Feb  2 21:52:12 2012
@@ -804,9 +804,9 @@ Apache HTTP Server 2.0.41 and later</td>
         utility.  (<a href="../rewrite/rewritemap.html#dbm">Details ...</a>)</dd>
 
     <dt>int</dt>
-        <dd>One of the five available internal functions provided by
-        <code>RewriteMap</code>: toupper, tolower, escape, unescape, or sleep. 
-        (<a href="../rewrite/rewritemap.html#int">Details ...</a>)</dd>
+        <dd>One of the four available internal functions provided by
+        <code>RewriteMap</code>: toupper, tolower, escape or
+        unescape. (<a href="../rewrite/rewritemap.html#int">Details ...</a>)</dd>
 
     <dt>prg</dt>
         <dd>Calls an external program or script to process the
@@ -1033,9 +1033,7 @@ cannot use <code>$N</code> in the substi
         <dd>A dash indicates that no substitution should be performed
         (the existing path is passed through untouched). This is used
         when a flag (see below) needs to be applied without changing
-        the path.  In Apache HTTP Server 2.5.0 and later, a substitution
-        that ultimately expands to this single character is also treated as
-        "no substitution".</dd>
+        the path.</dd>
 
       </dl>
 

Modified: httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en?rev=1239873&r1=1239872&r2=1239873&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en Thu Feb  2 21:52:12 2012
@@ -316,11 +316,6 @@ by many requests.
       <li><strong>unescape</strong>:<br />
              Translates hex-encodings in the key back to
             special characters.</li>
-      <li><strong>sleep</strong>:<br />
-             Causes the request to sleep for the amount of time specified in
-            the key, in milliseconds.  Keys are accepted in the form of 
-            "2000", "2000ms", or "2s".  This map always returns an empty value.
-            <p> Available since Apache HTTP Server 2.5.0</p> </li>
     </ul>
 
     <p>
@@ -332,12 +327,6 @@ by many requests.
     RewriteMap lc int:tolower<br />
     RewriteRule (.*?[A-Z]+.*) ${lc:$1} [R]
     </code></p></div>
-    
-    <div class="example"><h3>Delay a request by one half of a second</h3><p><code>
-    RewriteMap sleep int:sleep<br />
-    RewriteRule ^/foo/bar.html -${sleep:"500ms"} 
-    </code></p></div>
-
 
     <div class="note">
     <p>Please note that the example offered here is for