Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread Terje Slettebø
> Andrei Zmievski wrote: > > Attention: you have posted C++ template code on PHP mailing list. Please > > pay a $100 fine immediately and carefully proceed to the exit. > > Luckily my peril sensitive sunglasses turned black at the first line > before I even managed to read the template part of the

Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread Terje Slettebø
> >> From: "Andrei Zmievski" <[EMAIL PROTECTED]> > > > >> Attention: you have posted C++ template code on PHP mailing list. > >> Please > >> pay a $100 fine immediately and carefully proceed to the exit. > > > > Hehe... I do hope this is a joke (it would seem rather closed-minded, > > otherwise). I

Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread George Schlossnagle
On Feb 8, 2005, at 1:16 AM, Adam Maccabee Trachtenberg wrote: On Mon, 7 Feb 2005, Andrei Zmievski wrote: Hehe... I do hope this is a joke (it would seem rather closed-minded, otherwise). I don't think anybody would have bothered if anyone posted PHP code on e.g. comp.lang.c++(.moderated), in order

RE: [PHP-DEV] PHP 5.1

2005-02-08 Thread Mike Robinson
George Schlossnagle wrote: > > Yes, Andrei. This time you've gone to far. Your so-called > 'humor' is all well and good until you start maligning c++. > I think an apology is in order, both here (to Marcus, whose > c++ophelia was surely offended as well, though he would never > come out and

Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread Andi Gutmans
Terje, Please take these personal emails off the list. It's getting cluttered with too much unfocused emails and it makes it hard for people to keep up with development itself. Thanks, Andi At 10:40 AM 2/8/2005 +0100, Terje Slettebø wrote: > >> From: "Andrei Zmievski" <[EMAIL PROTECTED]> > > > >>

Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread Andrei Zmievski
On Tue, 08 Feb 2005, George Schlossnagle wrote: > Yes, Andrei. This time you've gone to far. Your so-called 'humor' is > all well and good until you start maligning c++. I think an apology is > in order, both here (to Marcus, whose c++ophelia was surely offended as > well, though he would nev

Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread Andrei Zmievski
Terje, > Yeah, follow it up with an insult; that'll do lovely. If you had some > insight into human nature, you'd know that humour is very subjective, and > given the feedback I've got from others in this thread (which have _not_ > been jokes), it's rather hard to see what's a joke and what's not.

[PHP-DEV] php-cgi broken

2005-02-08 Thread Frank M. Kromann
Hello Everyone, The patch on sapi/cgi_main.c from 1.259 to 1.260 (HEAD) breaks the cgi under IIS. No after this patch the server returns file not found on all requests. - Frank -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] iconv doesn't built on OSX

2005-02-08 Thread Christian Stocker
Hi After a long look into the configure stuff for iconv, I found out, why it doesn't (even try to) compile on my OS X 10.3 box. in acinclude.m4 for PHP_SETUP_ICONV, there is somewhere test -f $ICONV_DIR/$PHP_LIBDIR/lib$iconv_lib_name.$SHLIB_SUFFIX_NAME $SHLIB_SUFFIX_NAME is 'so', but system wide

[PHP-DEV] 'double' / 'float' revised.. think about it.

2005-02-08 Thread Ron Korving
Personal recent frustrating float issues made me think of the following... At the moment apparently the C-type double is used for PHP's float (or double if you please) storage. I believe it is the philosophy of PHP to make things easy for its users, and in this perspective I was thinking.. hasn't

Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread M. Sokolewicz
Ok, this is getting plain annoying. Please stop this endless chatter, all of you! It's annoying, senseless, and counter-productive. If you *really* want to keep bitching at eachother, then please do it somewhere else (iow, not on the list). Andrei Zmievski wrote: Terje, Yeah, follow it up with

Re: [PHP-DEV] php-cgi broken

2005-02-08 Thread Andi Gutmans
Jani, any ideas? When this patch was commited it seemed a bit odd to me but I wasn't quite sure what it attempted to resolve. At 10:56 AM 2/8/2005 -0800, Frank M. Kromann wrote: Hello Everyone, The patch on sapi/cgi_main.c from 1.259 to 1.260 (HEAD) breaks the cgi under IIS. No after this patch t

Re: [PHP-DEV] 'double' / 'float' revised.. think about it.

2005-02-08 Thread Hartmut Holzgraefe
Ron Korving wrote: [...] Shouldn't PHP abandon the speed of the double in C on this one [...] It's not only a matter of speed but also of changing interfaces to all extensions using doubles (bundled, PECL and 3rd party or local ones) ... -- Hartmut Holzgraefe <[EMAIL PROTECTED]> -- PHP Internals -

Re: [PHP-DEV] 'double' / 'float' revised.. think about it.

2005-02-08 Thread Ron Korving
Yeah, I figured that, but.. changes come as new major PHP releases come. Maybe this would be something for 5.2/3/4 or 6.0, right? :) Most likely 6.0 I guess. Personally, I just think it's a problem that really should be tackled when in time PHP6 is to be released. If it isn't done by then, waiting

Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread Andrey Hristov
Hi, from now I foresee what will Derick will write in 2006 in his review "internals'05" :) Have fun, Andrey M. Sokolewicz wrote: Ok, this is getting plain annoying. Please stop this endless chatter, all of you! It's annoying, senseless, and counter-productive. If you *really* want to keep bitch

Re: [PHP-DEV] 'double' / 'float' revised.. think about it.

2005-02-08 Thread Marcus Boerger
Hello Ron, it doesn't matter how accurate your floating or whatever you call it is. Financial applications require native support which can be realized using bcmath. Whatever you think besides that - the problem is that any errors accumulate - that's the nature of float. If you would like to kn

Re: [PHP-DEV] iconv doesn't built on OSX

2005-02-08 Thread Moriyoshi Koizumi
I've experienced the same. The following improper change was left forgotten when Jani applied his fix that is eventually correct. http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.275&r2=1.276&ty=u Moriyoshi On 2005/02/09, at 3:55, Christian Stocker wrote: Hi After a long look into the configur

[PHP-DEV] FTP scripts and project

2005-02-08 Thread D . Walsh
I'm in need of some fully functional stand-alone php FTP scripts, I've searched the web, have downloaded a couple but they don't work. While this looks valid and appears to be uploading the file, no file is ever saved other than a temporary file that vanishes as soon as the file has completed u

Re: [PHP-DEV] FTP scripts and project

2005-02-08 Thread George Schlossnagle
This is not the list you're looking for. You want php-general. On Feb 8, 2005, at 11:40 PM, D.Walsh wrote: I'm in need of some fully functional stand-alone php FTP scripts, I've searched the web, have downloaded a couple but they don't work. While this looks valid and appears to be uploading the

Re: [PHP-DEV] PHP 5.1

2005-02-08 Thread Jeremy Johnstone
You have to admit one thing about Terje, he does have a knack for irrating virtually every single "big wig" on the PHP core development team. I haven't kept a close record, but I think I have seen almost everyone of importance comment negatively on his suggestion and/or about him personally because

[PHP-DEV] Announce: PDO beta releases

2005-02-08 Thread Wez Furlong
You may have noticed my "drive-by release" of various different PDO packages tonight/this morning. This is stage one of the "PDO push". I'd like to encourage you all to try it out; as you should know, we're going to be releasing PDO as part of PHP 5.1, so we need as many people as possible to pla

[PHP-DEV] intercepting function calls

2005-02-08 Thread sumoraigabe-php
Is it possible to intercept a function call (user space or built-in) in the Zend Engine and execute user space code before/after the function call? = -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Announce: PDO beta releases

2005-02-08 Thread Daniel Convissor
Hi Wez: On Wed, Feb 09, 2005 at 12:55:46AM -0500, Wez Furlong wrote: > > I'd like to encourage you all to try it out; as you should know, we're > going to be releasing PDO as part of PHP 5.1, so we need as many > people as possible to play around with it to discover any remaining > issues. ... >

Re: [PHP-DEV] Announce: PDO beta releases

2005-02-08 Thread Wez Furlong
Dan Scott mentioned to me that he has someone that is (or soon will be) working on a test suite. While a test-suite is good, it's also good for people to actually sit down and try to use it in their own way. --Wez. On Wed, 9 Feb 2005 01:32:08 -0500, Daniel Convissor <[EMAIL PROTECTED]> wrote: >