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/07/24 23:13:08 UTC

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

Author: humbedooh
Date: Tue Jul 24 21:13:08 2012
New Revision: 1365289

URL: http://svn.apache.org/viewvc?rev=1365289&view=rev
Log:
Remove reference to the 'server' value in LuaScope, since it doesn't exist.

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=1365289&r1=1365288&r2=1365289&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 Jul 24 21:13:08 2012
@@ -416,8 +416,8 @@ end
 
 <directivesynopsis>
 <name>LuaScope</name>
-<description>One of once, request, conn, server -- default is once</description>
-<syntax>LuaScope once|request|conn|server [max|min max]</syntax>
+<description>One of once, request, conn -- default is once</description>
+<syntax>LuaScope once|request|conn [max|min max]</syntax>
 <default>LuaScope once</default>
 <contextlist><context>server config</context><context>virtual host</context>
 <context>directory</context><context>.htaccess</context>
@@ -436,13 +436,14 @@ end
              request scoped.</dd>
 
     <dt>conn:</dt> <dd>Same as request but attached to the connection_rec</dd>
-
+<!-- not implemented
     <dt>server:</dt>  <dd>This one is different than others because the
             server scope is quite long lived, and multiple threads
             will have the same server_rec. To accommodate this
             server scoped interpreter are stored in an apr
             resource list. The min and max arguments are intended
             to specify the pool size, but are unused at this time.</dd>
+-->
    </dl>
 </usage>
 </directivesynopsis>