Re: [PHP-DEV] Re: PHP 5.1 (Or How to break tousands of apps out there)

2005-11-25 Thread David Kingma
Ilia Alshanetsky wrote: Sascha Schumann wrote: There is no suitable alternative for the 5.1 branch. Assuming that is the case we need to either rename ext/date's date class or ifdef it away. If we rename it, what to date_ex, DateTime, phpDate, something else? ifdef it away and throw a ni

RE: [PHP-DEV] GOTO operator

2004-07-30 Thread David Kingma
>> Where did the if statements go? do_stuff(), do_more_stuff(), and >> do_even_more_stuff() should throw exceptions rather than return >> boolean error indicators. > >Now imagine do_stuff() and friends were native PHP functions ;) Good point, but should we fix this with a goto operator or get

RE: [PHP-DEV] PHP 5.0.1

2004-08-01 Thread David Kingma
He's on holiday, so it might take some time. But please wait with the release until the fixes are merged. David -Original Message- From: Andi Gutmans [mailto:[EMAIL PROTECTED] Sent: Sunday, August 01, 2004 6:41 PM To: Edin Kadribasic; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re

RE: [PHP-DEV] 5.0.4 won't compile as per your instructions

2005-04-05 Thread David Kingma | jool.nl
Hi Jeff, > -Original Message- > From: Jeff Beidler [mailto:[EMAIL PROTECTED] > Would you please be so kind as to take a look at the errors > I'm getting and steer me in the right direction? The solution for error about SQLITE_NOTADB has passed the mailinglist before: http://www.mail-ar

Re: [PHP-DEV] PHP 6.0 Wishlist

2005-08-28 Thread David Kingma | jool.nl
Johannes Schlueter wrote: Hi Sara, On Sunday 28 August 2005 00:02, Sara Golemon wrote: +" And what's with or any other processing instruction? Even so others than xml are rarely used it would imho be a great wtf factor if At a sidenote: If you output xml you anyways neet to set t

[PHP-DEV] Snaps.php.net

2004-09-15 Thread David Kingma - Jool.nl
Not sure if this is the right place to ask, but the win32 snapshots on snaps.php.net don't seem to work anymore. The latest win32 5.X and 5.0.X builds are 5 days old. And it gives a message like: 'Next Latest CVS Win32 snapshot in: please consult /dev/urandom'. Thnx. David -- PHP Internals - PH

RE: [PHP-DEV] Autoboxing in php 5.1

2005-02-12 Thread David Kingma | jool.nl
> -Original Message- > Can't you use the reflection API to get the data? Not yet. My first feature request would be to add a getDocComment() to the ReflectionProperty class. You can generate a WSDL file using the reflection API but for the xml-schema part of the wsdl file you have to manua

FW: [PHP-DEV] Autoboxing in php 5.1

2005-02-13 Thread David Kingma | jool.nl
9 AM > To: Adam Maccabee Trachtenberg > Cc: [EMAIL PROTECTED]; David Kingma | jool.nl; 'Andi Gutmans'; 'Sean > Coates'; 'Ante Drnasin'; internals@lists.php.net > Subject: Re: [PHP-DEV] Autoboxing in php 5.1 > > Hello Adam, > > ok, you propos

Re: [PHP-DEV] php suggestion

2005-02-14 Thread David Kingma | jool.nl
Quoting Ante Drnasin <[EMAIL PROTECTED]>: > ex1: > function AddToDb(mysql_scape_string($text)) { > //enter $text to db > } > which would be the same as > function AddToDb($text) { > $text = mysql_escape_string($text); > //enter $text to db > } > > ex2: > > function removeDigitsFrom

RE: FW: [PHP-DEV] Autoboxing in php 5.1

2005-02-14 Thread David Kingma | jool.nl
Hi Chegru > -Original Message- > > I'm currently trying to add the Canonicalization functionality, but > > since I'm not a C expert, it takes a while :) > > Shouldn't be to hard, if your talking about the functions described at > > http://xmlsoft.org/html/libxml-c14n.html > That's in

[PHP-DEV] [patch] DOM canonize method

2005-02-16 Thread David Kingma | jool.nl
Hi Rob / Chregu, As a first (small) step to implementing xml-security specs (dig-sign, encryption) I created a patch against HEAD to expose (exclusive-)C14n functionality from libxml2. I allows you to canonize a single node (with it's children) or a whole document, with or without comments, exclus

RE: [PHP-DEV] Re: [patch] DOM canonize method

2005-02-17 Thread David Kingma | jool.nl
> -Original Message- > D.Kingma wrote: > > > Hi Rob / Chregu, > > > > As a first (small) step to implementing xml-security specs > (dig-sign, > > encryption) I created a patch against HEAD to expose > (exclusive-)C14n > > functionality from libxml2. I allows you to canonize a single n

RE: [PHP-DEV] Re: [patch] DOM canonize method

2005-02-17 Thread David Kingma | jool.nl
Hi Rob, Tank you for you extensive reply. > -Original Message- > A few comments from eyeballing the patch: > > - Depending upon how much c14n functionality there is to be, > this might be better off as a standalone extension. This way > it wouldn't be dependant upon DOM (especially if

FW: [PHP-DEV] compile php5 with vc++ for windows

2005-02-22 Thread David Kingma | jool.nl
Hi Alawi, Add the following line #define SQLITE_NOTADB 26 to your sqlite.w32.h and it should work. Regards, David > -Original Message- > From: Alawi Albaity [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 22, 2005 11:54 PM > To: internals@lists.php.net > Subject: [PHP-DEV] compi