Re: [PHP-DEV] Restructuring the QA team

2008-11-03 Thread Ronald Chmara
On Oct 31, 2008, at 5:16 AM, Sebastian Bergmann wrote: Hannes Magnusson schrieb: Speaking of "QA people", how about crediting those who are actually working on QA and removing the names who haven't been around for years (I don't even recognized most of those names)? How do you recommend

[PHP-DEV] Re: [PHP-QA] Re: [PHP-DEV] Restructuring the QA team

2008-11-03 Thread Pierre Joye
hi, On Mon, Nov 3, 2008 at 9:08 AM, Ronald Chmara <[EMAIL PROTECTED]> wrote: > > On Oct 31, 2008, at 5:16 AM, Sebastian Bergmann wrote: > >> Hannes Magnusson schrieb: >>> >>> Speaking of "QA people", how about crediting those who are actually >>> working on QA and removing the names who haven't be

[PHP-DEV] PHP 5 Bug Summary Report

2008-11-03 Thread internals
PHP 5 Bug Database summary - http://bugs.php.net/ Num Status Summary (1252 total -- which includes 726 feature requests) ===[*General Issues]== 42294 To be documented round will not use PHP_ROUND_FUZZ on 64bit CPUs

[PHP-DEV] Assigned bugs with ancient PHP versions

2008-11-03 Thread Jani Taskinen
NOTE: Sending again since nobody bothered to reply.. Ilia, Derick, Marcus, Pierre and all others with multiple assigned bug reports: PLEASE update the assign status by either removing it and commenting you're the wrong person / you're not going to touch the issue / don't care / whatever so t

[PHP-DEV] [RFC] Iteration tools

2008-11-03 Thread Ionut Gabriel Stan
Hello everybody, As a result of the advice given in the thread "array_key_exists BC break", I have written an RFC concerning some higher order functions that, I believe, could a helpful addition to the language. Please note that I'm a userland developer and have no clue about PHP internals s

Re: [PHP-DEV] [RFC] Iteration tools

2008-11-03 Thread Marcus Boerger
Hello Ionut, some remarks about your proposal: 1) You can turn any array into a Traversable using (Recursive)ArrayIterator. Though this solution is still slow. The issue is that the c-level code needs to verify the current pointer every single time it uses it and that means traversing the array

[PHP-DEV] PHP 6 Bug Summary Report

2008-11-03 Thread internals
PHP 6 Bug Database summary - http://bugs.php.net/ Num Status Summary (67 total -- which includes 32 feature requests) ===[*General Issues]== 26771 Suspended register_tick_funtions crash under threaded webservers ===

[PHP-DEV] [PATCH]: Fix for endless loop in PDOStatement::debugDumpParams()

2008-11-03 Thread Jonah H. Harris
While using PDOStatement::debugDumpParams, I noticed that it results in an endless loop because the hash table is not being traversed. As such, attached is a patch against php5 HEAD which adds zend_hash_move_forward_ex accordingly. -- Jonah H. Harris, Senior DBA myYearbook.com -- PHP Internals

Re: [PHP-DEV] [PATCH]: Fix for endless loop in PDOStatement::debugDumpParams()

2008-11-03 Thread Scott MacVicar
Jonah H. Harris wrote: > While using PDOStatement::debugDumpParams, I noticed that it results > in an endless loop because the hash table is not being traversed. As > such, attached is a patch against php5 HEAD which adds > zend_hash_move_forward_ex accordingly. > > Your patch was stripped, can

Re: [PHP-DEV] [PATCH]: Fix for endless loop in PDOStatement::debugDumpParams()

2008-11-03 Thread Lukas Kahwe Smith
On 03.11.2008, at 19:54, Scott MacVicar wrote: Jonah H. Harris wrote: While using PDOStatement::debugDumpParams, I noticed that it results in an endless loop because the hash table is not being traversed. As such, attached is a patch against php5 HEAD which adds zend_hash_move_forward_ex acco

Re: [PHP-DEV] Re: keeping traffic on this list manageable

2008-11-03 Thread Lukas Kahwe Smith
On 01.11.2008, at 18:17, Guilherme Blanco wrote: The idea is awesome, but it'll definately not work. Sorry. By creating an UG profile subscription will allow again everyone to subscribe "a group" when it's really just one person that wants to write something. So the UG idea will not work. th

Re: [PHP-DEV] [PATCH]: Fix for endless loop in PDOStatement::debugDumpParams()

2008-11-03 Thread Jonah H. Harris
On Mon, Nov 3, 2008 at 1:54 PM, Scott MacVicar <[EMAIL PROTECTED]> wrote: > Your patch was stripped, can you attach against with a .txt extension. Attached. -- Jonah H. Harris, Senior DBA myYearbook.com diff -cr php5/ext/pdo/pdo_stmt.c php5-pdofix/ext/pdo/pdo_stmt.c *** php5/ext/pdo/pdo_stmt.c

Re: [PHP-DEV] Re: keeping traffic on this list manageable

2008-11-03 Thread Igor Feghali
On Mon, Nov 3, 2008 at 5:36 PM, Lukas Kahwe Smith <[EMAIL PROTECTED]> wrote: > how many UGs are we expecting anyways? there are already 206 active local UGs registered in phpclasses.org[1], so I guess its the very least we should expect. regards, Igor. [1] http://www.phpclasses.org/browse/group/

Re: [PHP-DEV] [PATCH]: Fix for endless loop in PDOStatement::debugDumpParams()

2008-11-03 Thread Felipe Pena
Hi Jonah, Em Seg, 2008-11-03 às 14:44 -0500, Jonah H. Harris escreveu: > On Mon, Nov 3, 2008 at 1:54 PM, Scott MacVicar <[EMAIL PROTECTED]> wrote: > > Your patch was stripped, can you attach against with a .txt extension. > > Attached. > Thanks for the patch! Fixed in CVS. (5.2.7+) -- Regard