]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Mon, 27 Mar 2006 06:31:51 +0000 (06:31 +0000)
committer <changelog@php.net> <>
Mon, 27 Mar 2006 06:31:51 +0000 (06:31 +0000)
ChangeLog
Zend/ChangeLog

index 4b46eb1ea24aba595aadb5097c0a6c00265a21fd..20bab018e58aae039d3a919df8cdf421e34a6f8b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,134 @@
+2006-03-26  Andrei Zmievski  <andrei@gravitonic.com>
+
+    * unicode-todo.txt
+      unicode-todo.txt:
+      -** empty log message ***
+
+2006-03-26  Andrey Hristov  <php@hristov.com>
+
+    * (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  <ilia@prohost.org>
+
+    * (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  <php@derickrethans.nl>
+
+    * 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:
+      
+      <?php
+      $orig = $strings = array(
+          'côte',
+          'cote',
+          'côté',
+          'coté',
+          'fluße',
+          'flüße',
+      );
+      
+      echo "German phonebook:\n";
+      $c = collator_create( "de@collation=phonebook" );
+      foreach($c->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  <andrei@gravitonic.com>
+
+    * 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  <sara@golemon.com>
+
+    * 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  <s.masugata@digicom.dnp.co.jp>
+
+    * ext/mbstring/mbstring.c
+      ext/mbstring/mbstring.c:
+      fixed compiler warning.
+
+2006-03-26  Derick Rethans  <php@derickrethans.nl>
+
+    * 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  <andrei@gravitonic.com>
+
+    * 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  <antony@zend.com>
+
+    * 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  <sara@golemon.com>
 
     * main/streams/streams.c:
index 4fcfcb3aa4373d5458dfee817a015893b7c28871..e03f5b00cfcb9ccc5eea1ae2e6f696ca1ebe2166 100644 (file)
@@ -1,3 +1,22 @@
+2006-03-26  Andrei Zmievski  <andrei@gravitonic.com>
+
+    * 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  <andrei@gravitonic.com>
 
     * zend_unicode.c: