Re: [PHP-DEV] phar bug #65028

2013-08-02 Thread Michael Wallner
On 24 July 2013 18:46, Stas Malyshev smalys...@sugarcrm.com wrote: Hi! As Ferenc pointed out, Ralph volunteered for it. PHAR is too vital a part of PHP, IMHO, to be without a maintainer. Well, if he's still up to it I think we should list him as a maintainer. Ralph? So are we finally

Re: [PHP-DEV] [PATCH] [RESEND] sapi/apache2*: USe the correct API at·server startup

2013-08-02 Thread Michael Wallner
On 31 July 2013 03:39, Cristian Rodríguez crrodrig...@opensuse.org wrote: To proceed with startup at the second load only ap_query_state() must be used in newish versions of apache Hi Chrisitian! Chris Jones already mentioned a year ago, that patches on the mailing list are likely to get lost,

Re: [PHP-DEV] I want to work against Bug 44522 - Upload limit 2G

2013-08-02 Thread Michael Wallner
On 3 July 2013 19:38, Ralf Lang l...@b1-systems.de wrote: Any additional action required from my side or is it just waiting for a review timeslot? I'll soon be able to merge/align it with a solution that's been running in production for years, just give me a few days. Thank you for your

[PHP-DEV] PHP 5.5.2 RC1 is tagged

2013-08-02 Thread Julien Pauli
Hi Internals, Our RC1 of PHP 5.5.2 has been released for testing. It fixes some bugs in the 5.5 branch. You'll find details in the NEWS file. The packages can be found at: http://downloads.php.net/dsp and windows packages at http://windows.php.net/qa Please test the release carefully and

[PHP-DEV] Refactored magic methods

2013-08-02 Thread Julien Pauli
Hi internals. I started a work of refactoring magic methods from internals. The first goal was to never write ourselves things like __get, but use macros for those names. (get, set, invoke, etc...). A second goal was to rewrite some parts of the compiler which looked like code duplication which

[PHP-DEV] Re: [PHP-CVS] com php-src: Merge from GitHub: ext/opcache/ZendAccelerator.c ext/opcache/ZendAccelerator.h

2013-08-02 Thread Stas Malyshev
Hi! Something like the following? (it wasn't tested) #define ACCELERATOR_VERSION_BASE 7.0.3 #define ACCELERATOR_VERSION_SUFFIX -dev #iif PHP_EXTRA_VERSION # define ACCELERATOR_VERSION ACCELERATOR_VERSION_BASE ACCELERATOR_VERSION_SUFFIX #else # define ACCELERATOR_VERSION

Re: [PHP-DEV] Refactored magic methods

2013-08-02 Thread Levi Morrison
If you have ideas or things to say, I'm listening. https://github.com/jpauli/php-src/compare/macroing Is there a reason you switched from names like `__toString` to `__tostring` (https://github.com/jpauli/php-src/compare/macroing#L2R12)? Visually the macros clean things up a lot and better