comparison src/http/modules/ngx_http_xslt_filter_module.c @ 400:6ebbca3d5ed7 NGINX_0_7_12

nginx 0.7.12 *) Feature: the "server_name" directive supports empty name "". *) Feature: the "gzip_disable" directive supports special "msie6" mask. *) Bugfix: if the "max_fails=0" parameter was used in upstream with several servers, then a worker process exited on a SIGFPE signal. Thanks to Maxim Dounin. *) Bugfix: a request body was dropped while redirection via an "error_page" directive. *) Bugfix: a full response was returned for request method HEAD while redirection via an "error_page" directive. *) Bugfix: the $r->header_in() method did not return value of the "Host", "User-Agent", and "Connection" request header lines; the bug had appeared in 0.7.0.
author Igor Sysoev <http://sysoev.ru>
date Tue, 26 Aug 2008 00:00:00 +0400
parents 05981f639d21
children ff86d646f9df
comparison
equal deleted inserted replaced
399:59e324e4d6d3 400:6ebbca3d5ed7
134 static void *ngx_http_xslt_filter_create_main_conf(ngx_conf_t *cf); 134 static void *ngx_http_xslt_filter_create_main_conf(ngx_conf_t *cf);
135 static void *ngx_http_xslt_filter_create_conf(ngx_conf_t *cf); 135 static void *ngx_http_xslt_filter_create_conf(ngx_conf_t *cf);
136 static char *ngx_http_xslt_filter_merge_conf(ngx_conf_t *cf, void *parent, 136 static char *ngx_http_xslt_filter_merge_conf(ngx_conf_t *cf, void *parent,
137 void *child); 137 void *child);
138 static ngx_int_t ngx_http_xslt_filter_init(ngx_conf_t *cf); 138 static ngx_int_t ngx_http_xslt_filter_init(ngx_conf_t *cf);
139 static void ngx_http_xslt_filter_exit(ngx_cycle_t *cycle);
139 140
140 141
141 ngx_str_t ngx_http_xslt_default_types[] = { 142 ngx_str_t ngx_http_xslt_default_types[] = {
142 ngx_string("text/xml"), 143 ngx_string("text/xml"),
143 ngx_null_string 144 ngx_null_string
194 NULL, /* init master */ 195 NULL, /* init master */
195 NULL, /* init module */ 196 NULL, /* init module */
196 NULL, /* init process */ 197 NULL, /* init process */
197 NULL, /* init thread */ 198 NULL, /* init thread */
198 NULL, /* exit thread */ 199 NULL, /* exit thread */
199 NULL, /* exit process */ 200 ngx_http_xslt_filter_exit, /* exit process */
200 NULL, /* exit master */ 201 ngx_http_xslt_filter_exit, /* exit master */
201 NGX_MODULE_V1_PADDING 202 NGX_MODULE_V1_PADDING
202 }; 203 };
203 204
204 205
205 static ngx_http_output_header_filter_pt ngx_http_next_header_filter; 206 static ngx_http_output_header_filter_pt ngx_http_next_header_filter;