[PHP-CVS] cvs: php-src / README.PHP4-TO-PHP5-THIN-CHANGES

2004-03-28 Thread Andrey Hristov
andrey Sun Mar 28 04:30:22 2004 EDT Modified files: /php-srcREADME.PHP4-TO-PHP5-THIN-CHANGES Log: - Fixed the explanation and example about "classes must be declared before used". - Added new entry about get_class() (Thanks Lukas for reminding (toStudlyCapO

[PHP-CVS] cvs: CVSROOT / avail

2004-03-28 Thread Sascha Schumann
sas Sun Mar 28 07:07:16 2004 EDT Modified files: /CVSROOTavail Log: perm_liveuser / peardoc karma for dufuz http://cvs.php.net/diff.php/CVSROOT/avail?r1=1.840&r2=1.841&ty=u Index: CVSROOT/avail diff -u CVSROOT/avail:1.840 CVSROOT/avail:1.841 --- CVSRO

[PHP-CVS] cvs: php-src /tests/classes tostring.phpt

2004-03-28 Thread Marcus Boerger
helly Sun Mar 28 09:09:51 2004 EDT Modified files: /php-src/tests/classes tostring.phpt Log: Adapt ecpectations to 5.0 reality http://cvs.php.net/diff.php/php-src/tests/classes/tostring.phpt?r1=1.4&r2=1.5&ty=u Index: php-src/tests/classes/tostring.phpt di

[PHP-CVS] cvs: php-src / run-tests.php

2004-03-28 Thread Marcus Boerger
helly Sun Mar 28 09:12:15 2004 EDT Modified files: /php-srcrun-tests.php Log: Show progress http://cvs.php.net/diff.php/php-src/run-tests.php?r1=1.189&r2=1.190&ty=u Index: php-src/run-tests.php diff -u php-src/run-tests.php:1.189 php-src/run-tests.php:1.19

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

2004-03-28 Thread Marcus Boerger
helly Sun Mar 28 10:35:01 2004 EDT Modified files: /php-src/ext/xslxsltprocessor.c Log: Fix XSL (Rob/Marcus) http://cvs.php.net/diff.php/php-src/ext/xsl/xsltprocessor.c?r1=1.25&r2=1.26&ty=u Index: php-src/ext/xsl/xsltprocessor.c diff -u php-src/ext/xsl/xsl

Re: [PHP-CVS] cvs: php-src / README.PHP4-TO-PHP5-THIN-CHANGES

2004-03-28 Thread Derick Rethans
On Sun, 28 Mar 2004, Andrey Hristov wrote: > andreySun Mar 28 04:30:22 2004 EDT > > Modified files: > /php-src README.PHP4-TO-PHP5-THIN-CHANGES > Log: > - Fixed the explanation and example about "classes must be declared before used". > - Added new entry about get_clas

[PHP-CVS] cvs: php-src(PHP_4_3) / NEWS /ext/session session.c /ext/standard datetime.c head.c /ext/standard/tests/time bug27719.phpt

2004-03-28 Thread Rasmus Lerdorf
rasmus Sun Mar 28 09:57:32 2004 EDT Modified files: (Branch: PHP_4_3) /php-srcNEWS /php-src/ext/sessionsession.c /php-src/ext/standard datetime.c head.c /php-src/ext/standard/tests/timebug27719.phpt Log: - Merge whitespace and t

[PHP-CVS] cvs: php-src / NEWS /ext/standard datetime.c /ext/standard/tests/time bug27719.phpt

2004-03-28 Thread Rasmus Lerdorf
rasmus Sun Mar 28 10:03:56 2004 EDT Modified files: /php-srcNEWS /php-src/ext/standard datetime.c /php-src/ext/standard/tests/timebug27719.phpt Log: MFB test case for bug #27719 and improve comments in this tricky DST code http://cvs.

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

2004-03-28 Thread Marcus Boerger
helly Sun Mar 28 12:04:12 2004 EDT Modified files: /php-src/ext/splspl_iterators.c Log: Add agrument type info http://cvs.php.net/diff.php/php-src/ext/spl/spl_iterators.c?r1=1.28&r2=1.29&ty=u Index: php-src/ext/spl/spl_iterators.c diff -u php-src/ext/spl/s

[PHP-CVS] cvs: php-src /ext/simplexml CREDITS simplexml.c /ext/sqlite CREDITS sqlite.c /ext/standard credits_ext.h

2004-03-28 Thread Marcus Boerger
helly Sun Mar 28 15:27:18 2004 EDT Modified files: /php-src/ext/standard credits_ext.h /php-src/ext/sqlite CREDITS sqlite.c /php-src/ext/simplexml CREDITS simplexml.c Log: Fix writing of SQLite and SimpleXMl extension and add Rob to the credi

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

2004-03-28 Thread Marcus Boerger
helly Sun Mar 28 16:46:44 2004 EDT Modified files: /php-src/ext/standard basic_functions.c Log: Improve portability (idea by Ard) http://cvs.php.net/diff.php/php-src/ext/standard/basic_functions.c?r1=1.659&r2=1.660&ty=u Index: php-src/ext/standard/bas

[PHP-CVS] cvs: php-src(PHP_4_3) /ext/standard basic_functions.c

2004-03-28 Thread Marcus Boerger
helly Sun Mar 28 16:50:01 2004 EDT Modified files: (Branch: PHP_4_3) /php-src/ext/standard basic_functions.c Log: MFH: Improve portability (idea by Ard) http://cvs.php.net/diff.php/php-src/ext/standard/basic_functions.c?r1=1.543.2.33&r2=1.543.2.34&ty=u In

Re: [PHP-CVS] cvs: php-src /ext/standard basic_functions.c

2004-03-28 Thread Andi Gutmans
Not sure on what platforms you expect the last #else to be reached but it would raise a sigfloatingpoint on FreeBSD. Dividing by zero does not seem like a good idea. Andi At 09:46 PM 3/28/2004 +, Marcus Boerger wrote: #include "php_streams.h" @@ -957,9 +957,10 @@ ((php_uint32*)&val

Re: [PHP-CVS] cvs: php-src /ext/standard basic_functions.c

2004-03-28 Thread Marcus Boerger
Hello Andi, it's just a fall back that for example works on intel and alpha machines. FreeBSD should use the direct setting (1st #if) on intel and the atof() way for other cpus. The problem here is i cannot check all systems but i could offer three solutions so far of which the first two work on m

Re: [PHP-CVS] cvs: php-src /ext/standard basic_functions.c

2004-03-28 Thread Marcus Boerger
Hello Andi, i updated the source on a mips machine (thx Joerg) and here is the relevant configure part: checking for fpclass... yes checking for isinf... no checking for isnan... yes checking whether atof() accepts NAN... yes checking whether atof() accepts INF... no that means INF will be handle

[PHP-CVS] cvs: php-src / run-tests.php

2004-03-28 Thread Marcus Boerger
helly Sun Mar 28 18:04:53 2004 EDT Modified files: /php-srcrun-tests.php Log: Add ability to pass -n to the executed php http://cvs.php.net/diff.php/php-src/run-tests.php?r1=1.190&r2=1.191&ty=u Index: php-src/run-tests.php diff -u php-src/run-tests.php:1.1

[PHP-CVS] cvs: php-src(PHP_4_3) / NEWS /ext/xslt config.m4

2004-03-28 Thread Ilia Alshanetsky
iliaa Sun Mar 28 19:09:34 2004 EDT Modified files: (Branch: PHP_4_3) /php-srcNEWS /php-src/ext/xslt config.m4 Log: Fixed bug #27732 (Fixed compilation bug inside php_sab_info.h). http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.612&r2=1.1247.2

[PHP-CVS] cvs: php-src(PHP_4_3) /ext/standard datetime.h

2004-03-28 Thread Ilia Alshanetsky
iliaa Sun Mar 28 19:27:17 2004 EDT Modified files: (Branch: PHP_4_3) /php-src/ext/standard datetime.h Log: Fixed build. http://cvs.php.net/diff.php/php-src/ext/standard/datetime.h?r1=1.10.8.1&r2=1.10.8.2&ty=u Index: php-src/ext/standard/datetime.h diff

[PHP-CVS] cvs: php-src /ext/xml/tests bug26614.phpt

2004-03-28 Thread Hartmut Holzgraefe
hholzgraMon Mar 29 00:56:18 2004 EDT Modified files: /php-src/ext/xml/tests bug26614.phpt Log: Test updated to test for additional libxml2/expat inconsistencies http://cvs.php.net/diff.php/php-src/ext/xml/tests/bug26614.phpt?r1=1.3&r2=1.4&ty=u In

[PHP-CVS] cvs: php-src / run-tests.php

2004-03-28 Thread Jan Lehnardt
jan Mon Mar 29 02:49:32 2004 EDT Modified files: /php-srcrun-tests.php Log: - be more verbose http://cvs.php.net/diff.php/php-src/run-tests.php?r1=1.191&r2=1.192&ty=u Index: php-src/run-tests.php diff -u php-src/run-tests.php:1.191 php-src/run-tests.