Makefile.am | 2 Makefile.in | 2 NEWS | 49 +++++++ SConstruct | 277 ++++++++++++++++++++++++++++++++++++++++++ autogen.sh | 27 ++++ configure | 108 ++++++++++------ configure.in | 33 +++-- cygwin/lighttpd.README | 10 - doc/configuration.txt | 6 doc/lighttpd.conf | 1 lighttpd.spec | 33 ++--- lighttpd.spec.in | 31 ++-- openwrt/control | 4 openwrt/lighttpd.mk | 2 src/Makefile.am | 14 +- src/Makefile.in | 14 +- src/SConscript | 195 +++++++++++++++++++++++++++++ src/array.h | 8 - src/base.h | 1 src/configfile-glue.c | 20 ++- src/configparser.c | 191 +++++++++++++++------------- src/configparser.y | 50 ++++--- src/connections.c | 29 ++-- src/etag.c | 9 + src/fdevent_solaris_devpoll.c | 2 src/http_auth.c | 5 src/mod_auth.c | 4 src/mod_cgi.c | 9 + src/mod_compress.c | 118 +++++++++++++---- src/mod_extforward.c | 100 ++++++++------- src/mod_fastcgi.c | 76 +++++++---- src/mod_proxy.c | 18 +- src/mod_scgi.c | 8 - src/mod_secure_download.c | 3 src/mod_ssi.c | 108 +++++++++++----- src/mod_staticfile.c | 24 +++ src/mod_status.c | 18 ++ src/mod_userdir.c | 16 ++ src/network_linux_sendfile.c | 5 src/network_openssl.c | 27 ---- src/response.c | 46 +++++- src/server.c | 43 +++--- src/spawn-fcgi.c | 258 +++++++++++++++++++++------------------ src/stream.c | 3 tests/LightyTest.pm | 4 tests/Makefile.am | 10 + tests/Makefile.in | 9 + tests/SConscript | 45 ++++++ tests/cachable.t | 8 - tests/core-404-handler.t | 8 - tests/core-condition.t | 8 - tests/core-keepalive.t | 9 - tests/core-request.t | 8 - tests/core-response.t | 9 - tests/core-var-include.t | 8 - tests/core.t | 9 - tests/env-variables.conf | 1 tests/env-variables.t | 21 +++ tests/fcgi-auth.c | 2 tests/fcgi-responder.c | 2 tests/lowercase.t | 8 - tests/mod-access.t | 8 - tests/mod-auth.t | 20 ++- tests/mod-cgi.t | 8 - tests/mod-compress.t | 8 - tests/mod-fastcgi.t | 21 ++- tests/mod-proxy.t | 53 ++++++++ tests/mod-redirect.t | 8 - tests/mod-rewrite.t | 8 - tests/mod-secdownload.t | 79 +++++++++++ tests/mod-setenv.t | 9 - tests/mod-ssi.t | 8 - tests/mod-userdir.t | 8 - tests/proxy.conf | 156 +++++++++++++++++++++++ tests/request.t | 8 - tests/run-tests.pl | 2 tests/symlink.t | 115 +++++++++++++++++ 77 files changed, 2044 insertions(+), 651 deletions(-)