]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Change references from mod_wombat to mod_lua.
authorDaniel Earl Poirier <poirier@apache.org>
Fri, 30 Apr 2010 15:05:07 +0000 (15:05 +0000)
committerDaniel Earl Poirier <poirier@apache.org>
Fri, 30 Apr 2010 15:05:07 +0000 (15:05 +0000)
Remove references to no-longer-needed pre-req, mod_apreq2.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@939703 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/README
modules/lua/docs/basic-configuration.txt
modules/lua/docs/running-developer-tests.txt
modules/lua/docs/writing-handlers.txt
modules/lua/test/test_httpd.conf

index 855a243e89fbf52808dfeed299052e8bf5d09a01..f5fcc3d5324987a8f913c55be3259f6bf9e83dab 100644 (file)
@@ -1,9 +1,7 @@
 -*- mode:org -*-
 * Requirements:
 ** lua 5.1 ( http://www.lua.org/ )
-** libapreq2 ( http://httpd.apache.org/apreq/download.cgi )
-   This is no longer a requirement, actually
-** Apache HTTPD 2.2 ( http://httpd.apache.org/ )
+** Apache HTTPD 2.2 ( http://httpd.apache.org/ ) or Apache HTTPD 2.3
 
 * Documentation
   See docs/README
@@ -64,7 +62,7 @@
   See NOTICE file for more information
         
 * Problems and Patches:
-  Please use dev@httpd.apache.org for discussing mod_wombat development
+  Please use dev@httpd.apache.org for discussing mod_lua development
   To subscribe send email to dev-subscribe@httpd.apache.org  
   Note that this is for development discussion, not user support :-)
    
index 5e6a6d31a0532edaddc92847f788fd7ac36cb2ed..c20983349fbe5eeb2f11ca17cf1d4eb8ae9a74d7 100644 (file)
@@ -1,19 +1,17 @@
 See sample_httpd.conf for examples
 
 The basic module loading directive is
-    LoadModule apreq_module modules/mod_apreq2.so
-    LoadModule wombat_module modules/mod_wombat.so
-I included the apreq_module in the example as you need it to :-)
+    LoadModule lua_module modules/mod_lua.so
 
 The handler name is "lua-script" so you can use the normal
 AddHandler directive, such as "AddHandler lua-script .lua" to
-set anything ending in .lua to use mod_wombat to evaluate
+set anything ending in .lua to use mod_lua to evaluate
 
-mod_wombat exports several additional directives:
+mod_lua exports several additional directives:
 
     LuaRoot /path/to/a/directory
         Specify the base path which will be used to evaluate all
-        relative paths within mod_wombat. If not specified they
+        relative paths within mod_lua. If not specified they
         will be resolved relative to the current working directory,
         which may not always work well for a server.
 
index e40bf986232b09058fe57ae164c313515205caaf..59eb990fc2d3405b9b92fe1977f900ebfaaa9005 100644 (file)
@@ -1,6 +1,6 @@
 -*- mode:org -*-
-* Building mod_wombat
-  The first step is to build mod_wombat per the instructions in
+* Building mod_lua
+  The first step is to build mod_lua per the instructions in
   building-from-subversion.txt.
 
 * Build and install LuaSocket
index 10cfb5d890ab41694e942340ce11cf453cca1ca3..2f18c4149e4b657c280a0b64905e7ae1a194ae88 100644 (file)
@@ -1,4 +1,4 @@
-mod_wombat always looks to invoke a function for the handler, rather than
+mod_lua always looks to invoke a function for the handler, rather than
 just evaluating a script body CGI style. A handler function looks
 something like this:
 
index 7b236ed50c90cd1919165a6753e971a1ffe5b482..27e3a506c9742e1f92d82134e8cac37278f7f309 100755 (executable)
@@ -7,8 +7,7 @@ LuaRoot /Users/brianm/src/wombat/test
 
 Listen 8000
 
-LoadModule apreq_module modules/mod_apreq2.so
-LoadModule wombat_module modules/mod_wombat.so
+LoadModule lua_module modules/mod_lua.so
 
 AddHandler lua-script .lua