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/07 22:27:40 UTC

svn commit: r1370499 - /httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml

Author: humbedooh
Date: Tue Aug  7 20:27:40 2012
New Revision: 1370499

URL: http://svn.apache.org/viewvc?rev=1370499&view=rev
Log:
fix grammar and remove some scopes within which some directives do not work

Modified:
    httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml

Modified: httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml?rev=1370499&r1=1370498&r2=1370499&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml (original)
+++ httpd/httpd/branches/2.4.x/docs/manual/mod/mod_lua.xml Tue Aug  7 20:27:40 2012
@@ -134,7 +134,7 @@ handlers (or hooks, or filters) in the s
 
 <p>Hook functions are how modules (and Lua scripts) participate in the
 processing of requests. Each type of hook exposed by the server exists for
-a specific purposes such as mapping requests to the filesystem,
+a specific purpose, such as mapping requests to the filesystem,
 performing access control, or setting mimetypes.  General purpose hooks
 that simply run at handy times in the request lifecycle exist as well.</p>
 
@@ -582,7 +582,6 @@ LuaCodeCache never
 <description>Provide a hook for the translate name phase of request processing</description>
 <syntax>LuaHookTranslateName  /path/to/lua/script.lua  hook_function_name [early|late]</syntax>
 <contextlist><context>server config</context><context>virtual host</context>
-<context>directory</context>
 </contextlist>
 <override>All</override>
 <compatibility>The optional third argument is supported in 2.3.15 and later</compatibility>
@@ -789,7 +788,6 @@ hook function usually returns OK, DECLIN
 <description>Provide a hook for the quick handler of request processing</description>
 <syntax>LuaQuickHandler /path/to/script.lua hook_function_name</syntax>
 <contextlist><context>server config</context><context>virtual host</context>
-<context>directory</context><context>.htaccess</context>
 </contextlist>
 <override>All</override>
 <usage><p>...</p>