comparison src/http/modules/perl/nginx.pm @ 601:77f77f53214a release-0.3.22

nginx-0.3.22-RELEASE import *) 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; the bug had appeared in 0.3.18.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 17 Jan 2006 20:04:32 +0000
parents 869b6444d234
children 858700ae46b4
comparison
equal deleted inserted replaced
600:2d3a5a03e738 601:77f77f53214a
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