[PHP-CVS-DAILY] cvs: php-src / ChangeLog

2007-06-13 Thread changelog
changelog Thu Jun 14 01:31:11 2007 UTC Modified files: /php-srcChangeLog Log: ChangeLog update http://cvs.php.net/viewvc.cgi/php-src/ChangeLog?r1=1.2718r2=1.2719diff_format=u Index: php-src/ChangeLog diff -u php-src/ChangeLog:1.2718

[PHP-CVS-DAILY] cvs: ZendEngine2 / ChangeLog

2007-06-13 Thread changelog
changelog Thu Jun 14 01:31:13 2007 UTC Modified files: /ZendEngine2ChangeLog Log: ChangeLog update http://cvs.php.net/viewvc.cgi/ZendEngine2/ChangeLog?r1=1.1129r2=1.1130diff_format=u Index: ZendEngine2/ChangeLog diff -u

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/simplexml simplexml.c /ext/simplexml/tests 027.phpt bug35785.phpt bug41582.phpt

2007-06-13 Thread Dmitry Stogov
dmitry Wed Jun 13 13:38:26 2007 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/simplexml simplexml.c /php-src/ext/simplexml/tests027.phpt bug35785.phpt bug41582.phpt Log: Fixed wrong fix for bug #41582

[PHP-CVS] cvs: php-src /ext/simplexml simplexml.c /ext/simplexml/tests 027.phpt bug35785.phpt bug41582.phpt

2007-06-13 Thread Dmitry Stogov
dmitry Wed Jun 13 13:39:00 2007 UTC Modified files: /php-src/ext/simplexml simplexml.c /php-src/ext/simplexml/tests027.phpt bug35785.phpt bug41582.phpt Log: Fixed wrong fic for bug #41582

[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /ext/json JSON_parser.c json.c /ext/json/tests pass001.1.phpt

2007-06-13 Thread Ilia Alshanetsky
iliaa Wed Jun 13 17:07:59 2007 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/json json.c JSON_parser.c /php-src/ext/json/tests pass001.1.phpt /php-srcNEWS Log: Fixed bug #41673 (json_encode breaks large numbers in arrays).

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

2007-06-13 Thread Ilia Alshanetsky
iliaa Wed Jun 13 17:10:06 2007 UTC Modified files: /php-src/ext/json json.c JSON_parser.c Log: MFB: Fixed bug #41673 (json_encode breaks large numbers in arrays). http://cvs.php.net/viewvc.cgi/php-src/ext/json/json.c?r1=1.26r2=1.27diff_format=u Index:

Re: [PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /ext/json JSON_parser.c json.c /ext/json/tests pass001.1.phpt

2007-06-13 Thread Stanislav Malyshev
+ double d = zend_strtod(buf-c, NULL); + if (d LONG_MAX) { Shouldn't it be d LONG_MAX || d -LONG_MAX? -int(4) +%s(4) If it's 32-bit it's always float, no chance to get int(4) from PHP, so why %s? -- Stanislav Malyshev, Zend

Re: [PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /ext/json JSON_parser.c json.c /ext/json/tests pass001.1.phpt

2007-06-13 Thread Ilia Alshanetsky
The test is universal, on 64 bit machines you will get int because PHP int is actually a long. The -LONG_MAX is a good point though. On 13-Jun-07, at 1:11 PM, Stanislav Malyshev wrote: + double d = zend_strtod(buf-c, NULL); + if (d LONG_MAX) { Shouldn't it be d LONG_MAX ||

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

2007-06-13 Thread Ilia Alshanetsky
iliaa Wed Jun 13 17:56:41 2007 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/json JSON_parser.c Log: Handle very small longs via double http://cvs.php.net/viewvc.cgi/php-src/ext/json/JSON_parser.c?r1=1.1.2.11r2=1.1.2.12diff_format=u Index:

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

2007-06-13 Thread Ilia Alshanetsky
iliaa Wed Jun 13 17:57:10 2007 UTC Modified files: /php-src/ext/json JSON_parser.c Log: MFB: Handle very small longs via double http://cvs.php.net/viewvc.cgi/php-src/ext/json/JSON_parser.c?r1=1.14r2=1.15diff_format=u Index: php-src/ext/json/JSON_parser.c

Re: [PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /ext/json JSON_parser.c json.c /ext/json/tests pass001.1.phpt

2007-06-13 Thread Stanislav Malyshev
The test is universal That's why it has this: if (PHP_INT_SIZE != 4) die(skip this test is for 32bit platform only); at the beginning, I guess? ;) -- Stanislav Malyshev, Zend Products Engineer [EMAIL PROTECTED] http://www.zend.com/ -- PHP CVS Mailing List (http://www.php.net/) To

Re: [PHP-CVS] cvs: php-src(PHP_5_2) / NEWS /ext/json JSON_parser.c json.c /ext/json/tests pass001.1.phpt

2007-06-13 Thread Ilia Alshanetsky
There is no reason for it to be such, I will probably merge with the separate 64bit test. On 13-Jun-07, at 1:57 PM, Stanislav Malyshev wrote: The test is universal That's why it has this: if (PHP_INT_SIZE != 4) die(skip this test is for 32bit platform only); at the beginning, I

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/standard/tests/file copy_basic.phpt copy_error.phpt file_get_contents_file_put_contents_variation.phpt filegroup_basic.phpt filegroup_error.phpt fileowner_basic.ph

2007-06-13 Thread Raghubansh Kumar
kraghubaWed Jun 13 22:38:49 2007 UTC Added files: (Branch: PHP_5_2) /php-src/ext/standard/tests/filefwrite_variation-win32.phpt fwrite_basic-win32.phpt filegroup_basic.phpt