comparison src/http/modules/ngx_http_ssi_filter_module.h @ 216:fa32d59d9a15 NGINX_0_3_55

nginx 0.3.55 *) Feature: the "stub" parameter in the "include" SSI command. *) Feature: the "block" SSI command. *) Feature: the unicode2nginx script was added to contrib. *) Bugfix: if a "root" was specified by variable only, then the root was relative to a server prefix. *) Bugfix: if the request contained "//" or "/./" and escaped symbols after them, then the proxied request was sent unescaped. *) Bugfix: the $r->headers_in("Cookie") of the ngx_http_perl_module now returns all "Cookie" header lines. *) Bugfix: a segmentation fault occurred if "client_body_in_file_only on" was used and nginx switched to a next upstream. *) Bugfix: on some condition while reconfiguration character codes inside the "charset_map" may be treated invalid; bug appeared in 0.3.50.
author Igor Sysoev <http://sysoev.ru>
date Fri, 28 Jul 2006 00:00:00 +0400
parents 003bd800ec2a
children 500a3242dff6
comparison
equal deleted inserted replaced
215:84a7f4bc1133 216:fa32d59d9a15
54 size_t saved; 54 size_t saved;
55 size_t looked; 55 size_t looked;
56 56
57 size_t value_len; 57 size_t value_len;
58 58
59 ngx_array_t variables; 59 ngx_array_t *variables;
60 ngx_array_t *blocks;
60 61
61 unsigned conditional:2; 62 unsigned conditional:2;
63 unsigned block:1;
62 unsigned output:1; 64 unsigned output:1;
63 unsigned output_chosen:1; 65 unsigned output_chosen:1;
64 unsigned wait:1; 66 unsigned wait:1;
65 67
66 void *value_buf; 68 void *value_buf;
86 ngx_str_t name; 88 ngx_str_t name;
87 ngx_http_ssi_command_pt handler; 89 ngx_http_ssi_command_pt handler;
88 ngx_http_ssi_param_t *params; 90 ngx_http_ssi_param_t *params;
89 91
90 unsigned conditional:2; 92 unsigned conditional:2;
93 unsigned block:1;
91 unsigned flush:1; 94 unsigned flush:1;
92 } ngx_http_ssi_command_t; 95 } ngx_http_ssi_command_t;
93 96
94 97
95 extern ngx_module_t ngx_http_ssi_filter_module; 98 extern ngx_module_t ngx_http_ssi_filter_module;