From: Date: Mon, 27 Mar 2006 06:31:51 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_1_3~241 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=03b5fefd392dfcb61822269e3a0531819c42b1c9;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 4b46eb1ea2..20bab018e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,134 @@ +2006-03-26 Andrei Zmievski + + * unicode-todo.txt + unicode-todo.txt: + -** empty log message *** + +2006-03-26 Andrey Hristov + + * (PHP_5_1) + ext/mysqli/mysqli_api.c: + kill the left unused variable + + * (PHP_5_1) + ext/mysqli/mysqli_api.c: + remove unnecessary memcpy, cast directly + +2006-03-26 Ilia Alshanetsky + + * (PHP_4_4) + NEWS + ext/standard/http_fopen_wrapper.c: + MFH: Fixed bug #36857 (Added support for partial content fetching to the + HTTP streams wrapper). + + * ext/standard/http_fopen_wrapper.c: + MFB51: Fixed bug #36857 (Added support for partial content fetching to the + HTTP streams wrapper). + + * (PHP_5_1) + NEWS + ext/standard/http_fopen_wrapper.c: + Fixed bug #36857 (Added support for partial content fetching to the HTTP + streams wrapper). + +2006-03-26 Derick Rethans + + * ext/standard/array.c + ext/standard/php_array.h: + - Implemented basic collation support. For some reason "new Collator" gives + segfaults when the object's collation resource is used. + - The following example shows what is implemented: + + sort($strings) as $string) { + echo $string, "\n"; + } + echo $c->getAttribute(Collator::FRENCH_COLLATION) == Collator::ON + ? "With" : "Without", " french accent sorting order\n"; + + echo "\nFrench with options:\n"; + $c = collator_create( "fr" ); + $c->setAttribute(Collator::CASE_FIRST, Collator::UPPER_FIRST); + $c->setAttribute(Collator::CASE_LEVEL, Collator::ON); + $c->setStrength(Collator::SECONDARY); + foreach($c->sort($strings) as $string) { + echo $string, "\n"; + } + echo $c->getAttribute(Collator::FRENCH_COLLATION) == Collator::ON + ? "With" : "Without", " french accent sorting order\n"; + ?> + +2006-03-26 Andrei Zmievski + + * ZendEngine2/zend.c + ZendEngine2/zend_globals.h + ZendEngine2/zend_operators.c + ZendEngine2/zend_unicode.c + ZendEngine2/zend_unicode.h + main/main.c + main/streams/filter.c + main/streams/streams.c: + Implement to-Unicode conversion error behavior. Note the adjusted APIs. + +2006-03-26 Sara Golemon + + * NEWS + ext/standard/streamsfuncs.c: + Expand stream_context_create() to allow specifying params + as well as options. Ignore the internal name change of the first arg. + The first arg is still for options, the second arg is for actual params. + +2006-03-26 Seiji Masugata + + * ext/mbstring/mbstring.c + ext/mbstring/mbstring.c: + fixed compiler warning. + +2006-03-26 Derick Rethans + + * ext/standard/string.c + ext/standard/tests/strings/strtotitle.phpt + ext/standard/tests/strings/strtr2.phpt: + - Commit intermediate work so that I can hack on it on some plane. + +2006-03-26 Andrei Zmievski + + * ZendEngine2/zend.c + ZendEngine2/zend_constants.c + ZendEngine2/zend_globals.h + ZendEngine2/zend_unicode.c + ZendEngine2/zend_unicode.h + main/main.c + main/streams/filter.c + main/streams/streams.c: + - Remove unicode.from_error_mode and unicode.from_subst_char from INI + settings. + * Add unicode_set_error_mode() and unicode_set_subst_char() functions to + manipulate these global settings. + +2006-03-26 Antony Dovgal + + * ext/dom/php_dom.c: + MF51: fix #36859 (DOMElement crashes when calling __construct when + clone'ing) + + * (PHP_5_1) + NEWS + ext/dom/php_dom.c: + fix #36859 (DOMElement crashes when calling __construct when clone'ing) + 2006-03-25 Sara Golemon * main/streams/streams.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 4fcfcb3aa4..e03f5b00cf 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,22 @@ +2006-03-26 Andrei Zmievski + + * zend.c + zend_globals.h + zend_operators.c + zend_unicode.c + zend_unicode.h: + Implement to-Unicode conversion error behavior. Note the adjusted APIs. + + * zend.c + zend_constants.c + zend_globals.h + zend_unicode.c + zend_unicode.h: + - Remove unicode.from_error_mode and unicode.from_subst_char from INI + settings. + * Add unicode_set_error_mode() and unicode_set_subst_char() functions to + manipulate these global settings. + 2006-03-24 Andrei Zmievski * zend_unicode.c: