Re: [PHP-DEV] [RFC] GitHub Pull Requests Triage Team

2014-11-01 Thread Pierre Joye
Hi, On Oct 31, 2014 4:57 AM, "John Bafford" wrote: > > Hi, > > I would like to propose the creation of a team to triage the pull requests on GitHub, to help ensure that the pull requests are handled in a timely manner. I am also volunteering to lead such a team, should the RFC be approved. > > ht

Re: [PHP-DEV] [RFC] GitHub Pull Requests Triage Team

2014-11-01 Thread Rowan Collins
On 1 November 2014 11:53:11 GMT, Pierre Joye wrote: >Hi, > >On Oct 31, 2014 4:57 AM, "John Bafford" wrote: >> >> Hi, >> >> I would like to propose the creation of a team to triage the pull >requests on GitHub, to help ensure that the pull requests are handled >in a >timely manner. I am also volun

Re: [PHP-DEV] New Standardized HTTP Interface

2014-11-01 Thread Andrea Faulds
> On 31 Oct 2014, at 18:37, Larry Garfield wrote: > > I think the root problem is that you're solving an issue that doesn't exist. > > You're talking about providing alternate ways to parse the raw HTTP stream > into user-accessible variables, ie, by pushing them into an object of a known > i

Re: [PHP-DEV] New Standardized HTTP Interface

2014-11-01 Thread Damien Tournoud
On Sat, Nov 1, 2014 at 1:40 PM, Andrea Faulds wrote: > > On 31 Oct 2014, at 18:37, Larry Garfield wrote: > > IF internals wanted to add implementation, not just improving streams, > > something like the following would be much more useful: > > > > $request = http_get_request(PHP_STDIN); // or so

Re: [PHP-DEV] New Standardized HTTP Interface

2014-11-01 Thread Rowan Collins
On 1 November 2014 13:15:45 GMT, Damien Tournoud wrote: >On Sat, Nov 1, 2014 at 1:40 PM, Andrea Faulds wrote: >> > On 31 Oct 2014, at 18:37, Larry Garfield >wrote: >> > IF internals wanted to add implementation, not just improving >streams, something like the following would be much more useful:

Re: [PHP-DEV] [RFC] GitHub Pull Requests Triage Team

2014-11-01 Thread Xinchen Hui
Hey: On Sat, Nov 1, 2014 at 7:53 PM, Pierre Joye wrote: > Hi, > > On Oct 31, 2014 4:57 AM, "John Bafford" wrote: >> >> Hi, >> >> I would like to propose the creation of a team to triage the pull > requests on GitHub, to help ensure that the pull requests are handled in a > timely manner. I am

Re: [PHP-DEV] pecl/http RFC

2014-11-01 Thread Rowan Collins
On 31 October 2014 20:47:50 GMT, Will Fitch wrote: >I don’t want to restart any previous threads, but I’d like to >get/restart the conversation going with the pecl/http RFC: >https://wiki.php.net/rfc/pecl_http >. > >Recent conversations regarding https://wiki.

Re: [PHP-DEV] setcookie() minor BC break - fixes issue #67736

2014-11-01 Thread Florian Margaine
Hi list, On the PR of the setcookie patch to become compliant with the HTTP RFC, a valid use case for not throwing a warning when running setcookie() twice with the same name: deleting cookies (setcookie('name', '', ...);). It's thus been proposed to add

Re: [PHP-DEV] [RFC] GitHub Pull Requests Triage Team

2014-11-01 Thread John Bafford
On Oct 31, 2014, at 12:10, Andrea Faulds wrote: > >> On 30 Oct 2014, at 21:57, John Bafford wrote: >> I would like to propose the creation of a team to triage the pull requests >> on GitHub, to help ensure that the pull requests are handled in a timely >> manner. I am also volunteering to le

Re: [PHP-DEV] [RFC] GitHub Pull Requests Triage Team

2014-11-01 Thread John Bafford
On Nov 1, 2014, at 10:27, Xinchen Hui wrote: > Hey: > > On Sat, Nov 1, 2014 at 7:53 PM, Pierre Joye wrote: >> Hi, >> >> On Oct 31, 2014 4:57 AM, "John Bafford" wrote: >>> >>> Hi, >>> >>> I would like to propose the creation of a team to triage the pull >> requests on GitHub, to help ensure

Re: [PHP-DEV] [RFC] GitHub Pull Requests Triage Team

2014-11-01 Thread John Bafford
On Nov 1, 2014, at 08:28, Rowan Collins wrote: > On 1 November 2014 11:53:11 GMT, Pierre Joye wrote: >> Hi, >> >> On Oct 31, 2014 4:57 AM, "John Bafford" wrote: >>> >>> Hi, >>> >>> I would like to propose the creation of a team to triage the pull >> requests on GitHub, to help ensure that t

Re: [PHP-DEV] [RFC] GitHub Pull Requests Triage Team

2014-11-01 Thread John Bafford
On Oct 31, 2014, at 12:15, Ferenc Kovacs wrote: > On Fri, Oct 31, 2014 at 3:13 PM, Florian Anderiasch > wrote: > >> On 31.10.2014 09:58, Peter Cowburn wrote:> On 30 October 2014 21:57, >> John Bafford wrote: >>> Hi, I would like to propose the creation of a team to triage the

Re: [PHP-DEV] setcookie() minor BC break - fixes issue #67736

2014-11-01 Thread Alexander Kurilo
On 01/11/14 13:09, Florian Margaine wrote: Hi list, On the PR of the setcookie patch to become compliant with the HTTP RFC, a valid use case for not throwing a warning when running setcookie() twice with the same name: deleting cookies (setcookie('name'

Re: [PHP-DEV] setcookie() minor BC break - fixes issue #67736

2014-11-01 Thread Rowan Collins
On 01/11/2014 21:10, Alexander Kurilo wrote: What should be done? Trying to keep BC at a minimum by adding an unsetcookie() method and add warnings? Try to detect the deletion of cookies (empty value) and add warnings to keep even more BC? Just in case: I believe cookies are removed not by settin

Re: [PHP-DEV] setcookie() minor BC break - fixes issue #67736

2014-11-01 Thread Andrea Faulds
> On 1 Nov 2014, at 21:47, Rowan Collins wrote: > > On 01/11/2014 21:10, Alexander Kurilo wrote: >>> What should be done? Trying to keep BC at a minimum by adding an >>> unsetcookie() method and add warnings? Try to detect the deletion of >>> cookies (empty value) and add warnings to keep even m

Re: [PHP-DEV] setcookie() minor BC break - fixes issue #67736

2014-11-01 Thread Rowan Collins
On 01/11/2014 22:24, Andrea Faulds wrote: Perhaps it would be worth ditching any attempts to change setcookie() (just keep it around for backwards-compatibility), and to instead add a new function, function family, or indeed class for cookie handling. Some sort of sane API which would allow yo