From 8df576dafd443cbef5287e566716bd5fb72ee6a0 Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Tue, 8 Nov 2011 21:56:02 +0000 Subject: [PATCH] Fix XML validation errors. Order matters. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1199479 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_lua.xml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/manual/mod/mod_lua.xml b/docs/manual/mod/mod_lua.xml index 01ebfe75b3..ae012d6e19 100644 --- a/docs/manual/mod/mod_lua.xml +++ b/docs/manual/mod/mod_lua.xml @@ -544,11 +544,11 @@ end LuaHookTranslateName Provide a hook for the translate name phase of request processing LuaHookTranslateName /path/to/lua/script.lua hook_function_name [early|late] -The optional third argument is supported in 2.3.15 and later server configvirtual host directory All +The optional third argument is supported in 2.3.15 and later

Add a hook (at APR_HOOK_MIDDLE) to the translate name phase of @@ -624,11 +624,11 @@ processing LuaHookCheckUserID Provide a hook for the check_user_id phase of request processing LuaHookCheckUserID /path/to/lua/script.lua hook_function_name [early|late] -The optional third argument is supported in 2.3.15 and later server configvirtual host directory.htaccess All +The optional third argument is supported in 2.3.15 and later

...

Ordering

The optional arguments "early" or "late" control when this script runs relative to other modules.

@@ -650,11 +650,11 @@ processing LuaHookAuthChecker Provide a hook for the auth_checker phase of request processing LuaHookAuthChecker /path/to/lua/script.lua hook_function_name [early|late] -The optional third argument is supported in 2.3.15 and later server configvirtual host directory.htaccess All +The optional third argument is supported in 2.3.15 and later

Invoke a lua function in the auth_checker phase of processing a request. This can be used to implement arbitrary authentication @@ -701,11 +701,11 @@ end LuaHookAccessChecker Provide a hook for the access_checker phase of request processing LuaHookAccessChecker /path/to/lua/script.lua hook_function_name [early|late] -The optional third argument is supported in 2.3.15 and later server configvirtual host directory.htaccess All +The optional third argument is supported in 2.3.15 and later

Add your hook to the access_checker phase. An access checker hook function usually returns OK, DECLINED, or HTTP_FORBIDDEN.

@@ -742,4 +742,3 @@ hook function usually returns OK, DECLINED, or HTTP_FORBIDDEN.

- -- 2.40.0