Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 372D49EFE for ; Tue, 8 Nov 2011 21:56:27 +0000 (UTC) Received: (qmail 36975 invoked by uid 500); 8 Nov 2011 21:56:27 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 36914 invoked by uid 500); 8 Nov 2011 21:56:27 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 36907 invoked by uid 99); 8 Nov 2011 21:56:27 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Nov 2011 21:56:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Nov 2011 21:56:24 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 042B6238889B; Tue, 8 Nov 2011 21:56:03 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1199479 - /httpd/httpd/trunk/docs/manual/mod/mod_lua.xml Date: Tue, 08 Nov 2011 21:56:02 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111108215603.042B6238889B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rjung Date: Tue Nov 8 21:56:02 2011 New Revision: 1199479 URL: http://svn.apache.org/viewvc?rev=1199479&view=rev Log: Fix XML validation errors. Order matters. Modified: httpd/httpd/trunk/docs/manual/mod/mod_lua.xml Modified: httpd/httpd/trunk/docs/manual/mod/mod_lua.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/mod/mod_lua.xml?rev=1199479&r1=1199478&r2=1199479&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/mod/mod_lua.xml (original) +++ httpd/httpd/trunk/docs/manual/mod/mod_lua.xml Tue Nov 8 21:56:02 2011 @@ -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, DECLIN -