You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by hu...@apache.org on 2012/08/06 12:14:38 UTC

svn commit: r1369769 - /httpd/httpd/trunk/docs/manual/mod/mod_lua.xml

Author: humbedooh
Date: Mon Aug  6 10:14:38 2012
New Revision: 1369769

URL: http://svn.apache.org/viewvc?rev=1369769&view=rev
Log:
LuaAuthzProvider also gets passed the args from the Require directive.

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=1369769&r1=1369768&r2=1369769&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/mod/mod_lua.xml (original)
+++ httpd/httpd/trunk/docs/manual/mod/mod_lua.xml Mon Aug  6 10:14:38 2012
@@ -268,7 +268,9 @@ performing access control, or setting mi
 
 </table>
 
-<p>Hook functions are passed the request object as their only argument.
+<p>Hook functions are passed the request object as their only argument 
+(except for LuaAuthzProvider, which also gets passed the arguments from 
+the Require directive).
 They can return any value, depending on the hook, but most commonly
 they'll return OK, DONE, or DECLINED, which you can write in lua as
 <code>apache2.OK</code>, <code>apache2.DONE</code>, or