summaryrefslogtreecommitdiff
path: root/docs/manual/developer/request.xml
diff options
context:
space:
mode:
authorDaniel Gruno <humbedooh@apache.org>2012-04-24 18:12:25 +0000
committerDaniel Gruno <humbedooh@apache.org>2012-04-24 18:12:25 +0000
commit61aa7600bf1aa74f1acd0364258c23ebefef5435 (patch)
tree6bf94105e88db7355662466301ddd49621c71c64 /docs/manual/developer/request.xml
parent667c0b26d857dc33a609127ac97d5d34fb7acede (diff)
downloadhttpd-61aa7600bf1aa74f1acd0364258c23ebefef5435.tar.gz
Changing to the new syntax highlighting WRT C source code
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1329909 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/developer/request.xml')
-rw-r--r--docs/manual/developer/request.xml5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/manual/developer/request.xml b/docs/manual/developer/request.xml
index b4bc67b0a8..e5731cee9d 100644
--- a/docs/manual/developer/request.xml
+++ b/docs/manual/developer/request.xml
@@ -148,7 +148,7 @@
<section id="security"><title>The Security Phase</title>
<p>Needs Documentation. Code is:</p>
- <example><pre>
+ <highlight language="c">
if ((access_status = ap_run_access_checker(r)) != 0) {
return decl_die(access_status, "check access", r);
}
@@ -160,8 +160,7 @@
if ((access_status = ap_run_auth_checker(r)) != 0) {
return decl_die(access_status, "check authorization", r);
}
- </pre>
- </example>
+ </highlight>
</section>
<section id="preparation"><title>The Preparation Phase</title>