comparison src/http/modules/perl/nginx.pm @ 150:50bd986c5d63 NGINX_0_3_22

nginx 0.3.22 *) Feature: the ngx_http_perl_module supports the $r->args and $r->unescape methods. *) Feature: the method $r->query_string of ngx_http_perl_module was canceled. *) Bugfix: segmentation fault was occurred if the "none" or "blocked" values was specified in the "valid_referers" directive; bug appeared in 0.3.18.
author Igor Sysoev <http://sysoev.ru>
date Tue, 17 Jan 2006 00:00:00 +0300
parents ea622d8acb38
children 396dbbc06dd7
comparison
equal deleted inserted replaced
149:cec6fdbfe9da 150:50bd986c5d63
15 HTTP_REDIRECT 15 HTTP_REDIRECT
16 HTTP_NOT_FOUND 16 HTTP_NOT_FOUND
17 HTTP_SERVER_ERROR 17 HTTP_SERVER_ERROR
18 ); 18 );
19 19
20 our $VERSION = '0.3.21'; 20 our $VERSION = '0.3.22';
21 21
22 require XSLoader; 22 require XSLoader;
23 XSLoader::load('nginx', $VERSION); 23 XSLoader::load('nginx', $VERSION);
24 24
25 # Preloaded methods go here. 25 # Preloaded methods go here.
46 46
47 =head1 DESCRIPTION 47 =head1 DESCRIPTION
48 48
49 This module provides a Perl interface to the nginx HTTP server API. 49 This module provides a Perl interface to the nginx HTTP server API.
50 50
51 =head2 EXPORT
52
53 None by default.
54
55
56 51
57 =head1 SEE ALSO 52 =head1 SEE ALSO
58 53
59 http://sysoev.ru/nginx/docs/http/ngx_http_perl_module.html 54 http://sysoev.ru/nginx/docs/http/ngx_http_perl_module.html
60 55