comparison src/http/modules/ngx_http_autoindex_handler.c @ 467:bbd6b0b4a2b1 release-0.1.8

nginx-0.1.8-RELEASE import *) Bugfix: in the ngx_http_autoindex_module if the long file names were in the listing. *) Feature: the "^~" modifier in the location directive. *) Feature: the proxy_max_temp_file_size directive.
author Igor Sysoev <igor@sysoev.ru>
date Sat, 20 Nov 2004 19:52:20 +0000
parents a88a3e4e158f
children 8e8f3af115b5
comparison
equal deleted inserted replaced
466:ee6d66462bff 467:bbd6b0b4a2b1
302 for (i = 0; i < entries.nelts; i++) { 302 for (i = 0; i < entries.nelts; i++) {
303 len += sizeof("<a href=\"") - 1 303 len += sizeof("<a href=\"") - 1
304 + 1 /* 1 is for "/" */ 304 + 1 /* 1 is for "/" */
305 + entry[i].name.len + entry[i].escape 305 + entry[i].name.len + entry[i].escape
306 + sizeof("\">") - 1 306 + sizeof("\">") - 1
307 + NGX_HTTP_AUTOINDEX_NAME_LEN 307 + NGX_HTTP_AUTOINDEX_NAME_LEN + sizeof("&gt;") - 2
308 + sizeof("</a>") - 1 308 + sizeof("</a>") - 1
309 + 1 309 + sizeof(" 28-Sep-1970 12:00 ") - 1
310 + sizeof("28-Sep-1970 12:00 ") - 1
311 + sizeof("1023G") - 1 310 + sizeof("1023G") - 1
312 + 2; 311 + 2;
313 } 312 }
314 313
315 if (!(b = ngx_create_temp_buf(r->pool, len))) { 314 if (!(b = ngx_create_temp_buf(r->pool, len))) {