Граф коммитов

375 Коммитов

Автор SHA1 Сообщение Дата
agentzh (章亦春) c62a7a5237 removed a --- ONLY flag from the test suite. 2011-01-09 21:20:36 +08:00
agentzh (章亦春) 57d1f80cf3 rewritten the HTTP 1.0 handling section in README. we can actually automatically generate a Content-Length header for HTTP 1.0 requests. 2011-01-09 20:54:30 +08:00
agentzh (章亦春) f2374de190 fixed a typo in README. 2011-01-09 20:32:44 +08:00
agentzh (章亦春) 69527323ab added a section in HTTP 1.0 outputs to README. 2011-01-09 20:30:27 +08:00
agentzh (章亦春) 17bffb5c26 Merge branch 'master' of github.com:chaoslawful/lua-nginx-module 2011-01-09 20:18:41 +08:00
agentzh (章亦春) ed48b9303f fixed an issue regarding HTTP 1.0 outputs. 2011-01-09 20:18:18 +08:00
Wang Xiaozhe face45b54c Merge branch 'master' of github.com:chaoslawful/lua-nginx-module 2011-01-09 17:46:19 +08:00
Wang Xiaozhe e1da316365 fixed comment mark 2011-01-09 17:46:10 +08:00
agentzh (章亦春) 44bbe7068d applied a modified version of neilljordan 's patch to add support for multi-value response headers returned from subrquests. 2011-01-08 16:24:34 +08:00
agentzh (章亦春) 9a7c06c4a8 fixed a bug in rewrite_by_lua* and access_by_lua* regarding automatic response headers sending. thanks Roman Vasilyev. 2011-01-08 15:20:31 +08:00
agentzh (章亦春) c2ec0b3ab1 added a test for auth_request + ngx_access. 2011-01-07 20:05:31 +08:00
agentzh (章亦春) 077ee1a4da documented that access_by_lua* also supports lua_need_request_body. 2011-01-07 19:49:43 +08:00
agentzh (章亦春) 417e3a7602 added a sample for mixing rewrite_by_lua_file, access_by_lua_file, and content_by_lua_file. 2011-01-07 19:24:03 +08:00
agentzh (章亦春) d2e6375c83 added more tests for access_by_lua. 2011-01-07 18:58:50 +08:00
agentzh (章亦春) 3da14bc61b added t/024-access/*.t. 2011-01-07 18:52:36 +08:00
agentzh (章亦春) 02f32dd21b added more sample configs to Synopsis section. 2011-01-07 18:52:03 +08:00
agentzh (章亦春) 20e919d612 access_by_lua and access_by_lua_file are passing tests now. 2011-01-07 18:37:46 +08:00
agentzh (章亦春) 2606b2f2fd updated .gitignore. 2011-01-07 16:45:50 +08:00
agentzh (章亦春) 51971a48f3 added compatibility notes regarding 0.9.x. 2011-01-07 14:56:13 +08:00
Wang Xiaozhe 5545242581 resolved conflicts 2011-01-07 09:46:00 +08:00
Wang Xiaozhe b0da782fb9 added typecasts to suppress clang warnings 2011-01-07 09:43:45 +08:00
agentzh (章亦春) 0590c96d56 now we return NGX_DONE when ngx_http_read_client_request_body returns NGX_AGAIN in content_by_lua. 2011-01-06 21:59:05 +08:00
agentzh (章亦春) f5187bff39 specified which context a specific lua nginx API is available, like being available in rewrite_by_lua and content_by_lua. 2011-01-06 16:15:41 +08:00
agentzh (章亦春) 77a036c5a7 documented that rewrite_by_lua will NOT work with nginx 0.8.41 ~ 0.8.53. 2011-01-06 12:46:00 +08:00
agentzh (章亦春) 0d2001b022 massive code layout refactoring. 2011-01-06 12:43:25 +08:00
agentzh (章亦春) 17d56682c6 moved the handler functions out of directive.[ch]. 2011-01-06 12:25:10 +08:00
agentzh (章亦春) 657bea5b29 moved t/024-mixed.t to t/023-rewrite/. 2011-01-06 12:14:48 +08:00
agentzh (章亦春) 530be0965d checked in more tests for rewrite_by_lua. 2011-01-06 12:13:45 +08:00
agentzh (章亦春) 2f2b1b6668 fixed a bug regarding content handler reading request body. 2011-01-05 22:08:08 +08:00
agentzh (章亦春) 3a25d18663 documented the current behavior of the "lua_need_request_body" directive. 2011-01-05 21:13:01 +08:00
agentzh (章亦春) 2b53d0d527 re-implemented the "lua_need_request_body" directive. now it is both working for rewrite_by_lua and content_by_lua. 2011-01-05 21:03:41 +08:00
agentzh (章亦春) 18df04491f now we postpone rewrite_by_lua to the end of the rewrite phase; also reset ctx in content_by_lua to avoid left-over ctx flags set by rewrite_by_lua to taint our content_by_lua handlers. 2011-01-05 20:08:19 +08:00
agentzh (章亦春) 65ef4ca5ef fixed compatibility issues with nginx 0.7.x but still rewrite_by_lua does not work with 0.7.x. 2011-01-04 15:39:37 +08:00
agentzh (章亦春) 11050d43b9 rewite_by_lua tests. 2011-01-04 14:38:33 +08:00
agentzh (章亦春) f8f272aee7 sanity.t and subrequest.t for rewrite_by_lua* now passing. 2011-01-04 14:34:17 +08:00
agentzh (章亦春) 9372747c59 rewrite_by_lua starts passing tests. 2010-12-31 17:54:07 +08:00
agentzh (章亦春) ac647f3e8a coding style fixes. 2010-12-31 12:29:23 +08:00
agentzh (章亦春) 13dbf2ab3f first cut on rewrite_by_lua support, not there yet. 2010-12-31 12:23:51 +08:00
Wang Xiaozhe d66c01d39b updated ndk upstream location 2010-12-17 18:31:21 +08:00
Wang Xiaozhe fb58b876eb updated ndk dep 2010-12-17 18:21:45 +08:00
agentzh (章亦春) 3c1b63a4f1 Merge branch 'master' of github.com:chaoslawful/lua-nginx-module 2010-12-17 17:21:27 +08:00
agentzh (章亦春) 2d37ba51d8 now we use the 2-clause bsd license. 2010-12-17 17:20:59 +08:00
Piotr Sikora 52a7f21c3b Add auto-discovery for FreeBSD. 2010-12-17 08:51:44 +00:00
Wang Xiaozhe bc1c2d63a1 added notes about using luajit under 64-bit darwin os; updated ndk depedency 2010-12-13 10:50:29 +08:00
Piotr Sikora 113ba8b723 $ngx_found value cannot be accessed before auto/feature, because it carries-over result from the previous feature check. 2010-12-03 04:44:20 +00:00
Piotr Sikora 9ed533cc04 Add autodiscovery support for Debian Lenny. 2010-12-02 03:51:42 +00:00
agentzh (章亦春) add96fcf0c added more tests for 500 in subrequests. 2010-12-02 17:13:23 +08:00
agentzh (章亦春) 967557e8d6 more README tweaks. 2010-11-26 23:11:21 +08:00
agentzh (章亦春) 18588a5608 documented that you can only write to an nginx variable in Lua when you have predefined it outside at config time. also documented an interesting work-around for set_by_lua to return multiple values to multiple nginx variables at the same time. 2010-11-26 23:09:26 +08:00
agentzh (章亦春) d4e72a9c23 marked those lua interfaces only available in content_by_lua. 2010-11-26 16:26:56 +08:00