From: Date: Mon, 15 Jul 2002 00:21:10 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: dev~295 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2fba341e07662a6b083267fa2991c4abeabef2c9;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 09e516e486..1d7a0d0cf7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,88 @@ +2002-07-14 Andrei Zmievski + + * ext/pcre/php_pcre.c: Fix Bug #18341. + +2002-07-14 Sascha Schumann + + * NEWS: it is not really cold though + + * NEWS: the sun was shining a few days ago + + * sapi/thttpd/thttpd_patch + sapi/thttpd/thttpd.c: integrate the public keep-alive patch + + the patch did not handle pipeling at all, so that some code had to be added + from Premium thttpd + + persistent connections are supported, if a script sets the Content-Length + header + +2002-07-14 Rasmus Lerdorf + + * ext/ming/ming.c: Fix a couple of protos + +2002-07-14 Sascha Schumann + + * sapi/thttpd/thttpd.c + sapi/thttpd/thttpd_patch: + thttpd blocks in rare circumstances where it cannot write out a small HTTP + response (happened at customer sites). The response is now written out + using the standard state machine. + + the buffer which is handed to thttpd by php is now simply dealt with as if + it were a thttpd generated response (avoids code duplication). + + * sapi/thttpd/thttpd.c + sapi/thttpd/thttpd_patch: + make the sapi module hand off a buffer to thttpd for final data delivery, + instead of blocking the whole process + +2002-07-14 edink + + * main/rfc1867.c: + MFH (fixes linking errors when --enable-mbstring is used) + +2002-07-14 yohgaki + + * ext/iconv/tests/eucjp2utf8.inc + ext/iconv/tests/eucjp2utf8.phpt: Move comment. + Remove a skip condition does not required. + +2002-07-14 sniper + + * main/rfc1867.c: + IF --disable-mbstr-enc-trans is used OR mbstring is compiled as shared + extension, these functions are not available. + + * ext/mbstring/tests/002.inc + ext/mbstring/tests/003.inc + ext/mbstring/tests/004.inc + ext/mbstring/tests/005.inc + ext/mbstring/tests/006.inc + ext/mbstring/tests/008.inc + ext/mbstring/tests/009.inc + ext/mbstring/tests/010.inc + ext/mbstring/tests/011.inc + ext/mbstring/tests/012.inc + ext/mbstring/tests/013.inc + ext/mbstring/tests/014.inc + ext/mbstring/tests/015.inc + ext/mbstring/tests/016.inc + ext/mbstring/tests/017.inc + ext/mbstring/tests/018.inc + ext/mbstring/tests/019.inc + ext/mbstring/tests/common.inc + ext/mbstring/tests/common.php: .php files are in .cvsignore here + + * ext/mbstring/config.m4: These options are all enabled by default. (why?) + +2002-07-14 yohgaki + + * ext/iconv/tests/eucjp2utf8.inc + ext/iconv/tests/eucjp2utf8.phpt + ext/iconv/tests/translit.phpt: + Fix tests. Moriyoshi Koizumi + 2002-07-13 sander * ext/standard/fsock.c: Fixed win32 build diff --git a/Zend/ChangeLog b/Zend/ChangeLog index af02b92f7a..aeec611555 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,25 @@ +2002-07-14 Andi Gutmans + + * zend_compile.c + zend_compile.h + zend_execute.c + zend_language_parser.y + zend_language_scanner.l + ZEND_CHANGES: + - Nuke delete(). It was a big mistake to introduce it and I finally + - understand why Java didn't do so. + - If you still want to control destruction of your object then either make + - sure you kill all references or create a destruction method which you + - call yourself. + + * zend_execute.c: - Nuke some unused code + +2002-07-14 derick + + * zend_operators.c: MFZE1 + + * zend_operators.c: - MFZE1 + 2002-07-07 Andi Gutmans * zend_objects_API.c: - Path which should improve previous fix.