You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2016/03/03 02:15:38 UTC

svn commit: r1733404 - /httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en

Author: rbowen
Date: Thu Mar  3 01:15:38 2016
New Revision: 1733404

URL: http://svn.apache.org/viewvc?rev=1733404&view=rev
Log:
rebuild

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

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=1733404&r1=1733403&r2=1733404&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewritemap.html.en Thu Mar  3 01:15:38 2016
@@ -374,12 +374,12 @@ RewriteRule "-" "${d2u:%{REQUEST_URI}}"<
 
 
     <p><strong>dash2under.pl</strong></p>
-    <pre class="prettyprint lang-perl">    #!/usr/bin/perl
-    $| = 1; # Turn off I/O buffering
-    while (&lt;STDIN&gt;) {
-        s/-/_/g; # Replace dashes with underscores
-        print $_;
-    }</pre>
+    <pre class="prettyprint lang-perl">#!/usr/bin/perl
+$| = 1; # Turn off I/O buffering
+while (&lt;STDIN&gt;) {
+    s/-/_/g; # Replace dashes with underscores
+    print $_;
+}</pre>
 
 
 <div class="note"><h3>Caution!</h3>