Re: [PHP-DEV] Segfault

2003-03-11 Thread Zeev Suraski
Fixed! Thanks, Zeev At 18:17 11/03/2003, Andrei Zmievski wrote: With the latest ZE2: ?php class Bar { function boo() { ::zoo(); } } Bar::boo(); ? -Andrei http://www.gravitonic.com/ The day Microsoft makes something that doesn't suck,

Re: [PHP-DEV] iterating objects with interfaces

2003-03-11 Thread Marcus Börger
At 19:05 10.03.2003, Marcus Börger wrote: Standard PHP Library Updated version allows: class obj_array implements spl::array_read { bla ... } $obj = new obj_array(); $value = $obj[$index]; marcus -- -- Marcus Börger -

Re: [PHP-DEV] iterating objects with interfaces

2003-03-11 Thread Stephen Thorne
All this is starting to feel strangely pythonic. How soon till ('pre'.($_GET['textArea']-strip_tags()).'/pre')-print(); ? Stephen. On Wed, 12 Mar 2003 10:24, Marcus Börger wrote: At 19:05 10.03.2003, Marcus Börger wrote: Standard PHP Library Updated version allows: class obj_array

Re: [PHP-DEV] iterating objects with interfaces

2003-03-11 Thread Marcus Börger
At 01:48 12.03.2003, Stephen Thorne wrote: All this is starting to feel strangely pythonic. How soon till ('pre'.($_GET['textArea']-strip_tags()).'/pre')-print(); ? Very far of because i am working with objects and interfaces and have no plan for other types as arrays and longs marcus --

[PHP-DEV] Segmentation violation

2003-03-11 Thread Matt
Hi, i've never posted to this newsgroup b4 so pls don't shoot me down if this is not protocol. But I've been trying to debug a seg fault trying varying options from various postings with little success. After generating a stacktrace I'm not sure really what to do next to find the problem. If

Re: [PHP-DEV] php_gettext.dll

2003-03-11 Thread Nathan Fredrickson
Edin Kadribasic [EMAIL PROTECTED] wrote: On Tuesday, Mar 11, 2003, at 03:35 Europe/Copenhagen, Nathan Fredrickson wrote: Hi, Is the CVS source out of date for gettext extension? The distributed php_gettext.dll dynamically loads libintl-1.dll. The php_gettext.dll I built from the CVS

[PHP-DEV] PHP Startup Error In Apache

2003-03-11 Thread Ray Hunter
Has anyone seen these startup errors before? These are from my apache error_log file when i start up apache: PHP Warning: Unknown(): Unable to load dynamic library '/usr/local/php-4.3.0/lib/php/extensions/no-debug-non-zts-20020429/xslt.so' -

Re: [PHP-DEV] Segfault with latest CVS

2003-03-11 Thread Martin Jansen
On Tue Mar 11, 2003 at 10:5232PM +0100, Sebastian Bergmann wrote: Martin Jansen wrote: ?php require_once DB.php; ? Most likely this will be caused by 856 $this-$key = $arr[$key]; as variable member access causes a segfault in the compiler. Will this be fixed or has there been

Re: [PHP-DEV] [PATCH] OCI8 link failure (Tru64/AIX) (#22324)

2003-03-11 Thread Thies C. Arntzen
I still think that the best solution would be to check if linking with -lcntsh alone is enough to get OCILobIsTemporary, and if not, check if it works with -locijdbc8. i think that makes sense. re, tc -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

Re: [PHP-DEV] Segfault with latest CVS

2003-03-11 Thread Derick Rethans
On Wed, 12 Mar 2003, Martin Jansen wrote: On Tue Mar 11, 2003 at 10:5232PM +0100, Sebastian Bergmann wrote: Martin Jansen wrote: ?php require_once DB.php; ? Most likely this will be caused by 856 $this-$key = $arr[$key]; as variable member access causes a segfault in

[PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Stefan Esser
Good morning, is there any chance that we can revert this annoying feature? The translated documentation is always behind and partly lacks important information from the english version. I want to read the documentation in english (and I am not the only one). This is only possible if I change the

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Zeev Suraski
I agree, this auto language detection is quite annoying... Zeev At 11:05 10/03/2003, Stefan Esser wrote: Good morning, is there any chance that we can revert this annoying feature? The translated documentation is always behind and partly lacks important information from the english version. I

Re: [PHP-DEV] [WARNING] Release process for 4.3.2 starts RSN..

2003-03-10 Thread Zeev Suraski
At 18:17 09/03/2003, Derick Rethans wrote: Hello, I guess nobody is interested in fixing this? Then I guess we won't get 4.3.2 ever. 4.3.2 will be coming out soon either way, there's really no need for this kind of talk. I'll see if I can get some of these fixed, but we should get ready to

[PHP-DEV] CVS access

2003-03-10 Thread Jn uavec
I need CVS access into PHP CVS repository. I have project with code name DotPHP. See CVS repository in http://sourceforge. net/projects/webcomp. I want add this directory into PHP directory... Akelavlk == REKLAMA =

[PHP-DEV] CVS Account Request: wassago

2003-03-10 Thread Oskar Krawczyk
Translating the documentation -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Jumadi

2003-03-10 Thread Derick Rethans
Hello, please forward user questions to the [EMAIL PROTECTED] mailinglist, this list is for development _OF_ PHP, not development _with_ PHP. Derick On Mon, 10 Mar 2003, Jumadi Francisco Simangunsong wrote: now i have a project to make Information Sistem of Inventaris, and i would build it

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Melvyn Sopacua
At 09:58 3/10/2003, Zeev Suraski wrote: I agree, this auto language detection is quite annoying... It detects upon the user-prefered language in the browser, hence I don't have this problem as I prefer english in browser. But yes - if you prefer your native language in general, this can be

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Derick Rethans
On Mon, 10 Mar 2003, Zeev Suraski wrote: I agree, this auto language detection is quite annoying... I concur, why not add a cookie which remembers the last chosen language? Derick -- my other box is your windows PC

Re: [PHP-DEV] iterating objects with interfaces

2003-03-10 Thread Andrei Zmievski
Very cool. :) On Sun, 09 Mar 2003, Marcus Börger wrote: Hi, i've just done the first step for a new extension which shall make use of interfaces newly implemented in ZE2. currently the extension implements the namespace spl and the interfaces spl_foreach, spl_forward and spl_key. A

Re: [PHP-DEV] [patch] solaris getcwd() brokeness

2003-03-10 Thread Jani Taskinen
Andi, what's the status with this? --Jani On Sun, 23 Feb 2003, Wez Furlong wrote: Hi Andi (and James) Andi: I'd appreciate your comments on this patch, specifically if there are any concerns about it doing the right thing. Most people here:

Re: [PHP-DEV] iterating objects with interfaces

2003-03-10 Thread Brad LaFountain
This IS pretty cool stuff. Just a comment about the namespace, as i see more of these things added as time goes on. since you are already adding the 'spl' namespace why are you prefixing the classes with the namespace still? This is the whole point of using namespaces. I feel it should be

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Gabor Hojtsy
I agree, this auto language detection is quite annoying... I concur, why not add a cookie which remembers the last chosen language? OK, I am not a php-dev member, so I have not read your mails. Can someone please summarize the problems or provide me with links to archived mails explaining

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Derick Rethans
On Mon, 10 Mar 2003, Derick Rethans wrote: Here is the original mail: snip and one more: It detects upon the user-prefered language in the browser, hence I don't have this problem as I prefer english in browser. But yes - if you prefer your native language in general,

[PHP-DEV] Re: CVS access

2003-03-10 Thread Tom Sommer
On Mon, 10 Mar 2003 10:03:22 +0100, Jn uavec wrote: I need CVS access into PHP CVS repository. I have project with code name DotPHP. See CVS repository in http://sourceforge. net/projects/webcomp. I want add this directory into PHP directory... You will need to fill in the forms available

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Gabor Hojtsy
is there any chance that we can revert this annoying feature? The translated documentation is always behind and partly lacks important information from the english version. I want to read the documentation in english (and I am not the only one). This is only possible if I change the url after

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Gabor Hojtsy
It detects upon the user-prefered language in the browser, hence I don't have this problem as I prefer english in browser. But yes - if you prefer your native language in general, this can be annoying especially since you don't have any control over it (like with a cookie saving general

Re: [PHP-DEV] CVS access

2003-03-10 Thread Rasmus Lerdorf
Unless I am missing something, I don't see how this stuff belongs in PHP CVS at all. Could you explain why you think this needs to be in the core language CVS? -Rasmus On Mon, 10 Mar 2003, [iso-8859-2] Jn uavec wrote: I need CVS access into PHP CVS repository. I have project with code name

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Derick Rethans
On Mon, 10 Mar 2003, Gabor Hojtsy wrote: It detects upon the user-prefered language in the browser, hence I don't have this problem as I prefer english in browser. But yes - if you prefer your native language in general, this can be annoying especially since you don't have any control

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Rasmus Lerdorf
What browser denies you from setting this accept-language thing? You do have control over it, and it is far more general then having a cookie in the browser. Which is also not that flexible, as we would probably only store one language code. Gabor, the problem is that you can't override it.

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Gabor Hojtsy
What browser denies you from setting this accept-language thing? You do have control over it, and it is far more general then having a cookie in the browser. Which is also not that flexible, as we would probably only store one language code. Gabor, the problem is that you can't override

Re: [PHP-DEV] Apache2 SAPI - etag support?

2003-03-10 Thread Ian Holsman
Hi Ilia I was wondering if you thing we should have etag support as well as the last-modified header you added. if so .. we need to add ap_set_etag(r) just after the ap_set_last_modified(r) call. what do you guys think? Ilia --Ian -- PHP Development Mailing List http://www.php.net/ To

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Mincu Alexandru
why not set your browser accept language to english? On Mon, 2003-03-10 at 10:58, Zeev Suraski wrote: I agree, this auto language detection is quite annoying... Zeev At 11:05 10/03/2003, Stefan Esser wrote: Good morning, is there any chance that we can revert this annoying feature?

Re: [PHP-DEV] Language Auto Detection / www.php.net

2003-03-10 Thread Wez Furlong
Perhaps because he prefers to read most sites in his native language? --Wez. On Mon, 10 Mar 2003, Mincu Alexandru wrote: why not set your browser accept language to english? -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] iterating objects with interfaces

2003-03-10 Thread Marcus Börger
At 15:51 10.03.2003, Brad LaFountain wrote: This IS pretty cool stuff. Just a comment about the namespace, as i see more of these things added as time goes on. since you are already adding the 'spl' namespace why are you prefixing the classes with the namespace still? This is the whole point of

[PHP-DEV] CVS Account Request: enough

2003-03-10 Thread Hussain Chaikh Hamad
I would like to particapate with Arabic translation team, to translate from English to Arabic; I have studied PHP for more than three years and I would like to sgare my knowledge with others. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit:

[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard var.c

2003-03-10 Thread Sebastian Bergmann
Andrei Zmievski wrote: andreiMon Mar 10 10:13:33 2003 EDT Modified files: /php4/ext/standardvar.c Log: Print the object handle (it's useful). Can I have my get_object_handle() function, too, pretty please? ;-) Besides, IIRC, Andi said back then that

[PHP-DEV] Opening files for write from php modules

2003-03-10 Thread Scott Baker
I'm trying to write an extention that calls a C++ lib i've written. I've gotten the module to compile and function mostly correctly, but I have a problem opening files for writing within functions of the lib. My code links libpng to write image files to a img directory on the webserver. The

Re: [PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard var.c

2003-03-10 Thread Andrei Zmievski
On Mon, 10 Mar 2003, Sebastian Bergmann wrote: Can I have my get_object_handle() function, too, pretty please? ;-) Besides, IIRC, Andi said back then that the object handle is not unique. But it's still useful. -Andrei http://www.gravitonic.com/

[PHP-DEV] Fix for bug #22386

2003-03-10 Thread J Smith
The browscap extension is trying to load stuff into the object_store before it gets initialized, so this'll fix it. Entries from the browscap.ini file are now stored in straight hashes rather than objects, but the return value is still an object. Additionally, this patch adds an optional

[PHP-DEV] Re: Opening files for write from php modules

2003-03-10 Thread Scott Baker
Nevermind... Seems the webserver was on afs filespace, and apache/php didnt like the permissions it had there. Everything works now that I moved it to a jfs filesystem. Scott Baker wrote: I'm trying to write an extention that calls a C++ lib i've written. I've gotten the module to compile and

Re: [PHP-DEV] Further outstanding 64-bit issues with PHP_4_3

2003-03-10 Thread Dave Hill
James Devenish wrote: Remaining zend_parse_parameters problems: php4/ext/ftp/php_ftp.c php4/ext/sockets/sockets.c You were right - I missed some changes, although part of it was due to the code drift between the head and the 4_3 branch. Submitted to both php4 and php_4_3 General LP64

[PHP-DEV] PHP Lists not hiding email address

2003-03-10 Thread Ryan
Hi, I'm getting a lot of spam leading from some of the pages on zend.com/lists/php-dev/ The bug edit pages hide the email address. But the static archives like http://www.zend.com/lists/php-dev/200110/msg02161.html don't hide them. Could you fix this? Thanks, Ryan -- PHP Development Mailing

Re: [PHP-DEV] PHP Lists not hiding email address

2003-03-10 Thread Rasmus Lerdorf
On Tue, 11 Mar 2003, Ryan wrote: Hi, I'm getting a lot of spam leading from some of the pages on zend.com/lists/php-dev/ The bug edit pages hide the email address. But the static archives like http://www.zend.com/lists/php-dev/200110/msg02161.html don't hide them. Could you fix this?

[PHP-DEV] php_gettext.dll

2003-03-10 Thread Nathan Fredrickson
Hi, Is the CVS source out of date for gettext extension? The distributed php_gettext.dll dynamically loads libintl-1.dll. The php_gettext.dll I built from the CVS source is linked to gnu_gettext.lib. How can I build a php_gettext.dll that works like the one in the win32 binary distribution?

[PHP-DEV] URGENT BUSINESS RELATIONSHIP

2003-03-10 Thread DR JONES ABDUL
The Palace of King of Ogoni Kingdom, Ogoni Oil producing community, Rivers State Nigeria. Dear Sir, I am Princess Grace , daughter of HRH King Solomon Abonime, the king of Ogoni Kingdom. I am 25 years old and a graduate of Mass Communication. My father was the king of Ogoni Kingdom the highest

[PHP-DEV] URGENT BUSINESS RELATIONSHIP

2003-03-10 Thread DR JONES ABDUL
The Palace of King of Ogoni Kingdom, Ogoni Oil producing community, Rivers State Nigeria. Dear Sir, I am Princess Grace , daughter of HRH King Solomon Abonime, the king of Ogoni Kingdom. I am 25 years old and a graduate of Mass Communication. My father was the king of Ogoni Kingdom the highest

[PHP-DEV] CVS Account Request: alkha6ar

2003-03-09 Thread Mohammed Mosaid Al_Otaibi
Saudi Arabia - Riyadh -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: iterating objects with interfaces

2003-03-09 Thread Marcus Börger
At 08:39 09.03.2003, l0t3k wrote: you're not campaigning for sainthood, are you ;-) LOL ive been reading python docs today, and their iterators and sequences are one of the things that make it so powerful yet simple because of their consistency throughout. This has nothing to do with perl. It is

[PHP-DEV] Question on startup

2003-03-09 Thread Marcus Börger
Can anybody answer this: Why do we have a sapi_deactivate(TSRMLS_C); call in php_module_startup()? marcus -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Re: [WARNING] Release process for 4.3.2 starts RSN..

2003-03-09 Thread Peter Neuman
Hi, To get this thing started, I'm going to roll PHP 4.3.2-pre1 on Wednesday, 26th Feb, around 3pm EEST. And I'll announce it on php-general too, to get some more people testing it before we start with any RCs Now is 9. March 2003, Why not Start PHP 4.3.2-pre1?. I need a Stable 4.3.2,

Re: [PHP-DEV] Re: [WARNING] Release process for 4.3.2 starts RSN..

2003-03-09 Thread Derick Rethans
On Sun, 9 Mar 2003, Peter Neuman wrote: To get this thing started, I'm going to roll PHP 4.3.2-pre1 on Wednesday, 26th Feb, around 3pm EEST. And I'll announce it on php-general too, to get some more people testing it before we start with any RCs Now is 9. March 2003, Why not Start PHP

Re: [PHP-DEV] [WARNING] Release process for 4.3.2 starts RSN..

2003-03-09 Thread Derick Rethans
Hello, I guess nobody is interested in fixing this? Then I guess we won't get 4.3.2 ever. Derick On Mon, 24 Feb 2003, Jani Taskinen wrote: To get this thing started, I'm going to roll PHP 4.3.2-pre1 on Wednesday, 26th Feb, around 3pm EEST. And I'll announce it on php-general

Re: [PHP-DEV] Re: [WARNING] Release process for 4.3.2 starts RSN..

2003-03-09 Thread Dan Hardiker
Remeber we are volunteers and sometimes we find it more interesting to hang out in a pub and drink Finlandia then to release PHP. Any particular pub? Im up for a few pints ;) -- Dan Hardiker [EMAIL PROTECTED] ADAM Software Systems Engineer First Creative -- PHP Development Mailing List

Re: [PHP-DEV] Re: [WARNING] Release process for 4.3.2 starts RSN..

2003-03-09 Thread Dan Hardiker
Remeber we are volunteers and sometimes we find it more interesting to hang out in a pub and drink Finlandia then to release PHP. Any particular pub? Im up for a few pints ;) -- Dan Hardiker [EMAIL PROTECTED] ADAM Software Systems Engineer First Creative -- PHP Development Mailing List

[PHP-DEV] CVS Account Request: go

2003-03-09 Thread php goto2
OK -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: hafid

2003-03-09 Thread Hafid Benhadria
Translating the documentation to Arabic. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Request : PHP Symbian os

2003-03-09 Thread Hatem Ben
Greetings all, Have someone already tryed to use/compile/code PHP on Symbian OS ? Cheers, Hatem -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] iterating objects with interfaces

2003-03-09 Thread Marcus Börger
At 06:54 09.03.2003, Marcus Börger wrote: Hi, i've just done the first step for a new extension which shall make use of interfaces newly implemented in ZE2. SPL is updated and supports a complete set of iterator interfaces. After moving from Minit/shutdown to Rinit/shutdown i also have no more

[PHP-DEV] CVS Account Request: tomh

2003-03-09 Thread Tom Hayswood
Hello, I would like to contribute to, and maintain the Language Reference and Features sections of the english version of the PHP manual, especially variable variables and the OOP areas. I would also like to update the mySQL documentation as some parts of it are unclear, such as mysql_query

Re: [PHP-DEV] [PATCH] OCI8 link failure (Tru64/AIX) (#22324)

2003-03-09 Thread Jani Taskinen
I still don't think we should be linking with libocijdbc8 in any case. Can you ask some Oracle support why their libs differ with same version but in different OSes?? --Jani On Sat, 8 Mar 2003, Michael Mauch wrote: Hi, this is a repost of my article from Monday, 03

Re: [PHP-DEV] [WARNING] Release process for 4.3.2 starts RSN..

2003-03-09 Thread David Brown
On Sun, Mar 09, 2003 at 05:17:37PM +0100, Derick Rethans wrote: | Hello, | | I guess nobody is interested in fixing this? Then I guess we won't get | 4.3.2 ever. | | To get this thing started, I'm going to roll PHP 4.3.2-pre1 | on Wednesday, 26th Feb, around 3pm EEST. And I'll

[PHP-DEV] Further outstanding 64-bit issues with PHP_4_3

2003-03-08 Thread James Devenish
Hi, Just looking at CVS diffs (can't compile at the moment due to ./configure breakage), I can see... Remaining zend_parse_parameters problems: php4/ext/ftp/php_ftp.c php4/ext/sockets/sockets.c General LP64 incompatabilities left over from my November patches:

[PHP-DEV] [PATCH] OCI8 link failure (Tru64/AIX) (#22324)

2003-03-08 Thread Michael Mauch
Hi, this is a repost of my article from Monday, 03 March. Perhaps it has gone unnoticed because of the discussion about OnUpdateInt()? If it was noticed, but the patch just sucks, please say so. My older patch for the link problems with OCI8 on Tru64 broke the build on AIX and maybe other

Re: [PHP-DEV] Namespaces

2003-03-08 Thread Derick Rethans
On Sat, 8 Mar 2003, l0t3k wrote: this may be a bit premature, but how do i inject the classes, functions and constants in my extension into a namespace ? You can't do that. Derick -- my other box is your windows PC

[PHP-DEV] Weak references

2003-03-08 Thread Chris Vandomelen
I've written a simple extension for supporting weak (non-refcounted) references in PHP, so that object graphs which reference themselves will function properly. I don't know if this will be useful to anyone else, but the code for the extension can be found at

Re: [PHP-DEV] Weak references

2003-03-08 Thread Chris Vandomelen
Ack. Helps if I 'chmod a+r ~/public_html/php-ext-weakref.tgz'. Chris On Sat, 8 Mar 2003, Chris Vandomelen wrote: I've written a simple extension for supporting weak (non-refcounted) references in PHP, so that object graphs which reference themselves will function properly. I don't know if

Re: [PHP-DEV] Apache2 SAPI

2003-03-08 Thread Jean-Michel Dault
Le ven 07/03/2003 à 20:29, Ian Holsman a écrit : I think it would be in everyone's best interest if apache2handler was introduced in 4.3.X series probably replace the current apache2filter all together. I'm big +1 on this as it can be considered as a FIX.. Let's just replace the

Re: [PHP-DEV] Namespaces

2003-03-08 Thread l0t3k
Derick, is this planned then ? it would make no sense not to support it. actually i should clarify that i want the extension to define its own namespace into which all its classes, consts and vars go (as opposed to inserting into a preexisting one). Derick Rethans [EMAIL PROTECTED] wrote in

Re: [PHP-DEV] Namespaces

2003-03-08 Thread Derick Rethans
On Sat, 8 Mar 2003, l0t3k wrote: Derick, is this planned then ? it would make no sense not to support it. actually i should clarify that i want the extension to define its own namespace into which all its classes, consts and vars go (as opposed to inserting into a preexisting one). Ah,

Re: [PHP-DEV] Bug fixing and CVS

2003-03-08 Thread Derick Rethans
On Fri, 7 Mar 2003, Jean-Michel Dault wrote: I maintain PHP for Mandrake Linux, and I try to ship a bug-free PHP. bug-free doesn't exist :) That is, if there were some showstopper bugs that were not corrected in 4.3.1, I take the bugfixes from CVS and apply them. If you want to do that,

[PHP-DEV] PHP 4 Bug Summary Report

2003-03-08 Thread php-dev
PHP 4 Bug Database summary - http://bugs.php.net Num Status Summary (1080 total including feature requests) ===[*Configuration Issues] 19282 Wont fix Place php4ts.dll into \sapi 20490 Analyzed enable versioning not supported on OSX

[PHP-DEV] Re: Further outstanding 64-bit issues with PHP_4_3

2003-03-08 Thread David Hill
Thanks, will look at these and see if I can't get them in with Jani's permission. The OnUpdateLong is in my cvs queue, but I was getting a karma issue on Friday. Out of curiosity - which platform do you use ? I am on Tru64 and am working with the HP-UX folks. It would be interesting to know what

Re: [PHP-DEV] Bug fixing and CVS

2003-03-08 Thread Jean-Michel Dault
Le sam 08/03/2003 à 10:31, Derick Rethans a écrit : I maintain PHP for Mandrake Linux, and I try to ship a bug-free PHP. bug-free doesn't exist :) I said I try ;-) I always try the impossible ;-) That is, if there were some showstopper bugs that were not corrected in 4.3.1, I take the

Re: [PHP-DEV] Bug fixing and CVS

2003-03-08 Thread Sascha Schumann
I would, but the problem is that the snaps are always updated, and the The constant names are php4-latest.tar.bz2 php4-STABLE-latest.tar.bz2 php5-latest.tar.bz2 old files deleted, and my QA requires that the sources be always available at the same URL. The sources are

Re: [PHP-DEV] Bug fixing and CVS

2003-03-08 Thread Derick Rethans
On Sat, 8 Mar 2003, Jean-Michel Dault wrote: Also, right now Mandrake is in deep freeze, so I can only add new patches if they are fully documented and tested. I just can't diff the cvs with the standard version and apply the changes, otherwise the package won't be accepted. That's not

[PHP-DEV] Re: Can't commit to /pear/PHPUnit

2003-03-08 Thread Derick Rethans
On Sat, 8 Mar 2003, Derick Rethans wrote: On Sat, 8 Mar 2003, Sebastian Bergmann wrote: For some hours now I get messages like cvs server: [10:05:26] waiting for cvs's lock in /repository/pear/PHPUnit Maybe someone could look into this, I did try to look into that,

Re: [PHP-DEV] Bug fixing and CVS

2003-03-08 Thread Jean-Michel Dault
Le sam 08/03/2003 à 12:59, Derick Rethans a écrit : Also, right now Mandrake is in deep freeze, so I can only add new patches if they are fully documented and tested. I just can't diff the cvs with the standard version and apply the changes, otherwise the package won't be accepted. That's

[PHP-DEV] Zend HEAD changes

2003-03-08 Thread Peter Bowen
There appear to have been changes checked in to Zend/ after it branched for PHP 4.3. Many of these have been backported the 4.3 branch, but a few things appear to be orphaned on HEAD. The attached patch has those changes which have not yet been backported. Is there chance that some of these,

[PHP-DEV] Re: php_xslt: xslt_set_encoding

2003-03-08 Thread Alexandru COSTIN
Hello, Indeed they don't have the set_encoding function compiled in (even if the full iconv is redistributed with php). Anyway, I suggest you to take a look at the domxslt extension, is way much faster (and uses directly UTF-8 internally) Alexandru Michel Sahyoun

Re: [PHP-DEV] Namespaces

2003-03-08 Thread Marcus Börger
At 08:10 08.03.2003, l0t3k wrote: this may be a bit premature, but how do i inject the classes, functions and constants in my extension into a namespace ? l0t3k See below :-) marcus /* {{{ register_namespace */ /* You will have to alloc the pns before the call */ void

Re: [PHP-DEV] Fix for wordwrap()

2003-03-08 Thread Tom Sommer
On Fri, 7 Mar 2003 08:20:19 +0100, Jedi/Sector One wrote: $a = w\nphprules\nw; print wordwrap($a, 10, 'br /', 10); Output : wwbr /wwbr /w phprbr /ules wbr / It's not it breaks with br / after 10 chars by force, because

Re: [PHP-DEV] Fix for wordwrap()

2003-03-08 Thread Derick Rethans
On Sun, 9 Mar 2003, Tom Sommer wrote: PS. cut should had been a boolean, IMHO :) It is: zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, s|lsb (b = boolean) Derick -- my other box is your windows PC

Re: [PHP-DEV] Fix for wordwrap()

2003-03-08 Thread Tom Sommer
On Sun, 9 Mar 2003 01:05:01 +0100 (CET), Derick Rethans wrote: It is: zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, s|lsb (b = boolean) Ok, the documentation says it is an integer... (ofcause true == 1, but still) -- Tom Sommer, denmark www.tsn.dk - www.dreamcoder.dk -- PHP

Re: [PHP-DEV] Fix for wordwrap()

2003-03-08 Thread Derick Rethans
On Sun, 9 Mar 2003, Tom Sommer wrote: On Sun, 9 Mar 2003 01:05:01 +0100 (CET), Derick Rethans wrote: It is: zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, s|lsb (b = boolean) Ok, the documentation says it is an integer... (ofcause true == 1, but still) Docs were wrong, I just

Re: [PHP-DEV] Fix for wordwrap()

2003-03-08 Thread Tom Sommer
On Sun, 9 Mar 2003 01:07:53 +0100 (CET), Derick Rethans wrote: Docs were wrong, I just fixed that. methodparam choice=opttypeboolean/typeparametercut/parameter/methodparam should be methodparam choice=opttypebool/typeparametercut/parameter/methodparam since all other doc elements use bool

Re: [PHP-DEV] Fix for wordwrap()

2003-03-08 Thread Tom Sommer
On Sun, 9 Mar 2003 01:07:53 +0100 (CET), Derick Rethans wrote: Docs were wrong, I just fixed that. oh, and the examples and the text about cut needs to be changed to :) If the parametercut/parameter is set to *1* -- Tom Sommer, denmark www.tsn.dk - www.dreamcoder.dk -- PHP Development

[PHP-DEV] news.php.net - mailing list gateway broken?

2003-03-08 Thread Michael Mauch
Hi, I'm using nntp://news.php.net to post to the php-dev mailing list - at least I hoped so. My (very few) articles show up nicely on http://news.php.net and on http://groups.google.com, but in the mailing list archives they end up with just an IP address as From: address (see e.g.

[PHP-DEV] Re: news.php.net - mailing list gateway broken?

2003-03-08 Thread Michael Mauch
I wrote: [...] in the mailing list archives they end up with just an IP address as From: address (see e.g. http://marc.theaimsgroup.com/?l=php-devm=104712105011151w=2). I suspect that this sort of From: is dropped right on the floor by the mailing list software. No, the article looks ok

Re: [PHP-DEV] Namespaces

2003-03-08 Thread l0t3k
You, sir, are a gentleman and a scholar ;-) i assume that given your familiarity and recent work with ZE2 that this will be merged ? i can live with a locally patched tree for the moment.. i assume i ZE2 cleans all this up for me after MSHUTDOWN (i.e. i dont need to worry about doing so

Re: [PHP-DEV] Namespaces

2003-03-08 Thread Marcus Börger
At 03:36 09.03.2003, l0t3k wrote: You, sir, are a gentleman and a scholar ;-) i assume that given your familiarity and recent work with ZE2 that this will be merged ? i can live with a locally patched tree for the moment.. No plans on that yet. For now i am using this functionality for a new

[PHP-DEV] iterating objects with interfaces

2003-03-08 Thread Marcus Börger
Hi, i've just done the first step for a new extension which shall make use of interfaces newly implemented in ZE2. currently the extension implements the namespace spl and the interfaces spl_foreach, spl_forward and spl_key. A class that implements these can be used in a foreach() call. This

[PHP-DEV] Re: iterating objects with interfaces

2003-03-08 Thread l0t3k
you're not campaigning for sainthood, are you ;-) ive been reading python docs today, and their iterators and sequences are one of the things that make it so powerful yet simple because of their consistency throughout. what do you mean you didnt have to modify the engine ? did you mess with the

Re: [PHP-DEV] New extension: netfilter/iptables

2003-03-07 Thread Corne' Cornelius
Can i code a netfilter extension for PHP or don't you guys see the need for it ? It could result in some great firewall frontends in PHP Go for it. Assuming the netfilter library is not under the GPL. LGPL is fine. -Rasmus It's under GPL, i'll email their core team and ask if

[PHP-DEV] Specifying pass-by-ref parameters

2003-03-07 Thread l0t3k
im a bit rusty, so could someone explain how i would set up a function to accept a byref parameter ? no zend api documentation i ran across is clear on this issue. l0t3k -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: messju

2003-03-07 Thread messju mohr
hello, i need a cvs-account for development on the smarty repository. is here the right place to apply for one? regards messju -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] CVS Account Request: messju

2003-03-07 Thread Derick Rethans
Hi, On Fri, 7 Mar 2003, messju mohr wrote: i need a cvs-account for development on the smarty repository. is here the right place to apply for one? You will need to fill in the forms available on: http://www.php.net/cvs-php.php Derick -- Stop

[PHP-DEV] CVS Account Request: messju

2003-03-07 Thread Messju Mohr
I need it for active development on the Smarty Template Engine. Monte Ohrt [EMAIL PROTECTED] who is the maintainer it asked me for help with smarty. He will give me access to the smarty-Repository, once i have a cvs-account. Thanks in advance... -- PHP Development Mailing List

[PHP-DEV] Sqlite-php module in php-distribution?

2003-03-07 Thread Björn Kalkbrenner
Hi, At http://sourceforge.net/projects/sqlite-php/, i found a module for php which implements database functions for sqlite (http://www.sqlite.org) which is a wonderful small, efficient and fast flatfile sql database. I compiled it yesterday and was very surprised. I think i want to develop on

Re: [PHP-DEV] Sqlite-php module in php-distribution?

2003-03-07 Thread Sebastian Bergmann
Björn Kalkbrenner wrote: is there a way to contribute that module (or another module) to the core php distribution ? Modules like the one you mention should go into PECL [1]. -- [1] http://pear.php.net/ -- Sebastian Bergmann http://sebastian-bergmann.de/

Re: [PHP-DEV] Specifying pass-by-ref parameters

2003-03-07 Thread Wez Furlong
Look at the function table in basic_functions.c: { PHP_FE(nameoffunc), NULL } This NULL can be replaced with an array that specifies BYREF_FORCE for the relevant arguments; look for first_and_second__args_force_ref for an exmaple. --Wez. On Fri, 7 Mar 2003, l0t3k

<    1   2   3   4   5   6   7   8   9   10   >