]> granicus.if.org Git - apache/history - modules/lua/mod_lua.c
Fix spelling in comments and text files.
[apache] / modules / lua / mod_lua.c
2016-08-11 Rainer JungFix spelling in comments and text files.
2016-04-08 Joe Orton* modules/lua/mod_lua.c (lua_post_config): Use anonymou...
2016-01-19 Rainer JungAdded many log numbers to log statements that
2016-01-19 Rainer JungAdded many log numbers to log statements that
2015-03-24 Jan Kaluža* mod_lua: fix compilation with lua-5.3
2014-11-30 Eric Covener *) SECURITY: CVE-2014-8109 (cve.mitre.org)
2014-07-20 Christophe JailletAdd missing APLOGNO.
2014-06-30 Ben Resermod_lua: Remove dead code left over from the old code...
2014-06-22 Jeff TrawickFollow up to r1604336: Comment out hooks whose only...
2014-06-21 Daniel GrunoRevert early|late argument for LuaHookCheckUserID as...
2014-03-27 Daniel Grunomod_lua: Reformat and escape script error output.
2014-03-18 Daniel Grunomod_lua: be a bit more verbose in error logging.
2014-03-12 Daniel Grunomod_lua: Add a fixups hook that checks if the original...
2013-12-15 Christophe Jaillet'ap_getword_conf' can not return NULL
2013-09-27 Eric Covenerr1526906 followup:
2013-09-27 Daniel Grunomod_lua: Use a (new) global pool/mutex setup for IVM...
2013-09-02 Eric Covenermod_lua: If the first yield() of a LuaOutputFilter...
2013-09-02 Eric Covenermod_lua: Remove ETAG, Content-Length, and Content-MD5...
2013-09-02 Eric Covenerregister LuaOutputFilters with AP_FILTER_PROTO_CHANGE...
2013-09-02 Eric CovenerReturn a 500 error instead of DECLINED when LuaHook...
2013-09-02 Eric Covenertrace4 logging of return codes from LuaHook* functions.
2013-09-01 Daniel GrunoAdding a simple logging hook for mod_lua, which allows...
2013-06-06 Eric Covenertolerate LuaMapHandler scripts that don't return anything
2013-05-31 Guenter KnaufRemove unneeded exports from mod_lua - part 2.
2013-04-20 Daniel GrunoUse a mutex to control read/write for IVM values, so...
2013-01-16 Daniel GrunoUsing the traditional way of declaring Lua functions...
2012-12-15 Daniel Grunomod_lua: If a regex fails, return false plus an error...
2012-12-11 Daniel Grunomod_lua: Add a lot of core httpd/apr functionality...
2012-09-10 Stefan Fritschmore coding style (no logic change)
2012-09-10 Stefan FritschFix warnings about unused variable and (false positive...
2012-09-10 Stefan FritschReplace duplicate log msg numbers
2012-08-27 Daniel GrunoTrying to tie up some loose ends:
2012-08-27 Daniel GrunoFix some style issues, use a more persistent bucket...
2012-08-27 Daniel GrunoRemoving a misleading comment.
2012-08-26 Daniel GrunoAdd new directives, LuaInputFilter/LuaOutputFilter...
2012-08-26 Daniel GrunoAdd 'server' to scope_to_string's list of possible...
2012-08-17 Daniel GrunoAdd the missing state release to the LuaMapHandler...
2012-08-17 Daniel GrunoAdd a missing release of a Lua state (when server scope...
2012-08-17 Daniel Grunomod_lua: Allow scripts handled by the lua-script handle...
2012-08-07 Stefan FritschThere is only one global provider name space, therefore...
2012-08-07 Daniel Grunomod_lua: Decline to serve a request if the script doesn...
2012-08-06 Jeff Trawickfix "lua_vmprep.c:29:6: warning: no previous prototype...
2012-08-06 Daniel GrunoReverting r1369758
2012-08-06 Daniel Grunouse the ap_mutex functions to create the mutex instead...
2012-08-05 Daniel GrunoAdd a server scope for Lua states (in LuaScope), which...
2012-08-05 Stefan FritschRevert r1367504:
2012-08-01 Jeff Trawickmod_lua.c:189:13: error: ISO C90 forbids mixed declarat...
2012-08-01 Daniel Grunomod_lua:
2012-07-31 Daniel Grunomod_lua: Add the (missing) LuaMapHandler directive...
2012-07-31 Daniel Grunomod_lua: The current way of getting the authz provider...
2012-07-30 Daniel Grunomod_lua: Remember to set cfg->codecache to AP_LUA_CACHE...
2012-07-30 Daniel Grunomod_lua: Pass on the request_rec to ap_lua_get_lua_stat...
2012-07-29 Daniel GrunoAdd LuaCodeCache directive for controlling in-memory...
2012-07-15 Stefan FritschVarious code clean up
2012-06-16 Stefan FritschAdd new directive LuaAuthzProvider to allow implementing an
2012-06-16 Stefan Fritschfactor common code into utility function
2012-06-16 Stefan Fritschchange various strings from char * to const char *
2011-12-18 Stefan FritschVarious code cleanup to avoid compiler, cppcheck, or...
2011-12-18 Stefan Fritschremove some dead code
2011-12-02 Stefan FritschAdd lots of unique tags to error log messages
2011-11-13 Eric Coveneradd per-dir config merging to mod_lua so LuaHook* in...
2011-11-11 Rainer JungUse the right lua scope when used as a hook.
2011-11-11 Eric Covenerdon't let thread-scope be selected in a server w/o...
2011-11-11 Eric CovenerC99 and unused variable warnings
2011-11-11 Brian McCallisteruse a sub-pool for scope_once
2011-11-11 Brian McCallisterreplace server scope with thread scope
2011-11-10 Brian McCallisterremove lingering reslist references before killing...
2011-11-10 Brian McCallisterremove ability to set min and max pool sizes for server...
2011-11-10 Brian McCallisterremove some debug logging which snuck in
2011-11-10 Joe Orton* modules/lua/mod_lua.c (ap_lua_ssl_is_https): New...
2011-11-10 Brian McCallisterremove last traces of the code cache
2011-11-10 Brian McCallisterfix issue with incorrect munging of the lua package...
2011-11-10 Eric Covenerap_check_cmd_context checks don't work on the block...
2011-11-08 Eric Covenermod_lua: Expose SSL variables via r:ssl_var_lookup()
2011-11-08 Eric Covenerallow some lua hooks to be run in "early" or "late...
2011-11-05 Eric Covenerquick handlers and translate_name in lua can't be keyed off
2011-11-04 Eric Covenerget the hello world of Handlers working again
2011-10-22 Eric Covenerquick handler in an external file is already enabled...
2011-09-23 Stefan FritschMore style fixes, no func changes
2011-09-23 Stefan FritschMore cleanup: Expand tabs and some more indentation...
2011-09-23 Jim JagielskiCleanup effort in prep for GA push:
2011-03-29 Stefan FritschChange the ap_cfg_getline() and ap_cfg_getc() to return...
2011-03-14 Brian McCallisterapply patch from zhiguo zhao <zhaozg@gmail.com> to...
2010-09-28 Stefan Fritschsave some memory by using cmd->temp_pool instead of...
2010-06-10 William A. Rowe JrDrop ap_body_to_table due to missing constraints; a...
2010-06-06 Stefan FritschUse the new APLOG_USE_MODULE/AP_DECLARE_MODULE macros...
2010-05-01 Daniel Earl PoirierAdd info to debug logging.
2009-11-04 Joe Orton* modules/lua/: s/apr_strnatcmp/strcmp/ - strnat*cmp...
2009-03-25 William A. Rowe Jrfix symbol space and exports
2008-12-22 Ruediger Pluem* Remove unused variable
2008-12-22 Paul QuernaUse the HTTP_INTERNAL_SERVER_ERROR define instead of...
2008-12-21 Paul QuernaFix more ISO C90 forbids mixed declarations and code...
2008-12-21 Paul QuernaAttempt to make mod_lua compile under a strict c89...
2008-12-21 Paul QuernaChange apl_get_lua_state to take a apl_vm_spec instead...
2008-12-21 Paul QuernaReformat mod_lua according to the HTTP Server Project...
2008-12-21 Paul QuernaMake all of the hook callbacks static functions.
2008-12-21 Paul QuernaFixup lua_config.c with prefix rename, and make mod_lua...
2008-12-21 Paul QuernaRename all files in mod_lua to have a lua_ prefix,...
2008-12-21 Paul QuernaRename most of the module formally known as mod_wombat...
2008-12-21 Paul QuernaRename mod_wombat -> mod_lua.