]> 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:12:39 +0000 (21:12 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 24 Jul 2012 21:12:39 +0000 (21:12 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1365288 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_lua.xml

index c165924fc6a4d4afc38423af327bd264fd8d2eb0..8e139546a598ce1153e239a4bd8709b63926d612 100644 (file)
@@ -489,8 +489,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>
@@ -509,13 +509,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>