summaryrefslogtreecommitdiffhomepage
path: root/src/http/modules/perl (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2007-02-19bump versionIgor Sysoev1-1/+1
2007-02-12bump versionIgor Sysoev1-1/+1
2007-02-05bump versionIgor Sysoev1-1/+1
2007-01-25bump versionIgor Sysoev1-1/+1
2007-01-25bump versionIgor Sysoev1-1/+1
2007-01-25undo "client_body_in_file_only any"Igor Sysoev1-1/+1
and introduce "client_body_in_file_only clean" introduce ngx_pool_delete_file() to not break a possible third-party ngx_pool_cleanup_file() usage that may lead to an removal of the useful files delete unnecessary ngx_http_finalize_request_body()
2007-01-20envIgor Sysoev1-11/+14
2007-01-19bump versionIgor Sysoev1-1/+1
2007-01-18update nginx.xs to ngx_open_file(name, mode, create, access)Igor Sysoev1-1/+1
2007-01-16bump versionIgor Sysoev1-1/+1
2007-01-12style fix: remove tabsIgor Sysoev1-1/+1
2007-01-09bump versionIgor Sysoev1-1/+1
2006-12-24bump versionIgor Sysoev1-1/+1
2006-12-22fix segfaultIgor Sysoev1-2/+5
2006-12-14bump versionIgor Sysoev1-1/+1
2006-12-14allow "perl" inside "limit_except"Igor Sysoev1-1/+1
2006-12-13bump versionIgor Sysoev1-1/+1
2006-12-13$r->statusIgor Sysoev1-0/+16
2006-12-13add HTTP response codesIgor Sysoev1-7/+66
2006-12-13fix ngx_http_perl_sleep_handler()Igor Sysoev1-1/+13
2006-12-12$r->variable() supports perl only variablesIgor Sysoev2-1/+70
2006-12-12$r->sleep()Igor Sysoev3-0/+40
2006-12-12style fixIgor Sysoev1-2/+1
2006-12-12fix $r->has_request_body()Igor Sysoev1-4/+1
2006-12-12axe ngx_http_perl_cleanup_sv(): all SVs should be freedIgor Sysoev1-37/+0
by perl_free() in ngx_http_perl_cleanup_perl()
2006-12-12$r->log_error()Igor Sysoev1-0/+34
2006-12-12bump versionIgor Sysoev1-1/+1
2006-12-11bump versionIgor Sysoev1-1/+1
2006-12-04bump versionIgor Sysoev1-1/+1
2006-11-28the PERL_NO_GET_CONTEXT is actually required, see perlgutsIgor Sysoev1-0/+2
2006-11-27bump version to 0.5.0Igor Sysoev1-1/+1
2006-11-26add commentIgor Sysoev1-0/+3
2006-11-26fix segfaults in future workers those will use old configuration,Igor Sysoev1-8/+22
if new configuration failed
2006-11-26Axe several perl interpreter instances: they may be useful in currentlyIgor Sysoev2-171/+13
unsupported threaded environment, but now they complicate code: *) perl_clone() requires at least duplicating nginx stash; *) the multiplicity requires to re-evalute all precompiled subroutines and nginx stash in new interpreter context.
2006-11-25add debug loggingIgor Sysoev1-0/+5
2006-11-25fix recursive perl_set variable callIgor Sysoev1-6/+16
2006-11-25it seems the PERL_NO_GET_CONTEXT was needed to disable warnings onlyIgor Sysoev1-2/+0
2006-11-25style fixIgor Sysoev1-1/+1
2006-11-24axe unused codeIgor Sysoev1-18/+0
2006-11-15bump versionIgor Sysoev1-1/+1
2006-10-31bump versionIgor Sysoev1-1/+1
2006-10-31$r->variableIgor Sysoev1-0/+83
2006-10-25bump versionIgor Sysoev1-1/+1
2006-10-25$r->allow_rangesIgor Sysoev1-0/+13
2006-10-23bump versionIgor Sysoev1-1/+1
2006-10-13bump versionIgor Sysoev1-1/+1
2006-10-12check nginx.pm versionIgor Sysoev3-2/+15
2006-10-12previous commit broke two modulesIgor Sysoev1-1/+2
2006-10-05$r->headers_out("Content-Length", "NNN") did not workIgor Sysoev1-3/+2
2006-08-30nginx-0.4.0-RELEASE importrelease-0.4.0Igor Sysoev5-26/+76
*) Change in internal API: the HTTP modules initialization was moved from the init module phase to the HTTP postconfiguration phase. *) Change: now the request body is not read beforehand for the ngx_http_perl_module: it's required to start the reading using the $r->has_request_body method. *) Feature: the ngx_http_perl_module supports the DECLINED return code. *) Feature: the ngx_http_dav_module supports the incoming "Date" header line for the PUT method. *) Feature: the "ssi" directive is available inside the "if" block. *) Bugfix: a segmentation fault occurred if there was an "index" directive with variables and the first index name was without variables; the bug had appeared in 0.1.29.