1
I Use This!
Inactive

News

Analyzed about 7 hours ago. based on code collected about 7 hours ago.
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.44 released. _mod_pLua is an Apache HTTP Server 2.x module for developing web applications with Lua._ http://sf.net/p/modplua ####Changes in 0.44: * Added support for mod_dbd (you can enable/disable it in mod_plua.h) * General ... [More] code cleanup * Fixed a bug where dbclose and the database gc would clean up differently * Fixed a bad include in mod_plua.h that was halting compilations on some systems Binary packages for Lua 5.2 are now also available for Linux and Apache 2.2 [Less]
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.43 released. _mod_pLua is an Apache HTTP Server 2.x module for developing web applications with Lua._ http://sf.net/p/modplua ####Changes in 0.43: * Switched to the APXS system for compiling and installing mod_pLua - many thanks ... [More] to Igor Galic for his help on this. * Cleaned up some code * setting header("Location", ...) will no longer trigger an automatic 302 response by httpd. Use httpError() or setReturnCode() for this. The move to the APXS system should ease the troubles of compiling and installing mod_pLua on your system. If you use Ubuntu or Debian, remember to change "apxs" to "apxs2" in the makefile, or make a symbolic link. [Less]
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.42 released. _mod_pLua is an Apache HTTP Server 2.x module for developing web applications with Lua._ http://sf.net/p/modplua ####Changes in 0.42: * Removed thread checks where they were not needed in Lua C function calls * ... [More] Reinstated pushing the lua thread onto the registry when acquiring the state to avoid having to resort to the backup list * Added the Lua function httpError(N) for calling the internal Apache error handler with return code N * setReturnCode now only sets the return code, it does not call the Apache error handler The new distinction between httpError(N) and setReturnCode(N) is intended for user-specific server replies for special events such as setting up a WWW-Authentication with browsers, as shown in the [mod_pLua examples] [Less]
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.41 released. _modpLua is an Apache2 module for displaying preprocessed Lua with a PHP-like syntax._ http://sf.net/p/modplua ####Changes in 0.41: * Added a backup state list for ensuring that external modules won't break the retrieval of handles Thanks again to _haste_ in #lua on Freenode for making this observation.
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.40 released. _modpLua is an Apache2 module for displaying preprocessed Lua with a PHP-like syntax._ http://sf.net/p/modplua ####Changes in 0.40: * Changed some default directive values * header() will now accept numbers as its ... [More] second argument * Any shebang (#!) encountered on line 1 of raw lua files will now be ignored A big thanks to _haste_ from #lua on Freenode for suggesting these changes. [Less]
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.39 released. _modpLua is an Apache2 module for displaying preprocessed Lua with a PHP-like syntax._ http://sf.net/p/modplua ####Changes in 0.39: * Releasing a Lua state no longer requires a mutex lock * Garbage collection is now ... [More] done less frequently, to boost performance * Various small performance tweaks * getPWD() now returns "." on failure instead of just 0 * In the event of a Lua panic, errors will be copied to stderr as well * The script cache handler will now consider file size as well as time of modification to determine if an update is required [Less]
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.38 released. _modpLua is an Apache2 module for displaying preprocessed Lua with a PHP-like syntax._ http://sf.net/p/modplua ####Changes in 0.38: * The thread struct for each Lua state is now referenced at initialization instead ... [More] of at execution time * The sleep() function will no longer allow scripts to sleep for longer than pLuaTimeout specifies (if set) * The rudimentary compiler (compile.sh) should now be able to link against any Lua library available [Less]
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.37 released. _modpLua is an Apache2 module for displaying preprocessed Lua with a PHP-like syntax._ http://sf.net/p/modplua ####Changes in 0.37: * Added a header file for managing structs, defs and prototypes. * Added the exit() ... [More] Lua function for halting a script quietly. See the [Wiki](https://sourceforge.net/p/modplua/wiki/New%20functions%20in%20pLua/) for more details. [Less]
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.36 released. _modpLua is an Apache2 module for displaying preprocessed Lua with a PHP-like syntax._ http://sf.net/p/modplua ####Changes in 0.36: * Re-enabled the global pool mutex that was shut off for debugging purposes * 404 ... [More] errors now use apache's 404 handler instead * Changed the hooking procedure, so directives will be caught and used before the first pool is created [Less]
Posted almost 14 years ago by Daniel Gruno
###mod_pLua 0.35 released. _modpLua is an Apache2 module for displaying preprocessed Lua with a PHP-like syntax._ http://sf.net/p/modplua ####Changes in 0.35: * Databases opened with dbopen() should now properly close if GC'ed in Lua 5.2 * ... [More] The GC call for databases now has its own function for cleaning up, as opposed to using db:close() * Changed the maximum number of variables and chained variables allowed in a GET/POST request * Fixed a bug that would crash mod_pLua on Apache 2.4 when a compiler or runtime error was met [Less]