[PHP-DEV] 1/-2*5 (bug 41401)

2007-05-17 Thread Stanislav Malyshev
Looks like we have a precedence bug in the parser rules there. Fortunately it's quite easy to fix, for example writing the rules as: | '+' expr %prec T_INC | '-' expr %prec T_INC seems to work. Any reason not to? -- Stanislav Malyshev, Zend Products Engineer [EMAIL P

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Cristian Rodriguez
2007/5/17, Steph Fox <[EMAIL PROTECTED]>: You still need to beat the Perl 6 release folks ;) What PHP6 needs is **not** repeating the same old mistakes over and over again : 1. It should be developed without pressure, with quality being more important than schedule, or you expect the first P

Re: [PHP-DEV] comment to Bug #41408

2007-05-17 Thread Carsten Wiedmann
Hello list, For a correct solution you should allways use forwardslashs in the Apache config files, also on Windows: > PHPIniDir "C:/Program Files/PHP" Just to clarify that. The Apache manual [1] is very clear about that: | For example, in a default install, Apache resides at ... | "c:/Program

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Antony Dovgal
On 18.05.2007 02:19, Steph Fox wrote: Please, guys, take this argument off list if you want to continue it at all. Yeah. The main point Andrei tried to make was lost in that argument. PHP 6 needs commitment from everybody involved, somewhere along the line, and we all - even hangers-on like

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Steph Fox
Please, guys, take this argument off list if you want to continue it at all. The main point Andrei tried to make was lost in that argument. PHP 6 needs commitment from everybody involved, somewhere along the line, and we all - even hangers-on like me - need to know that someone _will_ step up t

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Andrei Zmievski
Oh no, you're not my problem anymore. -Andrei On May 17, 2007, at 3:51 PM, Pierre wrote: On 5/17/07, Andrei Zmievski <[EMAIL PROTECTED]> wrote: Go take a pill. -Andrei P.S. Open Source volunteering still implies a level of commitment. As well as respect, something you don't have. But thi

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Pierre
On 5/17/07, Andrei Zmievski <[EMAIL PROTECTED]> wrote: Go take a pill. -Andrei P.S. Open Source volunteering still implies a level of commitment. As well as respect, something you don't have. But this stupid answer just made my point. Fine, your problem. -- PHP Internals - PHP Runtime Develo

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Andrei Zmievski
Go take a pill. -Andrei P.S. Open Source volunteering still implies a level of commitment. On May 17, 2007, at 3:41 PM, Pierre wrote: [deleted] -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Pierre
On 5/17/07, Andrei Zmievski <[EMAIL PROTECTED]> wrote: >> I would request that you do not try to work on the input decoding >> feature since you proved very unreliable in the past. > > I suggest you to change your way to ask things. > > You first requested me to give the hand, and that's what I

Re: [PHP-DEV] Tests - and a question

2007-05-17 Thread Richard Lynch
On Tue, May 15, 2007 12:38 pm, Antony Dovgal wrote: > On 05/15/2007 08:52 PM, Stanislav Malyshev wrote: > Well, I'm pretty sure regular humans know how to run `find . -name > "*.phpt" | xargs grep "func`. I dunno... It took me years to figure out that xargs thing and how to make it go... I'd rea

Re: [PHP-DEV] register_session_gc_handler proposal

2007-05-17 Thread Richard Lynch
On Tue, May 15, 2007 12:53 pm, Emil Ivanov wrote: > Sorry to bother you, as I know you are quite busy, but I have a > problem and > maybe a elegant solution does not exist right now. > > The case is simple: > A user is allowed to upload files to the server, which are store in a > temporary location

Re: [PHP-DEV] Re: #41401 [Opn->Bgs]: Order of Operations error on divide by negative

2007-05-17 Thread Richard Lynch
On Wed, May 16, 2007 9:08 am, Brian Moon wrote: > According to my memory of Please My Dear Aunt Sally these should be: My memory has "My Dear" in equal priority, left to right... This documentation would seem to bear that out: http://us.php.net/manual/en/language.operators.php#language.operators.

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Andrei Zmievski
I replied to all mails I got from you. About IRC, sorry, but EFNet's php channel are really not anymore my cup of tea and I told you that already. But I'm reachable by email or on freenode, like always. You did not reply to my emails asking for status on the input decoding part, more than once

[PHP-DEV] CVS Account Request: osvaldo

2007-05-17 Thread Rojas Banegas
Si -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Committing failing tests?

2007-05-17 Thread Antony Dovgal
Fixed, thanks for the heads up. On 15.05.2007 22:46, Zoe Slattery wrote: --TEST-- PHP6 unicode Notices different --FILE-- echo "\n-- creating an array with low = '$low_arr' and high = '$high_arr' --\n"; var_dump( range( $low_arr, $high_arr ) ); --EXPECTF-- -- creating an array with low = 'AB

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Pierre
Hi Andrei. On 5/17/07, Andrei Zmievski <[EMAIL PROTECTED]> wrote: On May 16, 2007, at 2:56 PM, Pierre wrote: > This information is incorrect and misguided, please understand what > you are talking about before making inappropriate claims. Simply > asking me or really any other developer of the f

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Andrei Zmievski
It won't be "eat or die". We're just doing API design and some prototyping at this point. We'll definitely post info on php-i18n list. -Andrei On May 16, 2007, at 11:21 AM, Michael Wallner wrote: Stanislav Malyshev wrote: There's also some work to be done on supporting more of the icu fun

Re: [PHP-DEV] [PATCH] Major optimization for heredocs/interpolated strings

2007-05-17 Thread Stanislav Malyshev
The patch mainly improves not the parser, but generated code. It builds near optimal ZEND_ADD_STRING, ZEND_ADD_VAR sequence for quoted strings and heredoc. OK, I understand that, the question is can we see any difference? We are doing quite major overhaul of the parser, so there should be a rea

Re: [PHP-DEV] PHP 6 Preview

2007-05-17 Thread Andrei Zmievski
On May 16, 2007, at 2:56 PM, Pierre wrote: This information is incorrect and misguided, please understand what you are talking about before making inappropriate claims. Simply asking me or really any other developer of the filter extension would have been more productive. I do check my email, and