diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-04-27 09:13:21 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-04-27 09:13:21 +0200 |
commit | 8fc73d308f1a8b3e5016a3bdf79a00ac1f14e84d (patch) | |
tree | 48fda85da23897e484fd36d4692679c2301d182a /docs | |
parent | add PR reference (diff) | |
download | apache2-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.en | 37 | ||||
-rw-r--r-- | docs/manual/expr.xml | 36 |
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 /> - <If "%{HTTP_HOST} == 'example.com'"><br /> - <span class="indent"> - Redirect permanent / http://www.example.com<br /> - </span> - </If><br /><br /> - # Force text/plain if requesting a file with the query string contains 'forcetext'<br /> - <If "%{QUERY_STRING} =~ /forcetext/"><br /> - <span class="indent"> - ForceType text/plain<br /> - </span> - </If><br /><br /> - # Only allow access to this content during business hours<br /> - <Directory "/foo/bar/business"><br /> - <span class="indent"> - Require expr %{TIME_HOUR} >= 9 && %{TIME_HOUR} <= 17 <br /> - </span> - </Directory> - </code></p></div> + <pre class="prettyprint lang-config"> +# Compare the host name to example.com and redirect to www.example.com if it matches +<If "%{HTTP_HOST} == 'example.com'"> + Redirect permanent / http://www.example.com +</If> + +# Force text/plain if requesting a file with the query string contains 'forcetext' +<If "%{QUERY_STRING} =~ /forcetext/"> + ForceType text/plain +</If> + +# Only allow access to this content during business hours +<Directory "/foo/bar/business"> + Require expr %{TIME_HOUR} >= 9 && %{TIME_HOUR} <= 17 +</Directory> + </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 /> - <If "%{HTTP_HOST} == 'example.com'"><br /> - <indent> - Redirect permanent / http://www.example.com<br /> - </indent> - </If><br /><br /> - # Force text/plain if requesting a file with the query string contains 'forcetext'<br /> - <If "%{QUERY_STRING} =~ /forcetext/"><br /> - <indent> - ForceType text/plain<br /> - </indent> - </If><br /><br /> - # Only allow access to this content during business hours<br /> - <Directory "/foo/bar/business"><br /> - <indent> - Require expr %{TIME_HOUR} >= 9 && %{TIME_HOUR} <= 17 <br /> - </indent> - </Directory> - </example> + <highlight language="config"> +# Compare the host name to example.com and redirect to www.example.com if it matches +<If "%{HTTP_HOST} == 'example.com'"> + Redirect permanent / http://www.example.com +</If> + +# Force text/plain if requesting a file with the query string contains 'forcetext' +<If "%{QUERY_STRING} =~ /forcetext/"> + ForceType text/plain +</If> + +# Only allow access to this content during business hours +<Directory "/foo/bar/business"> + Require expr %{TIME_HOUR} >= 9 && %{TIME_HOUR} <= 17 +</Directory> + </highlight> </section> <section id="other"> |