]> granicus.if.org Git - apache/commitdiff
Remove reference to the 'server' value in LuaScope, since it doesn't exist.
authorDaniel Gruno <humbedooh@apache.org>
Tue, 24 Jul 2012 21:13:08 +0000 (21:13 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 24 Jul 2012 21:13:08 +0000 (21:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1365289 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.xml

index 265137697e940d1fa9b3a83382a9cc5100e70d3f..8df63983f96a7f3d35cb3ac8a8222edbf1589134 100644 (file)
@@ -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>