[PHP-DEV] Re: PHP 5.2.2 RC1 Schedule

2007-04-03 Thread Daniel Rozsnyó
Ilia Alshanetsky wrote: > If you have any major patches left over, please commit them as they will > no longer be accepted for 5.2.2. I have no CVS access, so please some of the skilled devs take my patch for multicast there. It only adds features (branches to case, some constants), it should not

Re: [PHP-DEV] PHP 5.2.2 RC1 Schedule

2007-04-03 Thread Andrey Hristov
Hi Ilia Ilia Alshanetsky wrote: > 5.2.2 release cycle is about to begin, with a first RC planned for this > Thursday. This is a stable branch, right? What to do with PHP5 development stuff which should not wait till PHP6? Looking at PHP4 one day there will be PHP 5_3 branch, for sure. > If you

[PHP-DEV] Unexpected usage of 'duplicate' flag in sapi_add_header_ex()

2007-04-03 Thread js
Hi gurus. Fiddling with PHP extensions I found the following code in 'sapi_add_header_ex()' in SAPI.c if (!duplicate) efree(header_line); which makes me wonder because the other day I read CODING_STANDARD included in PHP src which says "[1] Functions that are given pointers to resource

Re: [PHP-DEV] Unexpected usage of 'duplicate' flag in sapi_add_header_ex()

2007-04-03 Thread Antony Dovgal
On 04/03/2007 07:26 PM, js wrote: Hi gurus. Fiddling with PHP extensions I found the following code in 'sapi_add_header_ex()' in SAPI.c if (!duplicate) efree(header_line); which makes me wonder because the other day I read CODING_STANDARD included in PHP src which says "[1] Function

[PHP-DEV] CVS Account Request: hweejoo

2007-04-03 Thread Hwee-Joo Kam
documentation -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CVS Account Request: ezyang

2007-04-03 Thread Antony Dovgal
On 03/30/2007 12:52 AM, Edward Z. Yang wrote: Write documentation for the currently undocumented SVN PECL extension. If you're going to write the docs for PECL/svn and finish after that, I believe you don't really need a CVS account. Feel free to send the docs to me, I'll commit them. -- Wbr

Re: [PHP-DEV] CVS Account Request: caykoylu

2007-04-03 Thread Antony Dovgal
On 03/30/2007 10:55 PM, mustafa caykoylu wrote: PECL http://pecl.php.net/account-request.php - read the very first paragraph, please. -- Wbr, Antony Dovgal -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CVS Account Request: kraghuba

2007-04-03 Thread Antony Dovgal
On 03/29/2007 02:38 PM, Raghubansh Kumar wrote: I am writing new testcases to test PHP. To check-in new testcases to php.net i need the access. Send the tests to the php-qa list ([EMAIL PROTECTED]). -- Wbr, Antony Dovgal -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe,

Re: [PHP-DEV] CVS Account Request: hweejoo

2007-04-03 Thread Antony Dovgal
On 04/03/2007 11:48 PM, Hwee-Joo Kam wrote: documentation ? -- Wbr, Antony Dovgal -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] with-static-icu

2007-04-03 Thread Oliver Block
Hello, I've had some problems with compiling latest php (php-src) on WinXP. The configuration procedure is complaining about a missing icuuc.lib. If I've understood it right, you rely on icu with php6. Is there a compiled version downloadable somewhere? Regards, Oliver -- PHP Internals - PH

Re: [PHP-DEV] with-static-icu

2007-04-03 Thread Edin Kadribasic
Hi Oliver, The compiled ICU that is used for PHP6 is at: http://files.edin.dk/php/win32/icu-3.4-MSVC-6.0.zip The full set of libraries for PHP4-6 including ICU is: http://files.edin.dk/php/win32/zip.zip Edin On Apr 3, 2007, at 23:05, Oliver Block wrote: Hello, I've had some problems with

Re: [PHP-DEV] PHP 5.2.2 RC1 Schedule

2007-04-03 Thread Ilia Alshanetsky
On 3-Apr-07, at 4:00 AM, Andrey Hristov wrote: Hi Ilia Ilia Alshanetsky wrote: 5.2.2 release cycle is about to begin, with a first RC planned for this Thursday. This is a stable branch, right? Yes What to do with PHP5 development stuff which should not wait till PHP6? Development wo

[PHP-DEV] point of contact for security? and hi btw

2007-04-03 Thread sean finney
hey all, a quick introduction: i'm one of the folks maintaining the debian php4/php5 packages. we're currently on the cusp of cutting a new stable release "etch" (funny, i'd *swear* we've been saying that since december...), which will include the second-to-most-recent releases of 4.4.x and 5.2.

Re: [PHP-DEV] point of contact for security? and hi btw

2007-04-03 Thread Stanislav Malyshev
my first question: do you have a designated person/list for security related issues? it looks like i ended up becoming "point guy" for [EMAIL PROTECTED] http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_alloc.c?r1=1.144.2.3.2.27&r2=1.144.2.3.2.28&view=patch is that it? Seems to be the one. -

Re: [PHP-DEV] Unexpected usage of 'duplicate' flag in sapi_add_header_ex()

2007-04-03 Thread js
Hi Antony. Thanks you for replying. > If so, any reason to break the coding standard in this instance? Standards are general rules, there might be some exceptions. (It doesn't mean I personally like this code or encourage to ignore the standards). > and what does, in this context, 'duplicat