You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by no...@apache.org on 2008/09/17 16:19:45 UTC

svn commit: r696313 - in /httpd/httpd/trunk/docs/manual/rewrite: rewrite_flags.html.en rewrite_flags.xml

Author: noodl
Date: Wed Sep 17 07:19:43 2008
New Revision: 696313

URL: http://svn.apache.org/viewvc?rev=696313&view=rev
Log:
PR45806 Fixed break tags. Submitted by poirier pobox.com

Modified:
    httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.html.en
    httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.xml

Modified: httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.html.en?rev=696313&r1=696312&r2=696313&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.html.en (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.html.en Wed Sep 17 07:19:43 2008
@@ -367,10 +367,10 @@
 doesn't correspond with an actual file.</p>
 
 <div class="example"><p><code>
-# Is the request for a non-existent file?
+# Is the request for a non-existent file?<br />
 RewriteCond %{REQUEST_FILENAME} !-f<br />
 RewriteCond %{REQUEST_FILENAME} !-d<br />
-# If so, skip these two RewriteRules
+# If so, skip these two RewriteRules<br />
 RewriteRule .? - [S=2]<br />
 <br />
 RewriteRule (.*\.gif) images.php?$1<br />
@@ -393,7 +393,7 @@
 source code as plain text, if requested in a particular way:</p>
 
 <div class="example"><p><code>
-# Serve .pl files as plain text
+# Serve .pl files as plain text<br />
 RewriteRule \.pl$ - [T=text/plain]
 </code></p></div>
 

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=696313&r1=696312&r2=696313&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.xml (original)
+++ httpd/httpd/trunk/docs/manual/rewrite/rewrite_flags.xml Wed Sep 17 07:19:43 2008
@@ -384,10 +384,10 @@
 doesn't correspond with an actual file.</p>
 
 <example>
-# Is the request for a non-existent file?
+# Is the request for a non-existent file?<br />
 RewriteCond %{REQUEST_FILENAME} !-f<br />
 RewriteCond %{REQUEST_FILENAME} !-d<br />
-# If so, skip these two RewriteRules
+# If so, skip these two RewriteRules<br />
 RewriteRule .? - [S=2]<br />
 <br />
 RewriteRule (.*\.gif) images.php?$1<br />
@@ -412,7 +412,7 @@
 source code as plain text, if requested in a particular way:</p>
 
 <example>
-# Serve .pl files as plain text
+# Serve .pl files as plain text<br />
 RewriteRule \.pl$ - [T=text/plain]
 </example>