[PHP-DEV] Re: [PECL-DEV] FUD-Buster: What is PECL, and how does moving stuff to PECL help us with the core?

2003-12-10 Thread Uwe Steinmann
On Tue, Dec 09, 2003 at 05:40:41PM -, Wez Furlong wrote: > It seems that most people still don't really get the idea behind > PECL, and how moving extensions there is a good idea. > Who is currently doing the move within the cvs repository? Uwe -- MMK GmbH, Universitaetsstr. 11, 58097 Ha

Re: [PHP-DEV] oci in pecl...

2003-12-10 Thread Stig S. Bakken
On Tue, 2003-12-09 at 21:21, Jani Taskinen wrote: > On Tue, 9 Dec 2003, Wez Furlong wrote: > > >> it was actually my idea to for the oci8 stuff - and have some new > >> maintainer maintain it in pecl. > > > >Yep, I remember. > > > >> i see no valid reason against it. he can start hacking on it (

Re: [PHP-DEV] oci in pecl...

2003-12-10 Thread Stig S. Bakken
On Tue, 2003-12-09 at 21:24, Wez Furlong wrote: > > And you're moving us into the support nightmare.. > > Instead of asking what php version they use, we need > > to start asking which possible versions of different > > extensions they happen to use, how they compiled them, > >

Re: [PHP-DEV] With End With

2003-12-10 Thread netcat
On Wed, 2003-12-10 at 03:01, jason davidson wrote: > Ive seen the Control Flow constuct With ...End With used in VB (yup, > VB.. :)) although im not a fan of VB, i liked the feature, is there any > consideration to this kind of construct for php. > here the only example if it i could find online

Re: [PHP-DEV] Re: [PECL-DEV] FUD-Buster: What is PECL, and how does moving stuff to PECL help us with the core?

2003-12-10 Thread Derick Rethans
On Wed, 10 Dec 2003, Uwe Steinmann wrote: > On Tue, Dec 09, 2003 at 05:40:41PM -, Wez Furlong wrote: > > It seems that most people still don't really get the idea behind > > PECL, and how moving extensions there is a good idea. > > > Who is currently doing the move within the cvs repository?

[PHP-DEV] RE: [PECL-DEV] FUD-Buster: What is PECL, and how does moving stuff to PECL help us with the core?

2003-12-10 Thread Paternoster Sergio
Hi all, I'd like to write a new PHP extension, I know C, even if I'm not a guru, but I didn't find a good tutorial about Zend API. Seems that the one on Zend's website is an old version. Am I wrong? Thanx in advance regards Sergio -Original Message- From: Wez Furlong [mailto:[EMAIL PROT

[PHP-DEV] Not calling handlers on property modification

2003-12-10 Thread Simeon Koptelov
Hello internals, I'm writing extension that substitutes object's read_property and write_property handlers with it's own and I found that such code arr[] = $element; } } $a = new A(); $something = new A(); $a->addToArr( $something ); ?> doesn't produce call to read_pr

[PHP-DEV] RE: [PECL-DEV] FUD-Buster: What is PECL, and how does moving stuff to PECL help us with the core?

2003-12-10 Thread Eric COLINET
Hi, I'd like to write a new PHP extension, I know C, even if I'm not a guru, but I didn't find a good tutorial about Zend API. Seems that the one on Zend's website is an old version. Am I wrong? Yes the documentation is a little old but it helps. A book on this subject has been released (Buildi

[PHP-DEV] Commit please?

2003-12-10 Thread Marcus Bointon
Hi, Can someone please commit the patch I posted a few weeks ago for adding MacRoman encoding to htmlentities encodings. The patch is available here: http://www.synchromedia.co.uk/php/html.c.diff.txt Thanks, Marcus -- Marcus Bointon Synchromedia Limited: Putting you in the picture [EMAIL PROT

Re: [PHP-DEV] Commit please?

2003-12-10 Thread Derick Rethans
On Wed, 10 Dec 2003, Marcus Bointon wrote: > Hi, > > Can someone please commit the patch I posted a few weeks ago for adding > MacRoman encoding to htmlentities encodings. Will do. Derick -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.ph

Re: [PHP-DEV] With End With

2003-12-10 Thread BDKR
jason davidson wrote: Ive seen the Control Flow constuct With ...End With used in VB (yup, VB.. :)) although im not a fan of VB, i liked the feature, is there any consideration to this kind of construct for php. here the only example if it i could find online for anyone that hasnt seen it befor

Re: [PHP-DEV] With End With

2003-12-10 Thread walt boring
BDKR wrote: jason davidson wrote: Ive seen the Control Flow constuct With ...End With used in VB (yup, VB.. :)) although im not a fan of VB, i liked the feature, is there any consideration to this kind of construct for php. here the only example if it i could find online for anyone that hasnt

Re: [PHP-DEV] With End With

2003-12-10 Thread Justin Hannus
I've used the "with (object)" construct in JavaScript before and I'm assuming it would work the same, but instead of: With $obj ->methodCall(); // ugly ... it would be much sexier like: with ($obj) { methodCall(); } But its all just sugar. As far as implementing it in userland with a recurs

[PHP-DEV] Bug: XSLT php:functionString

2003-12-10 Thread Adam Maccabee Trachtenberg
The XSLT extension crashes when you call php:functionString() with a non-string handler, like: This patch fixes this problem: http://www.trachtenberg.com/patches/xslt_function_handler.txt -adam -- [EMAIL PROTECTED] -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visi

Re: [PHP-DEV] With End With

2003-12-10 Thread BDKR
walt boring wrote: BDKR wrote: jason davidson wrote: Ive seen the Control Flow constuct With ...End With used in VB (yup, VB.. :)) although im not a fan of VB, i liked the feature, is there any consideration to this kind of construct for php. here the only example if it i could find online for

Re: [PHP-DEV] Bug: XSLT php:functionString

2003-12-10 Thread Christian Stocker
thanks a lot and commited chregu On 12/10/03 10:04 PM, Adam Maccabee Trachtenberg wrote: The XSLT extension crashes when you call php:functionString() with a non-string handler, like: This patch fixes this problem: http://www.trachtenberg.com/patches/xslt_function_handler.txt -adam -- christi

Re: [PHP-DEV] With End With

2003-12-10 Thread netcat
On Wed, 2003-12-10 at 22:42, Justin Hannus wrote: > I've used the "with (object)" construct in JavaScript before and I'm > assuming it would work the same, but instead of: > > With $obj > ->methodCall(); > // ugly ... > > it would be much sexier like: > > with ($obj) { > methodCall(); > } >

[PHP-DEV] re with end with

2003-12-10 Thread jason davidson
i agree that it doesnt look very nice that way, with ->property or ->method() , that doesnt negate its usefullness in my mind however. if it was every imlemented, i would suspect that properties and methods wouldnt be syntaxed the same way, which, for that reason alone, makes it unlikely it

[PHP-DEV] With ..End With

2003-12-10 Thread jason davidson
Here is javascripts implementation of the with construct. http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/stmt.html#1004910 im not as fond of that kind of implementation, but the idea is the same. I prefer to have some kind of syntax that indicates you are calling a met

Re: [PHP-DEV] With End With

2003-12-10 Thread Alan Knowles
This has been discussed before on the mailing list, (either this or ZE2) and rejected. - have a look through the archives Regards Alan netcat wrote: On Wed, 2003-12-10 at 03:01, jason davidson wrote: Ive seen the Control Flow constuct With ...End With used in VB (yup, VB.. :)) although im not a

Re: [PHP-DEV] With End With

2003-12-10 Thread Derek Ford
This is highly unusual I recently started gathering people who could implement and opinions of those who wanted or didn't want a 'with' construct. http://www.phpfreaks.com/forums/topic11451.php I toyed with the idea, and then when I went into core to implement it, I became _very_ confused

Re: [PHP-DEV] With End With

2003-12-10 Thread jason davidson
Derek Ford wrote: This is highly unusual I recently started gathering people who could implement and opinions of those who wanted or didn't want a 'with' construct. http://www.phpfreaks.com/forums/topic11451.php I toyed with the idea, and then when I went into core to implement it, I beca

[PHP-DEV] MySQL User Conference 2004 Call for Papers

2003-12-10 Thread Zak Greant
MySQL AB is please to announce that the Call for Papers for the 2004 MySQL User Conference is now officially open. We encourage every MySQL user with something to say - from grey-bearded hackers and peach-fuzzed power users to corporate code wranglers and veteran DBAs - to drop by http://mysql.

[PHP-DEV] With End With

2003-12-10 Thread jason davidson
If someone could help me find the discusions on the topic, i would greatly appreciate it. I searched and have not found anything yet. Or if someone could explain why the idea was rejected. Thanks jason -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.p

Re: [PHP-DEV] With End With

2003-12-10 Thread Alan Knowles
for the life of me I cant remember the date of it, (or even find it on google/zend.com/marc.theaimsgroup... etc.) from what i remember, it had a number of flaws. a) ambiguaty of the source of a variable or method, (as it was originally illustrated as poluting the local variable namespace) b) t

Re: [PHP-DEV] With End With

2003-12-10 Thread jason davidson
Alan Knowles wrote: for the life of me I cant remember the date of it, (or even find it on google/zend.com/marc.theaimsgroup... etc.) from what i remember, it had a number of flaws. a) ambiguaty of the source of a variable or method, (as it was originally illustrated as poluting the local vari

[PHP-DEV] CVS Account Request: cnu_vs

2003-12-10 Thread srinivas babu
effient code writing -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php