Changeset 10
- Timestamp:
- 02/13/2005 02:30:03 PM (4 years ago)
- Files:
-
- 4 added
- 9 modified
-
ChangeLog (modified) (1 diff)
-
configure.in (modified) (1 diff)
-
cygwin/lighttpd.README (modified) (1 diff)
-
openwrt/control (modified) (1 diff)
-
openwrt/lighttpd.mk (modified) (2 diffs)
-
src/response.c (modified) (1 diff)
-
tests/Makefile.am (modified) (1 diff)
-
tests/bug-03.sh (added)
-
tests/docroot/www/Makefile.am (modified) (1 diff)
-
tests/docroot/www/indexfile (added)
-
tests/docroot/www/indexfile/Makefile.am (added)
-
tests/docroot/www/indexfile/index.php (added)
-
tests/prepare.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r9 r10 57 57 (Bug #2) 58 58 59 - indexfiles 60 61 append the detected indexfile only once to uri.path (reported by Thomas 62 Seifert) 63 (Bug #3) 64 59 65 06.02.2005 15:16 - 1.3.10 60 66 - fastcgi -
configure.in
r6 r10 363 363 364 364 AC_CONFIG_FILES([Makefile debian/Makefile src/Makefile doc/Makefile tests/Makefile \ 365 tests/docroot/Makefile tests/docroot/123/Makefile tests/docroot/www/go/Makefile tests/docroot/www/Makefile \ 365 tests/docroot/Makefile \ 366 tests/docroot/123/Makefile \ 367 tests/docroot/www/Makefile \ 368 tests/docroot/www/go/Makefile \ 369 tests/docroot/www/indexfile/Makefile \ 366 370 lighttpd.spec distribute.sh cygwin/Makefile cygwin/lighttpd.README 367 371 openwrt/Makefile openwrt/control openwrt/lighttpd.mk]) -
cygwin/lighttpd.README
r1 r10 32 32 33 33 Build instructions: 34 unpack lighttpd-1.3.1 0-<REL>-src.tar.bz234 unpack lighttpd-1.3.11-<REL>-src.tar.bz2 35 35 if you use setup to install this src package, it will be 36 36 unpacked under /usr/src automatically 37 37 cd /usr/src 38 ./lighttpd-1.3.1 0-<REL>.sh all38 ./lighttpd-1.3.11-<REL>.sh all 39 39 40 40 This will create: 41 /usr/src/lighttpd-1.3.1 0-<REL>.tar.bz242 /usr/src/lighttpd-1.3.1 0-<REL>-src.tar.bz241 /usr/src/lighttpd-1.3.11-<REL>.tar.bz2 42 /usr/src/lighttpd-1.3.11-<REL>-src.tar.bz2 43 43 44 Or use './lighttpd-1.3.1 0-<REL>.sh prep' to get a patched source directory44 Or use './lighttpd-1.3.11-<REL>.sh prep' to get a patched source directory 45 45 46 46 ------------------------------------------- -
openwrt/control
r1 r10 1 1 Package: lighttpd 2 Version: 1.3.1 02 Version: 1.3.11 3 3 Architecture: mipsel 4 4 Maintainer: Jan Kneschke <jan@kneschke.de> 5 Source: http://jan.kneschke.de/projects/lighttpd/download/lighttpd-1.3.1 0.tar.gz5 Source: http://jan.kneschke.de/projects/lighttpd/download/lighttpd-1.3.11.tar.gz 6 6 Section: net 7 7 Priority: optional -
openwrt/lighttpd.mk
r5 r10 11 11 # For this example we'll use a fairly simple package that compiles easily 12 12 # and has sources available for download at sourceforge 13 LIGHTTPD=lighttpd-1.3.1 013 LIGHTTPD=lighttpd-1.3.11 14 14 LIGHTTPD_TARGET=.built 15 15 LIGHTTPD_DIR=$(BUILD_DIR)/$(LIGHTTPD) … … 17 17 LIGHTTPD_IPK_DIR=$(BUILD_DIR)/$(LIGHTTPD)-ipk 18 18 19 LIGHTTPD_SITE=http:// www.lighttpd.net/download/19 LIGHTTPD_SITE=http://jan.kneschke.de/projects/lighttpd/download/ 20 20 LIGHTTPD_SOURCE=$(LIGHTTPD).tar.gz 21 21 -
src/response.c
r1 r10 1246 1246 break; 1247 1247 } 1248 1249 if (HANDLER_GO_ON == file_cache_get_entry(srv, con, srv->tmp_buf, &(con->fce))) {1250 /* rewrite uri.path to the real path (/ -> /index.php) */1251 buffer_append_string_buffer(con->uri.path, ds->value);1252 1253 break;1254 }1255 1248 } 1256 1249 -
tests/Makefile.am
r4 r10 20 20 basic-11.sh \ 21 21 bug-urldecode-00.sh \ 22 bug-03.sh \ 22 23 broken-header-01.sh \ 23 24 content-length-01.sh \ -
tests/docroot/www/Makefile.am
r1 r10 1 1 EXTRA_DIST=cgi.php cgi.pl dummydir index.html index.txt phpinfo.php \ 2 2 phpself.php redirect.php cgi-pathinfo.pl phphost.php 3 SUBDIRS=go 3 SUBDIRS=go indexfile -
tests/prepare.sh
r1 r10 12 12 mkdir -p $tmpdir/servers/www.example.org/pages/dummydir/ 13 13 mkdir -p $tmpdir/servers/www.example.org/pages/go/ 14 mkdir -p $tmpdir/servers/www.example.org/pages/indexfile/ 14 15 mkdir -p $tmpdir/servers/123.example.org/pages/ 15 16 mkdir -p $tmpdir/logs/ … … 23 24 $srcdir/docroot/www/*.txt $tmpdir/servers/www.example.org/pages/ 24 25 cp $srcdir/docroot/www/go/*.php $tmpdir/servers/www.example.org/pages/go/ 26 cp $srcdir/docroot/www/indexfile/*.php $tmpdir/servers/www.example.org/pages/indexfile/ 25 27 cp $srcdir/docroot/123/*.txt \ 26 28 $srcdir/docroot/123/*.html \

