Re: [PHP-DEV] bug #43941

2008-08-21 Thread William A. Rowe, Jr.
David Zülke wrote: Am 21.08.2008 um 18:50 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 18:41 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 18:08 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 03:34 schrieb William A. Rowe, Jr.: Stanislav Malysh

Re: [PHP-DEV] [RFC] TSRM patch

2008-08-21 Thread Stanislav Malyshev
Hi! How shall we continue with this patch? I think we need to figure out what happens with dynamic loading, especially on Windows. Then having tsrm_ls stored in __thread variable seems to be the best solution, if storing globals in __thread doesn't work with DLLs (which appears to be the ca

Re: [PHP-DEV] bug #43941

2008-08-21 Thread David Zülke
Am 21.08.2008 um 19:03 schrieb Rasmus Lerdorf: David Zülke wrote: Interesting. I assume that was a weakness in the respective implementation, right? Since 0xE0 " > should never be regarded a valid sequence since neither " nor > are in the range above 0x7F... But that's what we are talkin

Re: [PHP-DEV] bug #43941

2008-08-21 Thread Rasmus Lerdorf
David Zülke wrote: Interesting. I assume that was a weakness in the respective implementation, right? Since 0xE0 " > should never be regarded a valid sequence since neither " nor > are in the range above 0x7F... But that's what we are talking about. What to do with invalid sequences. The E

Re: [PHP-DEV] bug #43941

2008-08-21 Thread David Zülke
Am 21.08.2008 um 18:50 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 18:41 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 18:08 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 03:34 schrieb William A. Rowe, Jr.: Stanislav Malyshev wrote: Hi! Are t

Re: [PHP-DEV] bug #43941

2008-08-21 Thread Rasmus Lerdorf
David Zülke wrote: Am 21.08.2008 um 18:41 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 18:08 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 03:34 schrieb William A. Rowe, Jr.: Stanislav Malyshev wrote: Hi! Are there any objections to incorporating bugfix for #

Re: [PHP-DEV] bug #43941

2008-08-21 Thread David Zülke
Am 21.08.2008 um 18:41 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 18:08 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 03:34 schrieb William A. Rowe, Jr.: Stanislav Malyshev wrote: Hi! Are there any objections to incorporating bugfix for #43941 (fix for ho

Re: [PHP-DEV] bug #43941

2008-08-21 Thread Rasmus Lerdorf
David Zülke wrote: Am 21.08.2008 um 18:08 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 03:34 schrieb William A. Rowe, Jr.: Stanislav Malyshev wrote: Hi! Are there any objections to incorporating bugfix for #43941 (fix for how json handles invalid UTF-8 sequences) into 5.2? I

Re: [PHP-DEV] Unable to load Intl extension

2008-08-21 Thread Pierre Joye
hi Ryan, On Thu, Aug 21, 2008 at 6:02 PM, Ryan Panning <[EMAIL PROTECTED]> wrote: > Pierre Joye wrote: >> >> hi Ryan, >> >> The ICU dlls were missing from the packages. The latest snapshots have >> them. My apologizes for not having catched this error, I had ICU >> installed system wide here (not

Re: [PHP-DEV] bug #43941

2008-08-21 Thread David Zülke
Am 21.08.2008 um 18:08 schrieb Rasmus Lerdorf: David Zülke wrote: Am 21.08.2008 um 03:34 schrieb William A. Rowe, Jr.: Stanislav Malyshev wrote: Hi! Are there any objections to incorporating bugfix for #43941 (fix for how json handles invalid UTF-8 sequences) into 5.2? I had some requests

Re: [PHP-DEV] bug #43941

2008-08-21 Thread Rasmus Lerdorf
David Zülke wrote: Am 21.08.2008 um 03:34 schrieb William A. Rowe, Jr.: Stanislav Malyshev wrote: Hi! Are there any objections to incorporating bugfix for #43941 (fix for how json handles invalid UTF-8 sequences) into 5.2? I had some requests about it, right now it's only in 5.3+. Is there t

Re: [PHP-DEV] Unable to load Intl extension

2008-08-21 Thread Ryan Panning
Pierre Joye wrote: hi Ryan, The ICU dlls were missing from the packages. The latest snapshots have them. My apologizes for not having catched this error, I had ICU installed system wide here (not the case anymore :). Thanks for testing and for your feedbacks! Cheers, Hi, I downloaded a new

[PHP-DEV] [PATCH] Bug #45477: changing passwords on MS Active Directory/Novell Directory Server (LDAP)

2008-08-21 Thread Alexis ROBERT
Hi, As explained in http://bugs.php.net/bug.php?id=45477 it's not possible to change the userPassword attribute using PHP on NDS/AD because these LDAP servers require to perform the deleteAttribute and addAttribute operations in the same LDAP request. Currently working at Hachette-Livre (Par

Re: [PHP-DEV] potential shutdown order issue

2008-08-21 Thread Dmitry Stogov
I missed the problem. How can I reproduce it? Thanks. Dmitry. Lukas Kahwe Smith wrote: On 17.07.2008, at 03:29, Greg Beaver wrote: Stanislav Malyshev wrote: Hi! zend_destroy_rsrc_list(&EG(regular_list)). On the next line, zend_post_deactivate_modules() is called, which steps through the

Re: [PHP-DEV] Namespace Global User Function Calls

2008-08-21 Thread Dmitry Stogov
Don't you forget the "echo"? Dmitry. Ryan Panning wrote: I can't seem to get global user function calls to work from namespaces in the latest 5.3 snaps. This is on Win XP SP2 using Apache 2.2.8 and the php5apache2_2.dll. Example: global_file.php --- require 'namespace_file.php';

Re: [PHP-DEV] Namespace Global User Function Calls

2008-08-21 Thread Ryan Panning
Stanislav Malyshev wrote: Hi! Tried this code (adding echo before 'Global Called!' so that it would actually output something) - works just fine. I noticed that error yesterday when I was testing on another computer. It did work on this computer. I'll have to go back today to the first compute

Re: [PHP-DEV] Namespace Global User Function Calls

2008-08-21 Thread Ryan Panning
Stanislav Malyshev wrote: Hi! Tried this code (adding echo before 'Global Called!' so that it would actually output something) - works just fine. I noticed that error yesterday when I was testing on another computer. It did work on this computer. I'll have to go back today to the first compu

Re: [PHP-DEV] [PATCH] ZTS as fast as non-ZTS

2008-08-21 Thread Arnaud Le Blanc
Hi, On Wednesday 20 August 2008 21:51:05 Kalle Sommer Nielsen wrote: > 2008/8/20 Arnaud Le Blanc <[EMAIL PROTECTED]>: > > Hi, > > > > On Tuesday 19 August 2008 18:22:44 Andi Gutmans wrote: > >> OK checked with Zeev. It seems there are some significant limitations at > >> least on Windows including

Re: [PHP-DEV] [PATCH] ZTS as fast as non-ZTS

2008-08-21 Thread Arnaud Le Blanc
Hi, On Thursday 21 August 2008 09:37:12 Dmitry Stogov wrote: > > Arnaud Le Blanc wrote: > > Hi, > > > > On Tuesday 19 August 2008 09:22:46 Dmitry Stogov wrote: > >> Hi Arnaud, > >> > >> Arnaud Le Blanc wrote: > >>> Hi, > >>> > >>> On Monday 18 August 2008 19:46:46 Dmitry Stogov wrote: > Hi

Re: [PHP-DEV] [PHP] Karma for php-src/ext/standard

2008-08-21 Thread Derick Rethans
On Thu, 21 Aug 2008, Lars Strojny wrote: > Am Donnerstag, den 21.08.2008, 14:54 +0530 schrieb Sanjay Mantoor: > [...] > > I already contributed around 20 tests on array related functions and > > they all got committed. > > I would like to contribute some more tests on array related functions. > >

Re: [PHP-DEV] [PHP] Karma for php-src/ext/standard

2008-08-21 Thread Lars Strojny
Hello Sanja, hi everbody, Am Donnerstag, den 21.08.2008, 14:54 +0530 schrieb Sanjay Mantoor: [...] > I already contributed around 20 tests on array related functions and > they all got committed. > I would like to contribute some more tests on array related functions. > I have CVS account with id

Re: [PHP-DEV] bug #43941

2008-08-21 Thread David Zülke
Am 21.08.2008 um 03:34 schrieb William A. Rowe, Jr.: Stanislav Malyshev wrote: Hi! Are there any objections to incorporating bugfix for #43941 (fix for how json handles invalid UTF-8 sequences) into 5.2? I had some requests about it, right now it's only in 5.3+. Is there the alternative o

[PHP-DEV] [PHP] Karma for php-src/ext/standard

2008-08-21 Thread Sanjay Mantoor
Hello, I already contributed around 20 tests on array related functions and they all got committed. I would like to contribute some more tests on array related functions. I have CVS account with id smantoor. Can somebody grant karma for php-src/ext/standard so that I can commit tests myself. Than

Re: [PHP-DEV] Annotations Request

2008-08-21 Thread Paweł Stradomski
W liście Volodymyr Iatsyshyn z dnia czwartek 21 sierpnia 2008: > Now I use emulation of Java Annotations. I wrote simple class, that uses > PHPDoc block, gets annotations declarations and their arguments, uses > eval() to convert arguments string to array, then I create instance of > class and assi

Re: [PHP-DEV] Annotations Request

2008-08-21 Thread Volodymyr Iatsyshyn
Now I use emulation of Java Annotations. I wrote simple class, that uses PHPDoc block, gets annotations declarations and their arguments, uses eval() to convert arguments string to array, then I create instance of class and assigns parameters. This solution is fine just now, but it will be very

[PHP-DEV] Re: Annotations Request

2008-08-21 Thread Volodymyr Iatsyshyn
Lupus Michaelis wrote: Volodymyr Iatsyshyn a écrit : Now, I use Java Annotations emulation, through Reflections and PHPDoc blocks. Example: Can you provide an URL that explain what is annotation ? Your examples don't help me, so I guess I'm not alone. http://java.sun.com/j2se/1.5.0/docs/

Re: [PHP-DEV] [PATCH] ZTS as fast as non-ZTS

2008-08-21 Thread Dmitry Stogov
Arnaud Le Blanc wrote: Hi, On Tuesday 19 August 2008 09:22:46 Dmitry Stogov wrote: Hi Arnaud, Arnaud Le Blanc wrote: Hi, On Monday 18 August 2008 19:46:46 Dmitry Stogov wrote: Hi Arnaud, The patch looks very interesting. I think it may be committed to the HEAD in the nearest future. I do