]> granicus.if.org Git - apache/commitdiff
added pre_config, check_config, and test_config hooks
authorChris Darroch <chrisd@apache.org>
Wed, 11 Oct 2006 19:39:42 +0000 (19:39 +0000)
committerChris Darroch <chrisd@apache.org>
Wed, 11 Oct 2006 19:39:42 +0000 (19:39 +0000)
moved open_logs hook

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@462914 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/developer/modules.xml

index 8d5763fdc59163c6215c9180da080e39fe9a83f8..90352e75a1925195cd556254bd79b1a9dd65f52e 100644 (file)
@@ -200,6 +200,19 @@ module MODULE_VAR_EXPORT <var>module_name</var>_module =
       far...</p>
 
       <dl>
+        <dt><code>ap_hook_pre_config</code></dt>
+        <dd>do any setup required prior to processing configuration
+        directives</dd>
+
+        <dt><code>ap_hook_check_config</code></dt>
+        <dd>review configuration directive interdependencies</dd>
+
+        <dt><code>ap_hook_test_config</code></dt>
+        <dd>executes only with <code>-t</code> option</dd>
+
+        <dt><code>ap_hook_open_logs</code></dt>
+        <dd>open any specified logs</dd>
+
         <dt><code>ap_hook_post_config</code></dt>
         <dd>this is where the old <code>_init</code> routines get
         registered</dd>
@@ -207,9 +220,6 @@ module MODULE_VAR_EXPORT <var>module_name</var>_module =
         <dt><code>ap_hook_http_method</code></dt>
         <dd>retrieve the http method from a request. (legacy)</dd>
 
-        <dt><code>ap_hook_open_logs</code></dt>
-        <dd>open any specified logs</dd>
-
         <dt><code>ap_hook_auth_checker</code></dt>
         <dd>check if the resource requires authorization</dd>