You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2016/09/23 04:24:34 UTC

svn commit: r1762012 - /httpd/httpd/trunk/docs/manual/expr.xml

Author: jailletc36
Date: Fri Sep 23 04:24:33 2016
New Revision: 1762012

URL: http://svn.apache.org/viewvc?rev=1762012&view=rev
Log:
Fix doc as spotted by Francois B in online doc

Modified:
    httpd/httpd/trunk/docs/manual/expr.xml

Modified: httpd/httpd/trunk/docs/manual/expr.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/expr.xml?rev=1762012&r1=1762011&r2=1762012&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/expr.xml (original)
+++ httpd/httpd/trunk/docs/manual/expr.xml Fri Sep 23 04:24:33 2016
@@ -594,12 +594,12 @@ listfunction ::= listfuncname "<strong>(
 
 <section id="examples">
 
-	<title>Example expressions</title>
+    <title>Example expressions</title>
     <p>The following examples show how expressions might be used to
     evaluate requests:</p>
 
-	<!-- This section should probably be extended with more, useful examples -->
-	<highlight language="config">
+    <!-- This section should probably be extended with more, useful examples -->
+    <highlight language="config">
 # Compare the host name to example.com and redirect to www.example.com if it matches
 &lt;If "%{HTTP_HOST} == 'example.com'"&gt;
     Redirect permanent "/" "http://www.example.com/"
@@ -650,9 +650,9 @@ listfunction ::= listfuncname "<strong>(
 Header set foo-checksum "expr=%{md5:foo}"
 
 # This delays the evaluation of the condition clause compared to &lt;If&gt;
-Header always set CustomHeader my-value "expr=%{REQUEST_URI} =~ m#^/special_path.php$#"
+Header always set CustomHeader my-value "expr=%{REQUEST_URI} =~ m#^/special_path\.php$#"
 
-	</highlight>
+    </highlight>
 </section>
 
 <section id="other">