From: Date: Wed, 24 Aug 2005 05:33:46 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: PRE_NEW_OCI8_EXTENSION~108 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85989c29be1c16d90616a561037c536630e15c66;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 9ef94eeff1..106756d58a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,91 @@ +2005-08-23 Andrei Zmievski + + * ZendEngine2/zend_builtin_functions.c + ZendEngine2/zend_operators.c + ZendEngine2/zend_operators.h: + Implement Unicode support for strncasecmp(). + + * unicode-progress.txt + unicode-todo.txt: + -** empty log message *** + +2005-08-23 Jani Taskinen + + * ext/standard/tests/strings/bug34214.phpt + ext/standard/tests/strings/bug34214.phpt: + + Test for bug #34214 + +2005-08-23 Andrei Zmievski + + * ZendEngine2/zend_operators.c: + Damn. + + * ZendEngine2/zend_operators.c: + - Rewrite zend_u_binary_strncmp() to work on codepoint level. Calling + u_strCompare() doesn't help because it assumes that the input lengths + specify the number of UChar's. + - Change zend_u_binary_strcmp() to use u_strCompare() (and it's fine to + use it here, since we work with whole strings here). + + * ext/standard/var.c: + Fix verbosity for var_inspect(). + + * ZendEngine2/zend_operators.c: + This was so embarassingly silly. + +2005-08-23 Ilia Alshanetsky + + * (PHP_5_1) + ext/pcre/pcrelib/pcre_dfa_exec.c: + removed unused vars + +2005-08-23 Dmitry Stogov + + * unicode-progress.txt + ZendEngine2/zend_API.c + ZendEngine2/zend_API.h + ZendEngine2/zend_builtin_functions.c + ZendEngine2/zend_exceptions.c + ext/standard/dir.c + ext/standard/dns.c + ext/standard/filestat.c + ext/standard/info.c + ext/standard/link.c + ext/standard/string.c + ext/standard/type.c + ext/standard/uniqid.c + ext/standard/tests/file/userdirstream.phpt + ext/standard/tests/strings/bug24098.phpt: + Unicode support + + * ZendEngine2/zend_API.h + ext/simplexml/simplexml.c + ext/sqlite/sqlite.c + ext/standard/array.c + ext/standard/basic_functions.c + ext/standard/image.c + ext/standard/md5.c + ext/standard/string.c: + Unicode support cleanup + + * NEWS + ZendEngine2/zend_builtin_functions.c + ZendEngine2/zend_execute.h + ZendEngine2/zend_execute_API.c + ZendEngine2/tests/is_a.phpt: + Changed is_a() and is_subcalls_of() functions to not call __autoload() (in + the same way as "instanceof" operator). + + * unicode-progress.txt + ZendEngine2/zend_builtin_functions.c: + Unicode support for strncasecmp() + +2005-08-23 Derick Rethans + + * main/spprintf.c: + - Fixed another little buglet in the spprintf() formatters. + 2005-08-22 Andrei Zmievski * ZendEngine2/zend_builtin_functions.c diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 65e5df03ee..fc419faad7 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,44 @@ +2005-08-23 Andrei Zmievski + + * zend_builtin_functions.c + zend_operators.c + zend_operators.h: + Implement Unicode support for strncasecmp(). + + * zend_operators.c: + Damn. + + * zend_operators.c: + - Rewrite zend_u_binary_strncmp() to work on codepoint level. Calling + u_strCompare() doesn't help because it assumes that the input lengths + specify the number of UChar's. + - Change zend_u_binary_strcmp() to use u_strCompare() (and it's fine to + use it here, since we work with whole strings here). + + * zend_operators.c: + This was so embarassingly silly. + +2005-08-23 Dmitry Stogov + + * zend_API.c + zend_API.h + zend_builtin_functions.c + zend_exceptions.c: + Unicode support + + * zend_API.h: + Unicode support cleanup + + * zend_builtin_functions.c + zend_execute.h + zend_execute_API.c + tests/is_a.phpt: + Changed is_a() and is_subcalls_of() functions to not call __autoload() (in + the same way as "instanceof" operator). + + * zend_builtin_functions.c: + Unicode support for strncasecmp() + 2005-08-22 Andrei Zmievski * zend_builtin_functions.c