Re: [PHP-DEV] Namespaces in PHP 6 - ++$take

2006-11-17 Thread Ron Korving
Why not add another bug-status called incomplete or something, and append a standard message saying Please study the bug-reporting guidelines in order to write complete and accurate bug reports.? I think this tiny addition to tagging something bogus would make a lot of bug reporters happier

[PHP-DEV] Re: [PATCH] For Bug #38770

2006-11-17 Thread David Soria Parra
Are there no opinions about that? It's just that if u pack an integer u get an integer and are not influenced by the convert to the long as it is stored in a zval struct. It's just about handling an int as an int (which is also 4byte on x64) and avoid problems if the long is bigger than the int

Re: [PHP-DEV] zend_u_strtod() 400% speed up

2006-11-17 Thread Antony Dovgal
Okay, I got some test results. First of all, both patches seem to be fine, they both fix several failed tests: Zend/tests/zend_strtod.phpt ext/standard/tests/array/range.phpt ext/standard/tests/general_functions/001.phpt ext/standard/tests/math/abs.phpt ext/standard/tests/math/bug30069.phpt Now

Re: [PHP-DEV] Namespaces in PHP 6 - ++$take

2006-11-17 Thread Ilia Alshanetsky
Majority of the bogus bugs are truly bogus, I see no reason to change a perfectly valid term used to describe bugs. On 17-Nov-06, at 2:38 AM, Ron Korving wrote: Why not add another bug-status called incomplete or something, and append a standard message saying Please study the

Re: [PHP-DEV] zend_u_strtod() 400% speed up

2006-11-17 Thread Matt Wilmas
Hi Antony! Wow, lots of testing ya did there. :-) Nice. But, just wanted to mention that Matt's patch is the one I did back in Aug. Did you see my last message [1] the other day with a new version that only checks for ASCII chars, doesn't do conversion from Unicode, etc.?

Re: [PHP-DEV] zend_u_strtod() 400% speed up

2006-11-17 Thread Antony Dovgal
On 11/17/2006 06:26 PM, Matt Wilmas wrote: Hi Antony! Wow, lots of testing ya did there. :-) Nice. But, just wanted to mention that Matt's patch is the one I did back in Aug. Did you see my last message [1] the other day with a new version that only checks for ASCII chars, doesn't do

Re: [PHP-DEV] zend_u_strtod() 400% speed up

2006-11-17 Thread Matt Wilmas
Antony, Sure, sorry. :-) I thought the straight code would be easier for you guys to simply copy to a local file or such to test, but I don't really know anything about it. :-P http://realplain.com/php/zend_u_strtod-v2.diff Matt - Original Message - From: Antony Dovgal Sent: Friday,

Re: [PHP-DEV] Namespaces in PHP 6 - ++$take

2006-11-17 Thread Johannes Schlüter
Hi, that's the commonly used (and existing) Feedback status, but often this won't lead to the required feedback. johannes On Fri, 2006-11-17 at 08:38 +0100, Ron Korving wrote: Why not add another bug-status called incomplete or something, and append a standard message saying Please study the

[PHP-DEV] Re: [PATCH] For Bug #38770

2006-11-17 Thread David Soria Parra
I also attached the patch against PHP_5_2 CVS Index: ext/standard/pack.c === RCS file: /repository/php-src/ext/standard/pack.c,v retrieving revision 1.57.2.5 diff -u -r1.57.2.5 pack.c --- ext/standard/pack.c 26 Feb 2006 10:49:50

Re: [PHP-DEV] Enable authorizer-feature in PDO_SQLITE

2006-11-17 Thread Mario Wolff
2006/11/16, Wez Furlong [EMAIL PROTECTED]: I think it would be better to pass in the pdo_dbh_t as the autharg to the C level callback and then use that to determine if any of the expensive work needs to be done in the callback. Saves the sqlite_set_authorizer recall in SetAuthorizer, Looks