summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDaniel Gruno <humbedooh@apache.org>2012-04-27 09:13:21 +0200
committerDaniel Gruno <humbedooh@apache.org>2012-04-27 09:13:21 +0200
commit8fc73d308f1a8b3e5016a3bdf79a00ac1f14e84d (patch)
tree48fda85da23897e484fd36d4692679c2301d182a /docs
parentadd PR reference (diff)
downloadapache2-8fc73d308f1a8b3e5016a3bdf79a00ac1f14e84d.tar.xz
apache2-8fc73d308f1a8b3e5016a3bdf79a00ac1f14e84d.zip
Update syntax for expr.xml
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1331257 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs')
-rw-r--r--docs/manual/expr.html.en37
-rw-r--r--docs/manual/expr.xml36
2 files changed, 33 insertions, 40 deletions
diff --git a/docs/manual/expr.html.en b/docs/manual/expr.html.en
index 227b1332d6..b8592ac65f 100644
--- a/docs/manual/expr.html.en
+++ b/docs/manual/expr.html.en
@@ -449,26 +449,23 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>"
<p>The following examples show how expressions might be used to evaluate requests:</p>
- <div class="example"><p><code>
- # Compare the host name to example.com and redirect to www.example.com if it matches<br />
- &lt;If "%{HTTP_HOST} == 'example.com'"&gt;<br />
- <span class="indent">
- Redirect permanent / http://www.example.com<br />
- </span>
- &lt;/If&gt;<br /><br />
- # Force text/plain if requesting a file with the query string contains 'forcetext'<br />
- &lt;If "%{QUERY_STRING} =~ /forcetext/"&gt;<br />
- <span class="indent">
- ForceType text/plain<br />
- </span>
- &lt;/If&gt;<br /><br />
- # Only allow access to this content during business hours<br />
- &lt;Directory "/foo/bar/business"&gt;<br />
- <span class="indent">
- Require expr %{TIME_HOUR} &gt;= 9 &amp;&amp; %{TIME_HOUR} &lt;= 17 <br />
- </span>
- &lt;/Directory&gt;
- </code></p></div>
+ <pre class="prettyprint lang-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
+&lt;/If&gt;
+
+# Force text/plain if requesting a file with the query string contains 'forcetext'
+&lt;If "%{QUERY_STRING} =~ /forcetext/"&gt;
+ ForceType text/plain
+&lt;/If&gt;
+
+# Only allow access to this content during business hours
+&lt;Directory "/foo/bar/business"&gt;
+ Require expr %{TIME_HOUR} &gt;= 9 &amp;&amp; %{TIME_HOUR} &lt;= 17
+&lt;/Directory&gt;
+ </pre>
+
</div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
<div class="section">
<h2><a name="other" id="other">Other</a></h2>
diff --git a/docs/manual/expr.xml b/docs/manual/expr.xml
index 015e5942a8..be482e96c3 100644
--- a/docs/manual/expr.xml
+++ b/docs/manual/expr.xml
@@ -476,26 +476,22 @@ listfunction ::= listfuncname "<strong>(</strong>" word "<strong>)</strong>"
<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 -->
- <example>
- # Compare the host name to example.com and redirect to www.example.com if it matches<br />
- &lt;If "%{HTTP_HOST} == 'example.com'"&gt;<br />
- <indent>
- Redirect permanent / http://www.example.com<br />
- </indent>
- &lt;/If&gt;<br /><br />
- # Force text/plain if requesting a file with the query string contains 'forcetext'<br />
- &lt;If "%{QUERY_STRING} =~ /forcetext/"&gt;<br />
- <indent>
- ForceType text/plain<br />
- </indent>
- &lt;/If&gt;<br /><br />
- # Only allow access to this content during business hours<br />
- &lt;Directory "/foo/bar/business"&gt;<br />
- <indent>
- Require expr %{TIME_HOUR} &gt;= 9 &amp;&amp; %{TIME_HOUR} &lt;= 17 <br />
- </indent>
- &lt;/Directory&gt;
- </example>
+ <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
+&lt;/If&gt;
+
+# Force text/plain if requesting a file with the query string contains 'forcetext'
+&lt;If "%{QUERY_STRING} =~ /forcetext/"&gt;
+ ForceType text/plain
+&lt;/If&gt;
+
+# Only allow access to this content during business hours
+&lt;Directory "/foo/bar/business"&gt;
+ Require expr %{TIME_HOUR} &gt;= 9 &amp;&amp; %{TIME_HOUR} &lt;= 17
+&lt;/Directory&gt;
+ </highlight>
</section>
<section id="other">