Re: [PHP-DEV] Volunteers for Subversion 1.5 conversion of cvs.php.net?

2008-07-29 Thread Edward Z. Yang
Marcus Boerger wrote: > to be honest, what is wrong with svn for you? Do you branch off your own > PHP? No, so what's wrong? To easy to use for 99.99% of people using PHP > repository? But please (everyone) just think of it and don't comment > anymore. As I said previously, my personal opinion h

[PHP-DEV] Normalizer Class

2008-07-29 Thread Andrew Mason
Hi people, Just wondering if anyone can tell me when the Normalizer class is slated for inclusion or if it hasn't been decided yet. http://au2.php.net/manual/en/class.normalizer.php Just trying to work out if i should wait or if i should write my own / use another -- PHP Internals - PHP Runtime

Re: [PHP-DEV] Introducing Boost.PHP - PHP Extensions in C++, in a minute

2008-07-29 Thread Marcus Boerger
Hello Moriyoshi, actually you should place it as a PHP module. Boost provides core level stuff and algorithmns and such. This is a highly specialized bridge. marcus Tuesday, July 29, 2008, 3:59:00 PM, you wrote: > Nope, but I'm thinking of proposing it as soon as I finish the > documentat

Re: [PHP-DEV] [RFC] Zend Signal Handling

2008-07-29 Thread Lucas Nealan
I've updated the patch for Zend Signal Handling, the latest version is available on the wiki rfc page: http://wiki.php.net/rfc/zendsignals The update solves the reentrance issue with using the a zend linked list in the default signal handler. I've also added a debug only check, at least for now,

Re: [PHP-DEV] DOMDocument Extension: Output current nodelist

2008-07-29 Thread Benjamin Eberlei
Thats embarassing. I missed saveXML. :) Regarding the ifs, that is mostly copy paste. the original functions saveHtml and save don't have braces currently. Regarding naming: Output, because of the naming scheme "saveHtml <-> saveHtmlFile" and "save" (represeting what saveHtmlFile did) i had to c

Re: [PHP-DEV] DOMDocument Extension: Output current nodelist

2008-07-29 Thread Johannes Schlüter
On Wed, 2008-07-30 at 00:23 +0200, Benjamin Eberlei wrote: > I recognized at work today that DOMDocument has two function saveHTML and > saveHTMLFile, but only a save function for the "unfiltered" xml node > structure to save to a file although libxml provides the functionality to > export the data

[PHP-DEV] DOMDocument Extension: Output current node list

2008-07-29 Thread Benjamin Eberlei
Hello, this is my first posting and first patch proposal, so please be kind. :) (This message might occur more then once, i dont seem to get friends with the list server) I recognized at work today that DOMDocument has two function saveHTML and saveHTMLFile, but only a save function for the "un

[PHP-DEV] DOMDocument Extension: Output current nodelist

2008-07-29 Thread Benjamin Eberlei
Hello, this is my first posting and first patch proposal, so please be kind :) I recognized at work today that DOMDocument has two function saveHTML and saveHTMLFile, but only a save function for the "unfiltered" xml node structure to save to a file although libxml provides the functionality to ex

Re: [PHP-DEV] PHP Cmake

2008-07-29 Thread Alejandro Leiva
On 29/07/2008, at 20:19, Stanislav Malyshev wrote: Hi! possibilities). I missed to remark that we'll implement phpize based on CMake (if is necesary). Some way to build an extension stand-alone - phpize or other - is definitely necessary. Of course, what I try to say is that we'll imp

Re: [PHP-DEV] PHP Cmake

2008-07-29 Thread Stanislav Malyshev
Hi! possibilities). I missed to remark that we'll implement phpize based on CMake (if is necesary). Some way to build an extension stand-alone - phpize or other - is definitely necessary. -- Stanislav Malyshev, Zend Software Architect [EMAIL PROTECTED] http://www.zend.com/ (408)253-8829

Re: [PHP-DEV] Replacement to ticks for signals

2008-07-29 Thread Antony Dovgal
On 29.07.2008 20:31, Arnaud Le Blanc wrote: Could you separate the ticks/dispatch patch from the new functions, please? I just think they are two separate things and therefore should committed in two steps. Other than that, I don't have any objections. Yes, no problem, I will commit them sep

Re: [PHP-DEV] Replacement to ticks for signals

2008-07-29 Thread Arnaud Le Blanc
On Tuesday 29 July 2008 16:55:12 Lukas Kahwe Smith wrote: > > On 29.07.2008, at 16:40, Antony Dovgal wrote: > > > On 29.07.2008 18:28, Arnaud Le Blanc wrote: > >>> I added pcntl_sigwaitinfo(), pcntl_sigtimedwait() and > >>> pcntl_sigprocmask() to my patch: > >>> http://arnaud.lb.s3.amazonaws.co

Re: [PHP-DEV] Replacement to ticks for signals

2008-07-29 Thread Arnaud Le Blanc
On Tuesday 29 July 2008 16:40:03 Antony Dovgal wrote: > On 29.07.2008 18:28, Arnaud Le Blanc wrote: > >> I added pcntl_sigwaitinfo(), pcntl_sigtimedwait() and pcntl_sigprocmask() to > >> my patch: > >> > >> http://arnaud.lb.s3.amazonaws.com/pcntl.patch > >> > >> pcntl_sigwaitinfo() allows to bl

Re: [PHP-DEV] PHP Cmake

2008-07-29 Thread Alejandro Leiva
El 29/07/2008, a las 15:13, Brian J. France escribió: On Jul 29, 2008, at 4:52 AM, Alejandro Leiva wrote: I'm working in porting php to cmake there is information in the wiki @ http://wiki.php.net/internals/cmake, now is compiling Zend, main, TSRM, ext/ctype, ext/date, ext/dom, ext/libxml

Re: [PHP-DEV] Replacement to ticks for signals

2008-07-29 Thread Lukas Kahwe Smith
On 29.07.2008, at 16:40, Antony Dovgal wrote: On 29.07.2008 18:28, Arnaud Le Blanc wrote: I added pcntl_sigwaitinfo(), pcntl_sigtimedwait() and pcntl_sigprocmask() to my patch: http://arnaud.lb.s3.amazonaws.com/pcntl.patch pcntl_sigwaitinfo() allows to block until the specified signals hav

Re: [PHP-DEV] Replacement to ticks for signals

2008-07-29 Thread Antony Dovgal
On 29.07.2008 18:28, Arnaud Le Blanc wrote: I added pcntl_sigwaitinfo(), pcntl_sigtimedwait() and pcntl_sigprocmask() to my patch: http://arnaud.lb.s3.amazonaws.com/pcntl.patch pcntl_sigwaitinfo() allows to block until the specified signals have been delivered. pcntl_sigtimedwait() does the

Re: [PHP-DEV] Replacement to ticks for signals

2008-07-29 Thread Arnaud Le Blanc
On Monday 28 July 2008 17:26:39 Arnaud Le Blanc wrote: > On Sunday 27 July 2008 16:38:47 Arnaud Le Blanc wrote: > > On Sunday 27 July 2008 16:04:58 Derick Rethans wrote: > > > On Sun, 27 Jul 2008, Arnaud Le Blanc wrote: > > > > > > > Hi, > > > > > > > > I made a pcntl_signal_dispatch() function [

Re: [PHP-DEV] [Fwd: [ZEND-ENGINE-CVS] cvs: ZendEngine2 / zend_strtod.c]

2008-07-29 Thread Arnaud Le Blanc
On Monday 28 July 2008 23:11:21 Stanislav Malyshev wrote: > Hi! > > > The problem was experienced by 5 persons at least. > > How many persons is not very important, what important is how many > different compilers they used and how recent those are, in other words - > how frequently you could h

Re: [PHP-DEV] Introducing Boost.PHP - PHP Extensions in C++, in a minute

2008-07-29 Thread Moriyoshi Koizumi
Nope, but I'm thinking of proposing it as soon as I finish the documentation. Moriyoshi On 2008/07/29, at 23:00, troels knak-nielsen wrote: On Tue, Jul 29, 2008 at 2:58 PM, Moriyoshi Koizumi <[EMAIL PROTECTED]> wrote: Hi folks, I created a library that may draw some attention. Boost.PHP is

Re: [PHP-DEV] Introducing Boost.PHP - PHP Extensions in C++, in a minute

2008-07-29 Thread troels knak-nielsen
On Tue, Jul 29, 2008 at 2:58 PM, Moriyoshi Koizumi <[EMAIL PROTECTED]> wrote: > Hi folks, > > I created a library that may draw some attention. Boost.PHP is a set of > macros and C++ classes that wrap around common Zend Engine structs that Is Boost.PHP affiliated with boost.org ? -- troels -- P

Re: [PHP-DEV] PHP Cmake

2008-07-29 Thread Brian J. France
On Jul 29, 2008, at 4:52 AM, Alejandro Leiva wrote: I'm working in porting php to cmake there is information in the wiki @ http://wiki.php.net/internals/cmake, now is compiling Zend, main, TSRM, ext/ctype, ext/date, ext/dom, ext/libxml, ext/phar, ext/ standard and sapi/cli. I wrote a php sc

[PHP-DEV] Introducing Boost.PHP - PHP Extensions in C++, in a minute

2008-07-29 Thread Moriyoshi Koizumi
Hi folks, I created a library that may draw some attention. Boost.PHP is a set of macros and C++ classes that wrap around common Zend Engine structs that allow you to create a PHP extension in C++, in a very efficient way. Most notably, you no longer need most of the ZE macros and APIs li

[PHP-DEV] PHP Cmake

2008-07-29 Thread Alejandro Leiva
Hi, I'm working in porting php to cmake there is information in the wiki @ http://wiki.php.net/internals/cmake, now is compiling Zend, main, TSRM, ext/ctype, ext/date, ext/dom, ext/libxml, ext/phar, ext/standard and sapi/cli. I wrote a php script to convert automatically the information

Re: [PHP-DEV] Patch for HTTP successful status codes

2008-07-29 Thread Hannes Magnusson
On Tue, Jul 29, 2008 at 05:50, Edward Z. Yang <[EMAIL PROTECTED]> wrote: > Edward Z. Yang wrote: >> It's a configurable option (don't have the code in front of me, so no >> proof, sorry). You can set redirects = 0, and have http not follow any >> redirects. > > Whoops, I'm talking about pecl/http,

Re: [PHP-DEV] [Fwd: [ZEND-ENGINE-CVS] cvs: ZendEngine2 / zend_strtod.c]

2008-07-29 Thread Hartmut Holzgraefe
Nuno Lopes wrote: I already expressed my opinion.. If you know what's the buggy gcc version, just fail at configure time if it's present. but with a test for the actual buggy behavior, not just the gcc version i'd assume? (thing "regression" ;) -- Hartmut Holzgraefe, MySQL Regional Support Man

Re: [PHP-DEV] New optimization idea; was: No runtime fetching of built-in global constants

2008-07-29 Thread Dmitry Stogov
Hi Lukas, I don't expect any significant changes from my side any more. All the patches, which I liked to look into, already committed. Of course I have several bugs assigned to me and I'll try to fix them, but it shouldn't affect 5.3.0 release process. Especially this FastCGI change is just