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 ready to give karma?!
Ralph are you ready? :)


-- 
Regards,
Mike

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



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, and it indeed happened! Sorry.
I would really like to apply your patches but please send them
complying with our coding standards, please (in your case it's mostly
about indentation and trailing whitespace)!

Thank you!

PS: Please consider using our bug tracker http://bugs.php.net in the future.

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



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 patience!


-- 
Regards,
Mike

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



[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 report any bugs.

5.5.2 GA is planned for August 15th.

Thank you.

Regards
  Julien and David


[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 could benefit from macro refactoring.

I did that.
All tests pass.

It may look uglier for people who dont like having more macros, but anyway,
we can cherry pick some commits, etc...

If you have ideas or things to say, I'm listening.
https://github.com/jpauli/php-src/compare/macroing


Julien.Pauli


[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 ACCELERATOR_VERSION_BASE  ( PHP_VERSION )
 #endif

This would probably work fine.

-- 
Stanislav Malyshev, Software Architect
SugarCRM: http://www.sugarcrm.com/
(408)454-6900 ext. 227

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



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 convey the intent
behind the if / else if chain. However, I don't really like having a macro
that works off of an `ELSE`, it just feels wrong. I don't have a better
suggestion though.