]> granicus.if.org Git - apache/commitdiff
Fix formatting, highlighting in examples.
authorRich Bowen <rbowen@apache.org>
Fri, 25 Mar 2016 15:39:27 +0000 (15:39 +0000)
committerRich Bowen <rbowen@apache.org>
Fri, 25 Mar 2016 15:39:27 +0000 (15:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1736594 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/core.html.en
docs/manual/mod/core.xml
docs/manual/mod/mod_headers.html.en
docs/manual/mod/mod_headers.xml

index 9bb153461df723645193ee846bab79719078c684..c2aec5ae2e37edd3e57d076c74e82e5a38612429 100644 (file)
@@ -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
index 51daffec0b77b9ef412cbb67c9e4eec1312b0627..cb04f722c3c2184d5444f552354f97116af78596 100644 (file)
@@ -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
index 704bb38d21166315eb08ec186a20c99d9827b121..d98752e15b61f608980a1b614d744f943d5ad8bc 100644 (file)
@@ -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>
 
index 6d2e951e0576a587da3ea3903055ed5bfb0090d4..99b38518d775d970dab1debbd92c81f96983ecff 100644 (file)
@@ -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>
-         # 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 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$#"
+        </highlight>   
         </dd>
     </dl>