Re: [PHP-DEV] [RFC] Starting 5.3

2008-06-25 Thread Pierre Joye
Hi Lester, Milan, On Wed, Jun 25, 2008 at 7:35 AM, Lester Caine [EMAIL PROTECTED] wrote: Not a lot of use as it does not give details of how to JOIN php.internals.win I sent the email to subscribe, but the commands are the same for all php lists: list-name[EMAIL PROTECTED] or

Re: [PHP-DEV] [RFC] Starting 5.3

2008-06-25 Thread Lester Caine
Pierre Joye wrote: Hi Lester, Milan, On Wed, Jun 25, 2008 at 7:35 AM, Lester Caine [EMAIL PROTECTED] wrote: Not a lot of use as it does not give details of how to JOIN php.internals.win I sent the email to subscribe, but the commands are the same for all php lists: list-name[EMAIL

Re: [PHP-DEV] [RFC] Starting 5.3

2008-06-25 Thread Milan Babuskov
Ryan Panning wrote: Are you looking for this? http://news.php.net/ Been there. Don't see any way to subscribe to internals-win, so I can post to it. Or am I missing something? Thanks, -- Milan Babuskov http://www.guacosoft.com -- PHP Internals - PHP Runtime Development Mailing List To

Re: [PHP-DEV] [PATCH] [RFC] Closures and lambda functions in PHP

2008-06-25 Thread Sebastian Bergmann
Lukas Kahwe Smith wrote: I am very sure we will see a 5.4. There is also the traits patch that is more or less ready And the switch from bison to lemon is also on the agenda for PHP 5.4. -- Sebastian Bergmann http://sebastian-bergmann.de/ GnuPG Key: 0xB85B5D69 /

[PHP-DEV] PHP todo items

2008-06-25 Thread Lukas Kahwe Smith
Hi, The recent comments about what to expect in 5.4 inspired me to go and update the 5.2 and 5.3 todo pages: http://wiki.php.net/todo/php52 http://wiki.php.net/todo/php53 I guess a fair number of items on the 5.3 todo list are already taken care of. Please let me know or update the wiki

Re: [PHP-DEV] PHP todo items

2008-06-25 Thread Jani Taskinen
phar == done, flex - re2c == done.. ? --Jani Lukas Kahwe Smith wrote: Hi, The recent comments about what to expect in 5.4 inspired me to go and update the 5.2 and 5.3 todo pages: http://wiki.php.net/todo/php52 http://wiki.php.net/todo/php53 I guess a fair number of items on the 5.3 todo

[PHP-DEV] GSoC Bugtracker

2008-06-25 Thread Barry Carlyon
Greetings all, For the basic, basic, basic bug tracker, (none of this pear/pecl shit, *jokes*) I currently have the following form: http://gsoc.barrycarlyon.servegame.org/report/ Do we need anymore basic, basic, basic bug trackers fields? Do we actually need the OS field, someone (I forget

Re: [PHP-DEV] GSoC Bugtracker

2008-06-25 Thread Scott MacVicar
We'll end up asking for OS after we can't reproduce it on Linux. OS is definately needed. Scott Richard Quadling wrote: 2008/6/25 Barry Carlyon [EMAIL PROTECTED]: Greetings all, For the basic, basic, basic bug tracker, (none of this pear/pecl shit, *jokes*) I currently have the following

Re: [PHP-DEV] GSoC Bugtracker

2008-06-25 Thread Steph Fox
Hi Barry, Do we need anymore basic, basic, basic bug trackers fields? Do we actually need the OS field, someone (I forget who) suggested we don't need it. We definitely need OS. In fact what would be really nice would be if we could ask the user to upload a copy of their phpinfo() output

Re: [PHP-DEV] GSoC Bugtracker

2008-06-25 Thread Daniel Brown
On Wed, Jun 25, 2008 at 7:31 AM, Richard Quadling [EMAIL PROTECTED] wrote: If not having the OS option means more windows bugs will be fixed as the core-devs won't know if it is *nix or windows, then don't ask for the OS. (He he). Please, Rich. Even Microsoft isn't capable of that! --

Re: [PHP-DEV] Overloading

2008-06-25 Thread Lukas Kahwe Smith
On 20.06.2008, at 16:28, Marcus Boerger wrote: Hello Mark, we discussed overloading a hell lot of times an dthe conclusionj always and every single time has been NO. It would mean a large slowdown for every single PHP application out there and it is not really that much halpful. In fact

RE: [PHP-DEV] Overloading

2008-06-25 Thread Tinsley, Mark
Thank you Lukas. Mark Tinsley Developer Dallas Airmotive (214) 353-6739 [EMAIL PROTECTED] -Original Message- From: Lukas Kahwe Smith [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2008 9:51 AM To: Marcus Boerger Cc: Tinsley, Mark; internals@lists.php.net Subject: Re: [PHP-DEV]

Re: [PHP-DEV] simple solution to another namespace conundrum?

2008-06-25 Thread Greg Beaver
Derick Rethans wrote: On Fri, 20 Jun 2008, Gregory Beaver wrote: The user is obviously intentionally creating a DateTime class, and doesn't care about the internal classname in this script. The attached patch against PHP_5_3 would fix the issue by eliminating the check for conflict with

[PHP-DEV] Using Network functions.

2008-06-25 Thread Mangol Smith
Hey guys, I just started hacking PHP. I want to use Netwok Functions. So far from the source code browsing I learnt that In PHP *obvious solution is not the right answer.* The obvious solution for implementing HTTP methods or any Network functions for that matter, is using socket(), connect(),

[PHP-DEV] Re: cvs: php-src(PHP_5_2) / NEWS /main main.c php_ticks.c php_ticks.h

2008-06-25 Thread Sebastian Bergmann
Dmitry Stogov schrieb: dmitry Wed Jun 25 12:18:22 2008 UTC Modified files: (Branch: PHP_5_2) /php-src NEWS /php-src/main main.c php_ticks.c php_ticks.h Log: Fixed bug #45352 (Segmentation fault because of tick function What ever happened to the plan to

[PHP-DEV] Re: Using Network functions.

2008-06-25 Thread Mangol Smith
Hey guys, someone suggested me to have a look at libcURL. I did, but its very complex. All I needed is lowlevel/network wrappers. like emalloc() pemalloc() as wrapper on malloc(). There might be some wrappers (platform independent used in php source code) which I can use to make a connection

Re: [PHP-DEV] cleaning up the functions - any volunteers?

2008-06-25 Thread Cristian Rodríguez
Stanislav Malyshev escribió: Hi! While we nearing the release of 5.3 (hopefully?), there are many functions in the PHP code which still use old parameter parsing API (zend_get_parameters_ex) instead of the new one (zend_parse_parameters). P.S. if some genius would invent a script to

Re: [PHP-DEV] cleaning up the functions - any volunteers?

2008-06-25 Thread Stanislav Malyshev
Hi! The attached patch may also help both core and PECL extensions, emiting a deprecation compile warning when those functions are used. I think it's a good idea. Any objections from anybody? -- Stanislav Malyshev, Zend Software Architect [EMAIL PROTECTED] http://www.zend.com/

Re: [PHP-DEV] Re: Using Network functions.

2008-06-25 Thread Larry Garfield
On Wednesday 25 June 2008 6:22:22 pm Mangol Smith wrote: Hey guys, someone suggested me to have a look at libcURL. I did, but its very complex. All I needed is lowlevel/network wrappers. like emalloc() pemalloc() as wrapper on malloc(). There might be some wrappers (platform independent

Re: [PHP-DEV] simple solution to another namespace conundrum?

2008-06-25 Thread Jochem Maas
Greg Beaver schreef: Derick Rethans wrote: .. The real WTF comes into play when you have a static method that resolves to the same name as a namespaced function, something that absolutely must be worked out prior to PHP 5.3's release. I know a few ideas are percolating about on this one

Re: [PHP-DEV] Re: Using Network functions.

2008-06-25 Thread Mangol Smith
Hi, On Thu, Jun 26, 2008 at 8:55 AM, Jevon Wright [EMAIL PROTECTED] wrote: If you want to POST or do weird HTTP stuff, try the Curl extension. (Multiple platforms) Also look into PEAR, they have some socket stuff as well I think, as well as lots of other extensions that implement other

Re: [PHP-DEV] cleaning up the functions - any volunteers?

2008-06-25 Thread Pierre Joye
Hi Christian, On Thu, Jun 26, 2008 at 2:12 AM, Cristian Rodríguez [EMAIL PROTECTED] wrote: Stanislav Malyshev escribió: Hi! While we nearing the release of 5.3 (hopefully?), there are many functions in the PHP code which still use old parameter parsing API (zend_get_parameters_ex) instead