[PHP-CVS] cvs: php-src /ext/unicode transform.c

2006-06-15 Thread Dmitry Stogov
dmitry Thu Jun 15 10:03:52 2006 UTC Modified files: /php-src/ext/unicodetransform.c Log: Fixed ZTS build http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/transform.c?r1=1.1r2=1.2diff_format=u Index: php-src/ext/unicode/transform.c diff -u

[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS

2006-06-15 Thread Jani Taskinen
sniper Thu Jun 15 13:07:37 2006 UTC Modified files: (Branch: PHP_5_2) /php-srcNEWS Log: fix news. gaps left intentionally.. http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.547.2.84r2=1.2027.2.547.2.85diff_format=u Index: php-src/NEWS diff -u

[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /main php.h

2006-06-15 Thread Dmitry Stogov
dmitry Thu Jun 15 14:06:35 2006 UTC Modified files: (Branch: PHP_5_2) /php-srcNEWS /php-src/main php.h Log: Added automatic module globals management

[PHP-CVS] cvs: php-src /ext/curl interface.c /ext/dbase dbase.c /ext/gd gd.c

2006-06-15 Thread Hannes Magnusson
bjori Thu Jun 15 15:31:39 2006 UTC Modified files: /php-src/ext/curl interface.c /php-src/ext/dbase dbase.c /php-src/ext/gd gd.c Log: Revert array type hinting

[PHP-CVS] cvs: php-src /ext/pcre php_pcre.c /ext/pcre/tests bug37800.phpt

2006-06-15 Thread Nuno Lopes
nlopess Thu Jun 15 15:35:50 2006 UTC Modified files: /php-src/ext/pcre php_pcre.c /php-src/ext/pcre/tests bug37800.phpt Log: MFB: fix bug #37800 http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/php_pcre.c?r1=1.185r2=1.186diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/mbstring mbstring.c

2006-06-15 Thread Seiji Masugata
masugataThu Jun 15 15:44:05 2006 UTC Modified files: /php-src/ext/mbstring mbstring.c Log: changed GINIT definition. http://cvs.php.net/viewcvs.cgi/php-src/ext/mbstring/mbstring.c?r1=1.257r2=1.258diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/curl interface.c /ext/dbase dbase.c /ext/gd gd.c

2006-06-15 Thread Hannes Magnusson
bjori Thu Jun 15 16:25:12 2006 UTC Modified files: /php-src/ext/dbase dbase.c /php-src/ext/gd gd.c /php-src/ext/curl interface.c Log: Add array type hinting Remove unnecessary array checkes

[PHP-CVS] cvs: php-src /ext/unicode php_transform.h transform.c unicode.c

2006-06-15 Thread Andrei Zmievski
andrei Thu Jun 15 17:37:48 2006 UTC Modified files: /php-src/ext/unicodephp_transform.h transform.c unicode.c Log: Rename to str_transliterate(). http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_transform.h?r1=1.1r2=1.2diff_format=u Index:

Re: [PHP-CVS] cvs: php-src /ext/unicode php_transform.h transform.c unicode.c

2006-06-15 Thread Andi Gutmans
Thanks! At 10:37 AM 6/15/2006, Andrei Zmievski wrote: andrei Thu Jun 15 17:37:48 2006 UTC Modified files: /php-src/ext/unicodephp_transform.h transform.c unicode.c Log: Rename to str_transliterate().

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/pcre php_pcre.c /ext/pcre/tests bug37800.phpt

2006-06-15 Thread Andrei Zmievski
What's your rationale for this fix? What sort of regression happened? -Andrei On Jun 15, 2006, at 11:33 AM, Nuno Lopes wrote: nlopess Thu Jun 15 15:33:25 2006 UTC Added files: (Branch: PHP_5_2) /php-src/ext/pcre/tests bug37800.phpt Modified files:

[PHP-CVS] cvs: php-src /ext/soap php_encoding.c

2006-06-15 Thread Rasmus Lerdorf
rasmus Thu Jun 15 18:03:31 2006 UTC Modified files: /php-src/ext/soap php_encoding.c Log: I don't think the call to xmlNodeSetContentLen() is needed here and it is causing performance problems because it tries to parse the blob and create a subtree.

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/pcre php_pcre.c /ext/pcre/tests bug37800.phpt

2006-06-15 Thread Andrei Zmievski
Okay. -Andrei On Jun 15, 2006, at 2:01 PM, Nuno Lopes wrote: What's your rationale for this fix? What sort of regression happened? OK, so let me explain: preg_replace($regex, $replace, $str, $limit); Short answer: It was failling if $limit $number_of_matches. How this bug was introduced?

Re: [PHP-CVS] cvs: php-src /ext/unicode php_transform.h transform.c unicode.c

2006-06-15 Thread Derick Rethans
On Thu, 15 Jun 2006, Andrei Zmievski wrote: andreiThu Jun 15 17:37:48 2006 UTC Modified files: /php-src/ext/unicode php_transform.h transform.c unicode.c Log: Rename to str_transliterate(). I think that's actually a pretty horrible name... And

RE: [PHP-CVS] cvs: php-src /ext/soap php_encoding.c

2006-06-15 Thread Dmitry Stogov
Hi Rasmus, Will your patch support strings with special characters ('', '', '')? Thanks. Dmitry. -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 10:04 PM To: php-cvs@lists.php.net Subject: [PHP-CVS] cvs: php-src /ext/soap

Re: [PHP-CVS] cvs: php-src /ext/soap php_encoding.c

2006-06-15 Thread Rasmus Lerdorf
Yes, those chars is exactly what was causing the performance problem actually. xmlNewTextLen() will call the internal libxml entity encoder, but it won't try to allocate each entity for use by the subtree. It was this entity allocation code in xmlNodeSetContentLen that was slowing

Re: [PHP-CVS] cvs: php-src /ext/soap php_encoding.c

2006-06-15 Thread Rob Richards
Just to clarify that. xmlNewTextLen will contain the raw text and those 3 characters are escaped during serialization. xmlNodeSetContentLen, on the other hand, since it was being called from the scope of an element, was building a subtree of text and entity nodes. With large amounts of data

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/soap php_encoding.c

2006-06-15 Thread Rasmus Lerdorf
rasmus Thu Jun 15 20:49:05 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/soap php_encoding.c Log: MFH: I don't think the call to xmlNodeSetContentLen() is needed here and it is causing performance problems because it tries to parse the blob and

[PHP-CVS] cvs: php-src /ext/soap php_encoding.c

2006-06-15 Thread Rasmus Lerdorf
rasmus Thu Jun 15 22:44:55 2006 UTC Modified files: /php-src/ext/soap php_encoding.c Log: Optimize the other string conversion functions here to just create raw text nodes.

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/soap php_encoding.c

2006-06-15 Thread Rasmus Lerdorf
rasmus Thu Jun 15 22:45:30 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/soap php_encoding.c Log: MFH: Optimize the other string conversion functions here to just create raw text nodes.

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/gmp gmp.c

2006-06-15 Thread Jani Taskinen
sniper Fri Jun 16 00:14:35 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/gmpgmp.c Log: Fix build. (gmp_nextprime() was added in PHP 6!) http://cvs.php.net/viewcvs.cgi/php-src/ext/gmp/gmp.c?r1=1.49.2.2.2.2r2=1.49.2.2.2.3diff_format=u Index:

[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /win32 crypt_win32.c crypt_win32.h

2006-06-15 Thread Dmitry Stogov
dmitry Fri Jun 16 05:57:18 2006 UTC Modified files: (Branch: PHP_5_2) /php-srcNEWS /php-src/win32 crypt_win32.c crypt_win32.h Log: New crypt() implementation for win32 which is about 10 times faster and has more friendly license.

[PHP-CVS] cvs: php-src /win32 crypt_win32.c crypt_win32.h

2006-06-15 Thread Dmitry Stogov
dmitry Fri Jun 16 05:57:42 2006 UTC Modified files: /php-src/win32 crypt_win32.c crypt_win32.h Log: New crypt() implementation for win32 which is about 10 times faster and has more friendly license.