Commit 5185c2fa authored by Rich Bowen's avatar Rich Bowen
Browse files

Fix formatting, highlighting in examples.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1736594 13f79535-47bb-0310-9956-ffa450edef68
parent 81b6111c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1314,12 +1314,12 @@ in case of an error</td></tr>
    whether the parameter is an URL, a path or a message is performed
    before any expression is parsed. Examples:</p>

    <pre class="prettyprint lang-config">ErrorDocument 500 http://foo.example.com/cgi-bin/tester
ErrorDocument 404 /cgi-bin/bad_urls.pl
    <pre class="prettyprint lang-config">ErrorDocument 500 http://example.com/cgi-bin/server-error.cgi
ErrorDocument 404 /errors/bad_urls.php
ErrorDocument 401 /subscription_info.html
ErrorDocument 403 "Sorry can't allow you access today"
ErrorDocument 403 "Sorry, can't allow you access today"
ErrorDocument 403 Forbidden!
ErrorDocument 403 /cgi-bin/forbidden.pl?referrer=%{escape:%{HTTP_REFERER}}</pre>
ErrorDocument 403 /errors/forbidden.py?referrer=%{escape:%{HTTP_REFERER}}</pre>


    <p>Additionally, the special value <code>default</code> can be used
+4 −4
Original line number Diff line number Diff line
@@ -1260,12 +1260,12 @@ in case of an error</description>
    before any expression is parsed. Examples:</p>

    <highlight language="config">
ErrorDocument 500 http://foo.example.com/cgi-bin/tester
ErrorDocument 404 /cgi-bin/bad_urls.pl
ErrorDocument 500 http://example.com/cgi-bin/server-error.cgi
ErrorDocument 404 /errors/bad_urls.php
ErrorDocument 401 /subscription_info.html
ErrorDocument 403 "Sorry can't allow you access today"
ErrorDocument 403 "Sorry, can't allow you access today"
ErrorDocument 403 Forbidden!
ErrorDocument 403 /cgi-bin/forbidden.pl?referrer=%{escape:%{HTTP_REFERER}}
ErrorDocument 403 /errors/forbidden.py?referrer=%{escape:%{HTTP_REFERER}}
    </highlight>

    <p>Additionally, the special value <code>default</code> can be used
+3 −4
Original line number Diff line number Diff line
@@ -426,10 +426,9 @@ available in 2.4.10 and later</td></tr>
    <dd>The directive is applied if and only if <var>expression</var>
        evaluates to true. Details of expression syntax and evaluation are
        documented in the <a href="../expr.html">ap_expr</a> documentation.
        <div class="example"><p><code>
         # 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$#"
        </code></p></div>   
        <pre class="prettyprint lang-config"># 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$#"</pre>
   
        </dd>
    </dl>

+4 −4
Original line number Diff line number Diff line
@@ -541,10 +541,10 @@ available in 2.4.10 and later</compatibility>
    <dd>The directive is applied if and only if <var>expression</var>
        evaluates to true. Details of expression syntax and evaluation are
        documented in the <a href="../expr.html">ap_expr</a> documentation.
        <example>
        <highlight language="config">
# 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$#"
        </example>   
        </highlight>   
        </dd>
    </dl>