Re: [PHP-DEV] Git Migration Status Update

2012-01-26 Thread Sascha Schumann
Hi David, great work! Cheers Sascha On Wed, 25 Jan 2012, David Soria Parra wrote: Hi Internals, we are a few weeks into the git migration, so I want to give you a short status update. - web/ is completly migrated. all php websites are updating from the git repositories now.

[PHP-DEV] Re: [PHP-WEBMASTER] [git] web/master.git branch master updated. 8181453

2012-01-26 Thread David Soria Parra
On 2012-01-25, Michael Wallner m...@php.net wrote: On Tue, 24 Jan 2012 20:33:10 +0100, David Soria Parra wrote: I understand that it's useful, so you suggested having a mail for each commit instead of each push. I prefer mails per push as they are the only documentation of who pushed what.

Re: [PHP-DEV] Shebang parsing

2012-01-26 Thread devis
Hi, from http://stackoverflow.com/questions/4303128/how-to-use-multiple-arguments-with-a-shebang-i-e 1. Some operating systems simply treat the entire thing as the path. After all, in most operating systems, whitespace or dashes are legal in a path. 2. Some

Re: [PHP-DEV] Shebang parsing

2012-01-26 Thread Kiall Mac Innes
Surely you can detect which operating system you're running on, and have PHP act accordingly? (Note: on my phone, haven't read the link!) Kiall Sent from my mobile - Sorry for being short. On Jan 26, 2012 10:08 a.m., de...@lucato.it wrote: Hi, from

Re: [PHP-DEV] Git Migration Status Update

2012-01-26 Thread Paul Dragoonis
Hi David, Thanks for the great push on the DVCS push to git. I believe I speak for many people when I say your hard work is really appreciated. Look forward to testing out the git installation. - Paul. On Wed, Jan 25, 2012 at 11:36 PM, David Soria Parra d...@php.net wrote: Hi Internals, we

Re: [PHP-DEV] Git Migration Status Update

2012-01-26 Thread Alexey Shein
+1, Thanks David! 2012/1/26 Paul Dragoonis dragoo...@gmail.com: Hi David, Thanks for the great push on the DVCS push to git. I believe I speak for many people when I say your hard work is really appreciated. Look forward to testing out the git installation. - Paul. On Wed, Jan 25, 2012

Re: [PHP-DEV] Git Migration Status Update

2012-01-26 Thread Klaus Silveira
Hey David, I just wanted to thank you for the huge amount of work you have been dedicating towards the PHP community. Amazing! :D

Re: [PHP-DEV] Shebang parsing

2012-01-26 Thread Ángel González
On 26/01/12 11:35, Kiall Mac Innes wrote: Surely you can detect which operating system you're running on, and have PHP act accordingly? (Note: on my phone, haven't read the link!) Kiall It's probably not reliable. Note that a simple and completely reliable solution would be instead of having

Re: [PHP-DEV] A potential patch for Bug#60668

2012-01-26 Thread Ángel González
About Kiyoto's patch: Some servers would read as new headers if the newlines were just \n or \r (which would be illegal per HTTP spec). I think the characters to ban are: \n \r \0 Just replace your call to zend_trim_after_carriage_return with: + strtok(new_value, \r\n); // Truncate on \n, \r