Re: [PHP-DEV] [RFC] Abolish Short Votes

2019-03-22 Thread Niklas Keller
Resend, because sent from the wrong address previously. +1, but it should probably be possible to extend the voting period once started, but not shorten it. This allows for extension during holidays in case the author didn't think about that when starting the vote. Regards, Niklas Joe Watkins s

Re: [PHP-DEV] [RFC] Abolish Short Votes

2019-03-22 Thread Joe Watkins
Morning Niklas, Allowing the extension of voting leaves us open to someone extending the voting period simply because they don't feel like they have the result they wanted. The problem we're trying to solve is votes that are too short, while providing the flexibility to have longer votes, but we

[PHP-DEV] [RFC] Unbundle ext/interbase

2019-03-22 Thread Kalle Sommer Nielsen
G'day internals I'd like to start the discussion for the future of the ext/interbase extension: https://wiki.php.net/rfc/deprecate-and-remove-ext-interbase The rationale for pushing this extension out of the core is mentioned in the RFC. Unless there is any serious issues raised here, then I wil

Re: [PHP-DEV] [RFC] Unbundle ext/interbase

2019-03-22 Thread Joe Watkins
Morning Kalle, Seems like a reasonable plan, +1 Cheers Joe On Fri, 22 Mar 2019 at 14:26, Kalle Sommer Nielsen wrote: > G'day internals > > I'd like to start the discussion for the future of the ext/interbase > extension: > https://wiki.php.net/rfc/deprecate-and-remove-ext-interbase > > The rat

Re: [PHP-DEV] [RFC] Unbundle ext/interbase

2019-03-22 Thread Lester Caine
On 22/03/2019 13:26, Kalle Sommer Nielsen wrote: G'day internals I'd like to start the discussion for the future of the ext/interbase extension: https://wiki.php.net/rfc/deprecate-and-remove-ext-interbase The rationale for pushing this extension out of the core is mentioned in the RFC. Unless

Re: [PHP-DEV] [RFC] Unbundle ext/interbase

2019-03-22 Thread Kalle Sommer Nielsen
G'day Lester Den fre. 22. mar. 2019 kl. 16.10 skrev Lester Caine : > It is not that we don't want to stand up and maintain it, it has been > impossible in recent years to get a handle on just what needs to be done > TO maintain it. The PDO extension is in a much worse state than the main > interba

Re: [PHP-DEV] [RFC] Unbundle ext/interbase

2019-03-22 Thread Dan Ackroyd
On Fri, 22 Mar 2019 at 14:10, Lester Caine wrote: > > it has been impossible in recent years to get a handle > on just what needs to be done TO maintain it. Yes, figuring out what needs to be done takes more time that writing the code. Did you not know this? This is what takes up most of my time

Re: [PHP-DEV] [RFC] Abolish Short Votes

2019-03-22 Thread Chase Peeler
On Fri, Mar 22, 2019 at 3:41 AM Joe Watkins wrote: > Morning Niklas, > > Allowing the extension of voting leaves us open to someone extending the > voting period simply because they don't feel like they have the result they > wanted. > > The problem we're trying to solve is votes that are too sho

Re: [PHP-DEV] [RFC] Unbundle ext/interbase

2019-03-22 Thread Nikita Popov
On Fri, Mar 22, 2019 at 3:10 PM Lester Caine wrote: > On 22/03/2019 13:26, Kalle Sommer Nielsen wrote: > > G'day internals > > > > I'd like to start the discussion for the future of the ext/interbase > extension: > > https://wiki.php.net/rfc/deprecate-and-remove-ext-interbase > > > > The rational

[PHP-DEV] [RFC] DOM Living Standard API

2019-03-22 Thread Benjamin Eberlei
Hi Internals, Thomas and I are working on updating the ext/dom to add support for the current DOM Living Standard API as standardized here: https://dom.spec.whatwg.org/ https://wiki.php.net/rfc/dom_living_standard_api This RFC is targeting 7.4 and contains three independent changes: - a set of

Re: [PHP-DEV] [RFC] Unbundle ext/interbase

2019-03-22 Thread Lester Caine
On 22/03/2019 16:25, Nikita Popov wrote: I've created a patch forhttps://bugs.php.net/bug.php?id=72175 (last comment), which seems to be the biggest open problem in the interbase extension. I'd appreciate it if you or someone else who uses firebird could test this. Nikita Am I jumping the gun

Re: [PHP-DEV] RFC Draft: Comprehensions

2019-03-22 Thread Dik Takken
On 21-03-19 16:22, Larry Garfield wrote: > OTOH, if we just have the one syntax: > > [foreach $foo as $bar yield $bar*2] // gives a generator > > And include a nicer "fast-forward" operator than interator_to_array(), then > we automatically get: > > ...[foreach $foo as $bar yield $bar*2] // tur

Re: [PHP-DEV] [RFC] DOM Living Standard API

2019-03-22 Thread Claude Pache
Beware that behaviour of some methods should differ between HTML and non-HTML documents. For instance, the RFC says: > DOMElement→nodeName casing was previously undefined, it is now changed to > always uppercase. However, the DOM Living Standard says it is uppercase (even, ASCII-uppercased) on

Re: [PHP-DEV] Offset-only results from preg_match

2019-03-22 Thread C. Scott Ananian
So... In microbenchmarks you can clearly see the improvement: ``` >>> timeit -n500 preg_match_all('/(.{65535})/s', $html100, $m, PREG_OFFSET_CAPTURE); => 39 Command took 0.001709 seconds on average (0.001654 median; 0.854503 total) to complete. >>> timeit -n500 preg_match_all('/(.{65535})/s', $htm