From: Christophe Jaillet Date: Sun, 1 May 2016 06:26:47 +0000 (+0000) Subject: Synch with trunk (remove trailing spaces) X-Git-Tag: 2.4.21~212 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73f1f5bf2af05ded8b37f224177d52ab059bcb41;p=apache Synch with trunk (remove trailing spaces) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1741840 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/developer/hooks.xml b/docs/manual/developer/hooks.xml index 3f6651014f..0c01da572d 100644 --- a/docs/manual/developer/hooks.xml +++ b/docs/manual/developer/hooks.xml @@ -31,9 +31,9 @@ date.

-

In general, a hook function is one that the Apache HTTP Server - will call at some point during the processing of a request. - Modules can provide functions that are called, and specify when +

In general, a hook function is one that the Apache HTTP Server + will call at some point during the processing of a request. + Modules can provide functions that are called, and specify when they get called in comparison to other modules.

@@ -123,7 +123,7 @@ void ap_run_do_something(request_rec *r, int n)

The first hook that does not return DECLINED stops the loop and its return value is returned from the hook - caller. Note that DECLINED is the traditional + caller. Note that DECLINED is the traditional hook return value meaning "I didn't do anything", but it can be whatever suits you.

@@ -206,7 +206,7 @@ mode MODULE_VAR_EXPORT my_module = order relative to each other, but, of course, all modules using APR_HOOK_FIRST will be run before APR_HOOK_MIDDLE which are before APR_HOOK_LAST. Modules that don't care - when they are run should use APR_HOOK_MIDDLE. These + when they are run should use APR_HOOK_MIDDLE. These values are spaced out, so that positions like APR_HOOK_FIRST-2 are possible to hook slightly earlier than other functions.