Re: On future mod_wombat improvements

2008-05-21 Thread Maxime Petazzoni
Hi all, * Corsix [EMAIL PROTECTED] [2008-04-29 21:23:17]: My thoughts on possible improvements for mod_wombat are as follows: Sorry for the late reply. Thank you all for the suggestions on mod_wombat, they're all good ideas, but unfortunately we need to restrain to a small subset of them for

Re: On future mod_wombat improvements

2008-05-21 Thread Matthew M. Burke
Maxime Petazzoni wrote: Hi all, * Corsix [EMAIL PROTECTED] [2008-04-29 21:23:17]: My thoughts on possible improvements for mod_wombat are as follows: * Compile time option to exclude libapreq2 (and thus not export to Lua functions dependant upon it), in future leading to a built-in

Re: On future mod_wombat improvements

2008-05-21 Thread Joe Schaefer
--- Matthew M. Burke [EMAIL PROTECTED] wrote: Maxime Petazzoni wrote: Hi all, * Corsix [EMAIL PROTECTED] [2008-04-29 21:23:17]: My thoughts on possible improvements for mod_wombat are as follows: * Compile time option to exclude libapreq2 (and thus not export to Lua

Re: On future mod_wombat improvements

2008-05-21 Thread Philip M. Gollucci
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Joe Schaefer wrote: | I don't grok this desire either, save for the fact | that httpd doesn't yet distribute apreq2 itself. | Personally I'd rather see work go into supporting | file uploads via apreq2's bucket brigade api. Does | lua have a data

Re: On future mod_wombat improvements

2008-05-21 Thread Matthew M. Burke
Corsix wrote: I didn't have trouble building it on linux, however: 1) I cannot build it on windows; the first part of the win32 buil 2) The mod_wombat build process is reluctant to find libapreq2 unles These are both good to know! In my role as evil, horrible task-master/GSoC Mentor, I

Re: On future mod_wombat improvements

2008-05-21 Thread Corsix
Item 2 is 'documented' in the building from SVN instructions: (http://svn.apache.org/repos/asf/httpd/mod_wombat/trunk/docs/building-from-subversion.txt) If compiling (make) reports an error that it cannot find the libapreq2 header file, please tell me ( [EMAIL PROTECTED] ) as this

Re: On future mod_wombat improvements

2008-05-21 Thread Akins, Brian
FWIW, we already use apreq for other stuff anyway. Also, it does a lot of useful stuff that can be exposed via mod_wombat One of my top things I want is a way to generically register and call some lua code that takes advantage of resource pools, caching, etc. No offense to Brian M, but I found

Re: On future mod_wombat improvements

2008-05-21 Thread Joe Schaefer
--- Corsix [EMAIL PROTECTED] wrote: Item 2 is 'documented' in the building from SVN instructions: (http://svn.apache.org/repos/asf/httpd/mod_wombat/trunk/docs/building-from-subversion.txt) If compiling (make) reports an error that it cannot find the libapreq2 header file, please

Re: On future mod_wombat improvements

2008-05-21 Thread Matthew M. Burke
Akins, Brian wrote: There is an early version of my efforts floating around - mod_lua_request. (I can repost it, as well). I'd be interested in seeing it. Matt

Re: On future mod_wombat improvements

2008-05-21 Thread Akins, Brian
On 5/21/08 12:43 PM, Matthew M. Burke [EMAIL PROTECTED] wrote: Akins, Brian wrote: There is an early version of my efforts floating around - mod_lua_request. (I can repost it, as well). I'd be interested in seeing it. Matt Remember, this is old and simple... -- Brian Akins Chief

Re: On future mod_wombat improvements

2008-05-21 Thread Matthew M. Burke
Akins, Brian wrote: Remember, this is old and simple... That's ok---so am I. Matt

Re: On future mod_wombat improvements

2008-05-04 Thread Corsix
One new bit of apr glue to complement apr_table.get and apr_table.set : apr_table.foreach Index: apr_lua.c === --- apr_lua.c (revision 653202) +++ apr_lua.c (working copy) @@ -46,9 +46,30 @@ return 1; } +static

Re: On future mod_wombat improvements

2008-04-30 Thread Akins, Brian
On 4/29/08 3:52 PM, Maxime Petazzoni [EMAIL PROTECTED] wrote: So, feel free to jump in and write down some ideas! Some short term ideas: -Interface/API to allow other modules to run Lua code: wombat_init(/some/lua/file), wombat_run(some_lua handle) or something similar. Mod_wombat

Re: On future mod_wombat improvements

2008-04-29 Thread Corsix
Hey Maxime, My thoughts on possible improvements for mod_wombat are as follows: * Lua bindings for relevant portions of the Apache Portable Runtime; the io, lfs (LuaFileSystem) and luasocket libraries look like they could be nicely done through APR functions * Better win32/VisualC++ support *