[PHP-CVS] cvs: php-src /ext/unicode unicode_iterators.c

2006-07-07 Thread Andrei Zmievski
andrei Fri Jul 7 22:52:26 2006 UTC Modified files: /php-src/ext/unicodeunicode_iterators.c Log: Implement isBoundary() for code point iterator. http://cvs.php.net/viewvc.cgi/php-src/ext/unicode/unicode_iterators.c?r1=1.32r2=1.33diff_format=u Index:

Re: [PHP-CVS] cvs: php-src /ext/zlib zlib.c

2006-07-07 Thread Andrei Zmievski
+/* {{{ proto array gzfile(string filename [, int use_include_path]) U + Read and uncompress entire .gz-file into an array */ PHP_FUNCTION(gzfile) { char *filename; int filename_len; + zend_uchar filename_type; long flags = 0; char buf[8192];

[PHP-CVS] cvs: php-src /ext/unicode unicode_iterators.c

2006-06-29 Thread Andrei Zmievski
andrei Thu Jun 29 12:32:01 2006 UTC Modified files: /php-src/ext/unicodeunicode_iterators.c Log: Try to make combining sequences work. Not entirely succesful.

[PHP-CVS] cvs: php-src /ext/unicode unicode.c unicode_iterators.c

2006-06-28 Thread Andrei Zmievski
andrei Wed Jun 28 14:12:14 2006 UTC Modified files: /php-src/ext/unicodeunicode.c unicode_iterators.c Log: Rework break iterator based implementation to make it more generic for forward and backwards iterators and to return current elements properly.

[PHP-CVS] cvs: php-src /ext/unicode unicode_iterators.c

2006-06-28 Thread Andrei Zmievski
andrei Wed Jun 28 14:44:36 2006 UTC Modified files: /php-src/ext/unicodeunicode_iterators.c Log: Use object's copied text (fixes some bug somehow). http://cvs.php.net/viewvc.cgi/php-src/ext/unicode/unicode_iterators.c?r1=1.27r2=1.28diff_format=u

[PHP-CVS] cvs: php-src /ext/unicode unicode_iterators.c

2006-06-28 Thread Andrei Zmievski
andrei Wed Jun 28 15:28:55 2006 UTC Modified files: /php-src/ext/unicodeunicode_iterators.c Log: Fix codepoint iterators http://cvs.php.net/viewvc.cgi/php-src/ext/unicode/unicode_iterators.c?r1=1.28r2=1.29diff_format=u Index:

Re: [PHP-CVS] cvs: php-src /ext/unicode unicode_iterators.c

2006-06-25 Thread Andrei Zmievski
:58 AM, Derick Rethans wrote: On Sat, 24 Jun 2006, Andrei Zmievski wrote: andrei Sat Jun 24 18:18:38 2006 UTC Modified files: /php-src/ext/unicodeunicode_iterators.c Log: - Remove support for code units in TextIterator (people shouldn't be examining individual

[PHP-CVS] cvs: php-src /ext/unicode unicode_iterators.c

2006-06-24 Thread Andrei Zmievski
andrei Sat Jun 24 18:18:38 2006 UTC Modified files: /php-src/ext/unicodeunicode_iterators.c Log: - Remove support for code units in TextIterator (people shouldn't be examining individual code units anyway) - Add offset() method. - Add optional

[PHP-CVS] cvs: php-src /ext/unicode unicode_iterators.c

2006-06-24 Thread Andrei Zmievski
andrei Sat Jun 24 21:57:14 2006 UTC Modified files: /php-src/ext/unicodeunicode_iterators.c Log: A lot of work on making TextIterator support propert codepoint-level offsets and making it more robust in general.

[PHP-CVS] cvs: php-src / unicode-todo.txt

2006-06-23 Thread Andrei Zmievski
andrei Fri Jun 23 21:26:48 2006 UTC Modified files: /php-srcunicode-todo.txt Log: http://cvs.php.net/viewvc.cgi/php-src/unicode-todo.txt?r1=1.12r2=1.13diff_format=u Index: php-src/unicode-todo.txt diff -u php-src/unicode-todo.txt:1.12

[PHP-CVS] cvs: php-src / unicode-todo.txt

2006-06-22 Thread Andrei Zmievski
andrei Fri Jun 23 00:08:18 2006 UTC Modified files: /php-srcunicode-todo.txt Log: Update. http://cvs.php.net/viewvc.cgi/php-src/unicode-todo.txt?r1=1.11r2=1.12diff_format=u Index: php-src/unicode-todo.txt diff -u php-src/unicode-todo.txt:1.11

[PHP-CVS] cvs: php-src / unicode-todo.txt

2006-06-22 Thread Andrei Zmievski
andrei Thu Jun 22 23:49:40 2006 UTC Modified files: /php-srcunicode-todo.txt Log: Fixed in ICU 3.6. http://cvs.php.net/viewvc.cgi/php-src/unicode-todo.txt?r1=1.10r2=1.11diff_format=u Index: php-src/unicode-todo.txt diff -u php-src/unicode-todo.txt:1.10

[PHP-CVS] cvs: php-src /main/streams streams.c

2006-06-21 Thread Andrei Zmievski
andrei Wed Jun 21 17:10:13 2006 UTC Modified files: /php-src/main/streams streams.c Log: Typos. http://cvs.php.net/viewvc.cgi/php-src/main/streams/streams.c?r1=1.125r2=1.126diff_format=u Index: php-src/main/streams/streams.c diff -u

[PHP-CVS] cvs: php-src /ext/unicode unicode.c /main/streams filter.c streams.c ZendEngine2 zend_constants.c zend_unicode.c zend_unicode.h

2006-06-21 Thread Andrei Zmievski
andrei Wed Jun 21 20:17:21 2006 UTC Modified files: /ZendEngine2zend_constants.c zend_unicode.c zend_unicode.h /php-src/ext/unicodeunicode.c /php-src/main/streams filter.c streams.c Log: Implement user conversion error handler

[PHP-CVS] cvs: php-src /ext/unicode unicode.c ZendEngine2 zend.c zend_execute_API.c zend_globals.h

2006-06-20 Thread Andrei Zmievski
andrei Tue Jun 20 23:00:02 2006 UTC Modified files: /ZendEngine2zend.c zend_execute_API.c zend_globals.h /php-src/ext/unicodeunicode.c Log: Implement unicode_set_error_handler() / unicode_restore_error_handler(). The error handler doesn't

Re: [PHP-CVS] cvs: php-src /sapi/cli php_cli.c

2006-06-19 Thread Andrei Zmievski
Why can't you have a NULL header function? -Andrei On Jun 19, 2006, at 7:53 AM, Michael Wallner wrote: mikeMon Jun 19 14:53:03 2006 UTC Modified files: /php-src/sapi/cli php_cli.c Log: MFB52: Fix Bug #37780 memory leak trying to execute a non existing file (CLI)

[PHP-CVS] cvs: php-src /ext/unicode php_transform.h transform.c unicode.c

2006-06-15 Thread Andrei Zmievski
andrei Thu Jun 15 17:37:48 2006 UTC Modified files: /php-src/ext/unicodephp_transform.h transform.c unicode.c Log: Rename to str_transliterate(). http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_transform.h?r1=1.1r2=1.2diff_format=u Index:

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/pcre php_pcre.c /ext/pcre/tests bug37800.phpt

2006-06-15 Thread Andrei Zmievski
What's your rationale for this fix? What sort of regression happened? -Andrei On Jun 15, 2006, at 11:33 AM, Nuno Lopes wrote: nlopess Thu Jun 15 15:33:25 2006 UTC Added files: (Branch: PHP_5_2) /php-src/ext/pcre/tests bug37800.phpt Modified files:

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/pcre php_pcre.c /ext/pcre/tests bug37800.phpt

2006-06-15 Thread Andrei Zmievski
Okay. -Andrei On Jun 15, 2006, at 2:01 PM, Nuno Lopes wrote: What's your rationale for this fix? What sort of regression happened? OK, so let me explain: preg_replace($regex, $replace, $str, $limit); Short answer: It was failling if $limit $number_of_matches. How this bug was introduced?

Re: [PHP-CVS] cvs: php-src /ext/unicode config.m4 config.w32 php_transform.h transform.c unicode.c

2006-06-14 Thread Andrei Zmievski
/2006, Andrei Zmievski wrote: What do you mean? -Andrei On Jun 13, 2006, at 5:45 PM, Andi Gutmans wrote: Please fix the naming conventions... -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP CVS Mailing List (http://www.php.net

[PHP-CVS] cvs: php-src /ext/iconv iconv.c

2006-06-13 Thread Andrei Zmievski
andrei Tue Jun 13 15:57:46 2006 UTC Modified files: /php-src/ext/iconv iconv.c Log: Move GINIT definition above re-definition of iconv. Gah. http://cvs.php.net/viewcvs.cgi/php-src/ext/iconv/iconv.c?r1=1.135r2=1.136diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode config.m4 config.w32 php_transform.h transform.c unicode.c

2006-06-13 Thread Andrei Zmievski
send a note to | | [EMAIL PROTECTED] so we can mail you a copy immediately. | +--+ | Authors: Andrei Zmievski [EMAIL PROTECTED

Re: [PHP-CVS] cvs: php-src /ext/unicode config.m4 config.w32 php_transform.h transform.c unicode.c

2006-06-13 Thread Andrei Zmievski
What do you mean? -Andrei On Jun 13, 2006, at 5:45 PM, Andi Gutmans wrote: Please fix the naming conventions... -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/standard array.c php_array.h

2006-06-03 Thread Andrei Zmievski
andrei Sat Jun 3 18:56:44 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/standard array.c php_array.h Log: I swear it wasn't me. http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/array.c?r1=1.308.2.21r2=1.308.2.21.2.1diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/standard array.c php_array.h

2006-06-03 Thread Andrei Zmievski
andrei Sat Jun 3 18:58:40 2006 UTC Modified files: /php-src/ext/standard array.c php_array.h Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/array.c?r1=1.348r2=1.349diff_format=u Index: php-src/ext/standard/array.c diff -u

[PHP-CVS] cvs: php-src(PHP_5_1) /ext/standard array.c php_array.h

2006-06-03 Thread Andrei Zmievski
andrei Sat Jun 3 18:59:55 2006 UTC Modified files: (Branch: PHP_5_1) /php-src/ext/standard array.c php_array.h Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/array.c?r1=1.308.2.21r2=1.308.2.22diff_format=u Index:

[PHP-CVS] cvs: php-src(PHP_4_4) /main php_compat.h

2006-05-31 Thread Andrei Zmievski
andrei Wed May 31 17:17:46 2006 UTC Modified files: (Branch: PHP_4_4) /php-src/main php_compat.h Log: Add pcre_compile2() to the list of aliases. http://cvs.php.net/viewcvs.cgi/php-src/main/php_compat.h?r1=1.11.4.6.2.1r2=1.11.4.6.2.2diff_format=u

[PHP-CVS] cvs: php-src(PHP_5_2) /main main.c php_compat.h

2006-05-31 Thread Andrei Zmievski
andrei Wed May 31 17:18:08 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/main main.c php_compat.h Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/main/main.c?r1=1.640.2.23.2.6r2=1.640.2.23.2.7diff_format=u Index: php-src/main/main.c diff -u

[PHP-CVS] cvs: php-src /main php_compat.h

2006-05-31 Thread Andrei Zmievski
andrei Wed May 31 17:19:05 2006 UTC Modified files: /php-src/main php_compat.h Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/main/php_compat.h?r1=1.28r2=1.29diff_format=u Index: php-src/main/php_compat.h diff -u php-src/main/php_compat.h:1.28

[PHP-CVS] cvs: CVSROOT / avail

2006-05-31 Thread Andrei Zmievski
andrei Wed May 31 17:47:19 2006 UTC Modified files: /CVSROOTavail Log: Give Scott M access to PHP-GTK. http://cvs.php.net/viewcvs.cgi/CVSROOT/avail?r1=1.1136r2=1.1137diff_format=u Index: CVSROOT/avail diff -u CVSROOT/avail:1.1136 CVSROOT/avail:1.1137

[PHP-CVS] cvs: php-src(PHP_5_2) /main main.c

2006-05-31 Thread Andrei Zmievski
andrei Wed May 31 21:48:43 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/main main.c Log: Revert accidentally committed internal patch http://cvs.php.net/viewcvs.cgi/php-src/main/main.c?r1=1.640.2.23.2.7r2=1.640.2.23.2.8diff_format=u Index:

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/spl spl_iterators.c spl_iterators.h /ext/spl/tests iterator_029.phpt

2006-05-10 Thread Andrei Zmievski
andrei Wed May 10 16:50:58 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/splspl_iterators.c spl_iterators.h /php-src/ext/spl/tests iterator_029.phpt Log: Rename RegExIterator - RegexIterator. Also rename recursive one.

[PHP-CVS] cvs: php-src /ext/spl spl_iterators.c spl_iterators.h /ext/spl/tests iterator_029.phpt

2006-05-10 Thread Andrei Zmievski
andrei Wed May 10 16:51:18 2006 UTC Modified files: /php-src/ext/splspl_iterators.c spl_iterators.h /php-src/ext/spl/tests iterator_029.phpt Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/ext/spl/spl_iterators.c?r1=1.124r2=1.125diff_format=u

[PHP-CVS] cvs: php-src /ext/unicode php_property.h property.c unicode.c

2006-05-09 Thread Andrei Zmievski
andrei Tue May 9 18:21:27 2006 UTC Modified files: /php-src/ext/unicodephp_property.h property.c unicode.c Log: Add char_enum_types(). http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_property.h?r1=1.8r2=1.9diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/pcre php_pcre.c php_pcre.h

2006-05-09 Thread Andrei Zmievski
andrei Tue May 9 18:28:11 2006 UTC Modified files: /php-src/ext/pcre php_pcre.c php_pcre.h Log: Add pcre_last_error() and backtrack/recursion limit settings. http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/php_pcre.c?r1=1.180r2=1.181diff_format=u Index:

[PHP-CVS] cvs: php-src(PHP_5_2) /ext/pcre php_pcre.c php_pcre.h

2006-05-09 Thread Andrei Zmievski
andrei Tue May 9 18:29:26 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/pcre php_pcre.c php_pcre.h Log: MFH http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/php_pcre.c?r1=1.168.2.9r2=1.168.2.9.2.1diff_format=u Index: php-src/ext/pcre/php_pcre.c

[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS

2006-05-09 Thread Andrei Zmievski
andrei Tue May 9 19:37:00 2006 UTC Modified files: (Branch: PHP_5_2) /php-srcNEWS Log: http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.547.2.5r2=1.2027.2.547.2.6diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.5

Re: [PHP-CVS] cvs: php-src(PHP_5_2) /ext/pcre php_pcre.c php_pcre.h

2006-05-09 Thread Andrei Zmievski
Added NEWS entry. Docs will have to wait. -Andrei On May 9, 2006, at 12:25 PM, Hannes Magnusson wrote: NEWS entry and/or docs? :) On 5/9/06, Andrei Zmievski [EMAIL PROTECTED] wrote: andrei Tue May 9 18:29:26 2006 UTC Modified files: (Branch: PHP_5_2) /php-src

[PHP-CVS] cvs: php-src(PHP_5_2) / NEWS

2006-05-09 Thread Andrei Zmievski
andrei Wed May 10 02:47:21 2006 UTC Modified files: (Branch: PHP_5_2) /php-srcNEWS Log: http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.547.2.7r2=1.2027.2.547.2.8diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.7

[PHP-CVS] cvs: php-src /ext/unicode php_property.h property.c unicode.c

2006-05-08 Thread Andrei Zmievski
andrei Mon May 8 21:54:44 2006 UTC Modified files: /php-src/ext/unicodephp_property.h property.c unicode.c Log: A few more property functinos. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_property.h?r1=1.4r2=1.5diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode php_property.h property.c unicode.c

2006-05-08 Thread Andrei Zmievski
andrei Mon May 8 22:23:58 2006 UTC Modified files: /php-src/ext/unicodephp_property.h property.c unicode.c Log: And going, and going... http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_property.h?r1=1.5r2=1.6diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode php_property.h property.c unicode.c

2006-05-08 Thread Andrei Zmievski
andrei Mon May 8 23:01:20 2006 UTC Modified files: /php-src/ext/unicodephp_property.h property.c unicode.c Log: Been a long day.. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_property.h?r1=1.6r2=1.7diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode php_property.h property.c unicode.c

2006-05-08 Thread Andrei Zmievski
andrei Tue May 9 00:06:08 2006 UTC Modified files: /php-src/ext/unicodephp_property.h property.c unicode.c Log: Add char_enum_names(). http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_property.h?r1=1.7r2=1.8diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode property.c

2006-05-08 Thread Andrei Zmievski
andrei Tue May 9 00:15:45 2006 UTC Modified files: /php-src/ext/unicodeproperty.c Log: Fix and adjust. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/property.c?r1=1.12r2=1.13diff_format=u Index: php-src/ext/unicode/property.c diff -u

[PHP-CVS] cvs: php-src /ext/unicode config.m4 constants.c php_unicode.h unicode.c

2006-05-05 Thread Andrei Zmievski
a note to | | [EMAIL PROTECTED] so we can mail you a copy immediately. | +--+ | Authors: Andrei Zmievski [EMAIL PROTECTED]| | Wez Furlong [EMAIL PROTECTED

[PHP-CVS] cvs: php-src /ext/unicode php_unicode.h

2006-05-04 Thread Andrei Zmievski
andrei Thu May 4 16:49:33 2006 UTC Modified files: /php-src/ext/unicodephp_unicode.h Log: Fix locale functions naming problem. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_unicode.h?r1=1.12r2=1.13diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode php_property.h property.c unicode.c

2006-05-04 Thread Andrei Zmievski
andrei Thu May 4 18:37:13 2006 UTC Modified files: /php-src/ext/unicodephp_property.h property.c unicode.c Log: Some more work on property/names stuff. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/php_property.h?r1=1.3r2=1.4diff_format=u

[PHP-CVS] cvs: php-src /ext/unicode property.c

2006-05-04 Thread Andrei Zmievski
andrei Thu May 4 21:22:30 2006 UTC Modified files: /php-src/ext/unicodeproperty.c Log: Implement char_from_name(). http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/property.c?r1=1.7r2=1.8diff_format=u Index: php-src/ext/unicode/property.c diff -u

[PHP-CVS] cvs: php-src /ext/unicode php_property.h

2006-05-03 Thread Andrei Zmievski
and are unable to | | obtain it through the world-wide-web, please send a note to | | [EMAIL PROTECTED] so we can mail you a copy immediately. | +--+ | Authors: Andrei Zmievski [EMAIL PROTECTED

[PHP-CVS] cvs: php-src /ext/unicode php_property.h property.c unicode.c

2006-05-03 Thread Andrei Zmievski
andrei Wed May 3 22:03:10 2006 UTC Modified files: /php-src/ext/unicodephp_property.h property.c unicode.c Log: Some more property functions. # I am pondering a different prefix..

[PHP-CVS] cvs: php-src /ext/unicode php_property.h property.c unicode.c

2006-05-03 Thread Andrei Zmievski
andrei Thu May 4 00:01:34 2006 UTC Modified files: /php-src/ext/unicodephp_property.h property.c unicode.c Log: Change prefix to char_ and rename some functions.

[PHP-CVS] cvs: php-src /ext/unicode config.m4 locale.c php_unicode.h property.c

2006-05-02 Thread Andrei Zmievski
it through the world-wide-web, please send a note to | | [EMAIL PROTECTED] so we can mail you a copy immediately. | +--+ | Authors: Andrei Zmievski [EMAIL PROTECTED

[PHP-CVS] cvs: php-src /ext/unicode property.c unicode.c

2006-05-02 Thread Andrei Zmievski
andrei Tue May 2 21:39:16 2006 UTC Modified files: /php-src/ext/unicodeproperty.c unicode.c Log: Implement C/POSIX migration functions. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/property.c?r1=1.1r2=1.2diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode property.c

2006-05-02 Thread Andrei Zmievski
andrei Tue May 2 21:49:16 2006 UTC Modified files: /php-src/ext/unicodeproperty.c Log: FALSE on empty string. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/property.c?r1=1.2r2=1.3diff_format=u Index: php-src/ext/unicode/property.c diff -u

[PHP-CVS] cvs: php-src /ext/unicode property.c unicode.c

2006-05-02 Thread Andrei Zmievski
andrei Tue May 2 22:43:52 2006 UTC Modified files: /php-src/ext/unicodeproperty.c unicode.c Log: Some additional binary property functions. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/property.c?r1=1.3r2=1.4diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/pcntl pcntl.c

2006-04-27 Thread Andrei Zmievski
andrei Thu Apr 27 15:21:01 2006 UTC Modified files: /php-src/ext/pcntl pcntl.c Log: Safe-fy some functions. http://cvs.php.net/viewcvs.cgi/php-src/ext/pcntl/pcntl.c?r1=1.51r2=1.52diff_format=u Index: php-src/ext/pcntl/pcntl.c diff -u

[PHP-CVS] cvs: php-src /ext/pcntl pcntl.c

2006-04-27 Thread Andrei Zmievski
andrei Thu Apr 27 15:28:22 2006 UTC Modified files: /php-src/ext/pcntl pcntl.c Log: pcntl_signal is safe too http://cvs.php.net/viewcvs.cgi/php-src/ext/pcntl/pcntl.c?r1=1.52r2=1.53diff_format=u Index: php-src/ext/pcntl/pcntl.c diff -u

Re: [PHP-CVS] cvs: php-src /ext/tidy tidy.c

2006-04-23 Thread Andrei Zmievski
Looks fine if you're sure that the release date string will always contain only ASCII characters. -Andrei On Apr 23, 2006, at 5:56 AM, Nuno Lopes wrote: -/* {{{ proto string tidy_get_release() +/* {{{ proto string tidy_get_release() U Get release date (version) for Tidy library */

[PHP-CVS] cvs: php-src(PHP_5_1) /sapi/cli php.1.in

2006-04-23 Thread Andrei Zmievski
andrei Sun Apr 23 19:56:53 2006 UTC Modified files: (Branch: PHP_5_1) /php-src/sapi/cli php.1.in Log: Typo. http://cvs.php.net/viewcvs.cgi/php-src/sapi/cli/php.1.in?r1=1.12.2.2r2=1.12.2.3diff_format=u Index: php-src/sapi/cli/php.1.in diff -u

[PHP-CVS] cvs: php-src(PHP_4_3) /sapi/cli php.1.in

2006-04-23 Thread Andrei Zmievski
andrei Sun Apr 23 19:57:15 2006 UTC Modified files: (Branch: PHP_4_3) /php-src/sapi/cli php.1.in Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/sapi/cli/php.1.in?r1=1.1.2.4r2=1.1.2.5diff_format=u Index: php-src/sapi/cli/php.1.in diff -u

[PHP-CVS] cvs: php-src /sapi/cli php.1.in

2006-04-23 Thread Andrei Zmievski
andrei Sun Apr 23 19:57:40 2006 UTC Modified files: /php-src/sapi/cli php.1.in Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/sapi/cli/php.1.in?r1=1.14r2=1.15diff_format=u Index: php-src/sapi/cli/php.1.in diff -u php-src/sapi/cli/php.1.in:1.14

[PHP-CVS] cvs: php-src /ext/unicode collator.c php_unicode.h unicode.c

2006-04-21 Thread Andrei Zmievski
andrei Fri Apr 21 18:25:16 2006 UTC Modified files: /php-src/ext/unicodecollator.c php_unicode.h unicode.c Log: Implement collator_get_default() and simplify/fix the underlying code. # Derick, objects aren't that difficult.. :)

[PHP-CVS] cvs: php-src /ext/unicode locale.c php_unicode.h unicode.c

2006-04-21 Thread Andrei Zmievski
andrei Fri Apr 21 19:35:26 2006 UTC Modified files: /php-src/ext/unicodelocale.c php_unicode.h unicode.c Log: Rename i18_loc_* to locale_*. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/locale.c?r1=1.8r2=1.9diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode collator.c

2006-04-21 Thread Andrei Zmievski
andrei Fri Apr 21 19:40:57 2006 UTC Modified files: /php-src/ext/unicodecollator.c Log: Hmm, ZEND_FENTRY() is the only one that allows flags to be added.. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/collator.c?r1=1.5r2=1.6diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/unicode collator.c php_unicode.h unicode.c

2006-04-21 Thread Andrei Zmievski
andrei Fri Apr 21 21:10:01 2006 UTC Modified files: /php-src/ext/unicodecollator.c php_unicode.h unicode.c Log: Add collator_set_default(). http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/collator.c?r1=1.6r2=1.7diff_format=u Index:

[PHP-CVS] cvs: CVSROOT / avail

2006-04-21 Thread Andrei Zmievski
andrei Sat Apr 22 00:40:19 2006 UTC Modified files: /CVSROOTavail Log: http://cvs.php.net/viewcvs.cgi/CVSROOT/avail?r1=1.1126r2=1.1127diff_format=u Index: CVSROOT/avail diff -u CVSROOT/avail:1.1126 CVSROOT/avail:1.1127 --- CVSROOT/avail:1.1126Thu

[PHP-CVS] cvs: php-src /ext/unicode collator.c php_unicode.h unicode.c ZendEngine2 zend.c zend_globals.h zend_operators.c zend_unicode.c zend_unicode.h

2006-04-20 Thread Andrei Zmievski
andrei Thu Apr 20 21:56:43 2006 UTC Modified files: /ZendEngine2zend.c zend_globals.h zend_operators.c zend_unicode.c zend_unicode.h /php-src/ext/unicodecollator.c php_unicode.h unicode.c Log: Move to refcounted

[PHP-CVS] cvs: php-src /ext/unicode locale.c

2006-04-18 Thread Andrei Zmievski
andrei Tue Apr 18 21:36:38 2006 UTC Modified files: /php-src/ext/unicodelocale.c Log: Update protos. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/locale.c?r1=1.7r2=1.8diff_format=u Index: php-src/ext/unicode/locale.c diff -u

[PHP-CVS] cvs: php-src(PHP_5_1) /ext/soap php_encoding.c php_encoding.h php_sdl.c

2006-04-17 Thread Andrei Zmievski
andrei Mon Apr 17 16:08:08 2006 UTC Modified files: (Branch: PHP_5_1) /php-src/ext/soap php_encoding.c php_encoding.h php_sdl.c Log: Some encodings were assumed to be default and, thus, were not made persistent.

[PHP-CVS] cvs: php-src /ext/soap php_encoding.c php_encoding.h php_sdl.c

2006-04-17 Thread Andrei Zmievski
andrei Mon Apr 17 16:09:42 2006 UTC Modified files: /php-src/ext/soap php_encoding.c php_encoding.h php_sdl.c Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/ext/soap/php_encoding.c?r1=1.125r2=1.126diff_format=u Index: php-src/ext/soap/php_encoding.c diff

[PHP-CVS] cvs: php-src /ext/standard string.c

2006-04-17 Thread Andrei Zmievski
andrei Tue Apr 18 02:40:29 2006 UTC Modified files: /php-src/ext/standard string.c Log: Fix trim(a) bug. http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/string.c?r1=1.538r2=1.539diff_format=u Index: php-src/ext/standard/string.c diff -u

[PHP-CVS] cvs: php-src /ext/standard string.c

2006-04-17 Thread Andrei Zmievski
andrei Tue Apr 18 05:18:12 2006 UTC Modified files: /php-src/ext/standard string.c Log: I'm not sure what the heck people were thinking here, but it should be fixed finally. Please test.

[PHP-CVS] cvs: php-src(PHP_5_1) / NEWS /ext/soap php_encoding.c php_encoding.h php_schema.c php_schema.h php_sdl.c php_sdl.h php_soap.h soap.c

2006-04-09 Thread Andrei Zmievski
andrei Sun Apr 9 23:35:51 2006 UTC Modified files: (Branch: PHP_5_1) /php-srcNEWS /php-src/ext/soap php_encoding.c php_encoding.h php_schema.c php_schema.h php_sdl.c php_sdl.h php_soap.h soap.c Log:

[PHP-CVS] cvs: php-src / Makefile.global acinclude.m4 configure.in /main build-defs.h.in /scripts phpize.m4

2006-04-08 Thread Andrei Zmievski
andrei Sat Apr 8 17:34:57 2006 UTC Modified files: /php-srcMakefile.global acinclude.m4 configure.in /php-src/main build-defs.h.in /php-src/scriptsphpize.m4 Log: Separate suffixes of shared libraries that we link against and the ones we

[PHP-CVS] cvs: php-src(PHP_5_1) / Makefile.global acinclude.m4 configure.in /main build-defs.h.in /scripts phpize.m4

2006-04-08 Thread Andrei Zmievski
andrei Sat Apr 8 17:53:11 2006 UTC Modified files: (Branch: PHP_5_1) /php-srcMakefile.global acinclude.m4 configure.in /php-src/main build-defs.h.in /php-src/scriptsphpize.m4 Log: MFH

[PHP-CVS] cvs: CVSROOT / avail

2006-04-07 Thread Andrei Zmievski
andrei Fri Apr 7 18:15:48 2006 UTC Modified files: /CVSROOTavail Log: Give colder php-doc karma http://cvs.php.net/viewcvs.cgi/CVSROOT/avail?r1=1.1114r2=1.1115diff_format=u Index: CVSROOT/avail diff -u CVSROOT/avail:1.1114 CVSROOT/avail:1.1115 ---

[PHP-CVS] cvs: php-src /ext/pcre TODO php_pcre.c

2006-04-07 Thread Andrei Zmievski
andrei Fri Apr 7 21:20:10 2006 UTC Modified files: /php-src/ext/pcre TODO php_pcre.c Log: Disallowed numeric named captures. http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/TODO?r1=1.5r2=1.6diff_format=u Index: php-src/ext/pcre/TODO diff -u

[PHP-CVS] cvs: php-src(PHP_5_1) / NEWS

2006-04-06 Thread Andrei Zmievski
andrei Thu Apr 6 21:11:13 2006 UTC Modified files: (Branch: PHP_5_1) /php-srcNEWS Log: http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.497r2=1.2027.2.498diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.497 php-src/NEWS:1.2027.2.498

[PHP-CVS] cvs: php-src /ext/pcre TODO php_pcre.c ZendEngine2 zend_arg_defs.c zend_modules.h

2006-04-06 Thread Andrei Zmievski
andrei Thu Apr 6 21:16:28 2006 UTC Modified files: /ZendEngine2zend_arg_defs.c zend_modules.h /php-src/ext/pcre TODO php_pcre.c Log: MFB http://cvs.php.net/viewcvs.cgi/ZendEngine2/zend_arg_defs.c?r1=1.4r2=1.5diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/pcre TODO

2006-04-06 Thread Andrei Zmievski
andrei Thu Apr 6 21:23:56 2006 UTC Modified files: /php-src/ext/pcre TODO Log: More stuff from Friedl.. http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/TODO?r1=1.2r2=1.3diff_format=u Index: php-src/ext/pcre/TODO diff -u php-src/ext/pcre/TODO:1.2

[PHP-CVS] cvs: php-src(PHP_5_1) /ext/pcre TODO

2006-04-06 Thread Andrei Zmievski
andrei Thu Apr 6 21:35:27 2006 UTC Removed files: (Branch: PHP_5_1) /php-src/ext/pcre TODO Log: I guess we only need this on HEAD. -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-CVS] cvs: php-src /ext/pcre TODO

2006-04-06 Thread Andrei Zmievski
andrei Thu Apr 6 22:02:03 2006 UTC Modified files: /php-src/ext/pcre TODO Log: Even more stuff from Friedl. http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/TODO?r1=1.3r2=1.4diff_format=u Index: php-src/ext/pcre/TODO diff -u php-src/ext/pcre/TODO:1.3

[PHP-CVS] cvs: php-src /ext/pcre TODO

2006-04-06 Thread Andrei Zmievski
andrei Thu Apr 6 22:37:42 2006 UTC Modified files: /php-src/ext/pcre TODO Log: That is not the bug you're looking for. http://cvs.php.net/viewcvs.cgi/php-src/ext/pcre/TODO?r1=1.4r2=1.5diff_format=u Index: php-src/ext/pcre/TODO diff -u

Re: [PHP-CVS] cvs: php-src(PHP_5_1) /ext/posix CREDITS

2006-04-06 Thread Andrei Zmievski
Unicode! -Andrei On Apr 6, 2006, at 8:41 PM, Ilia Alshanetsky wrote: iliaa Fri Apr 7 03:41:06 2006 UTC Modified files: (Branch: PHP_5_1) /php-src/ext/posix CREDITS Log: Adjusted credits file so that it appears properly on phpinfo()

[PHP-CVS] cvs: php-src /ext/standard string.c

2006-03-28 Thread Andrei Zmievski
andrei Wed Mar 29 05:56:06 2006 UTC Modified files: /php-src/ext/standard string.c Log: Bug! http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/string.c?r1=1.536r2=1.537diff_format=u Index: php-src/ext/standard/string.c diff -u

Re: [PHP-CVS] cvs: php-src /ext/unicode unicode.c /main main.c /main/streams filter.c streams.c ZendEngine2 zend.c zend_constants.c zend_globals.h zend_unicode.c zend_unicode.h

2006-03-27 Thread Andrei Zmievski
, CONST_PERSISTENT | CONST_CS); + REGISTER_MAIN_LONG_CONSTANT(TO_UNICODE, ZEND_TO_UNICODE, CONST_PERSISTENT | CONST_CS); At 05:48 PM 3/25/2006, Andrei Zmievski wrote: andrei Sun Mar 26 01:48:33 2006 UTC Modified files: /ZendEngine2zend.c zend_constants.c zend_globals.h

[PHP-CVS] cvs: php-src / unicode-todo.txt

2006-03-27 Thread Andrei Zmievski
andrei Mon Mar 27 19:18:40 2006 UTC Modified files: /php-srcunicode-todo.txt Log: http://cvs.php.net/viewcvs.cgi/php-src/unicode-todo.txt?r1=1.9r2=1.10diff_format=u Index: php-src/unicode-todo.txt diff -u php-src/unicode-todo.txt:1.9

[PHP-CVS] cvs: php-src /ext/standard var.c

2006-03-27 Thread Andrei Zmievski
andrei Mon Mar 27 19:24:18 2006 UTC Modified files: /php-src/ext/standard var.c Log: Proto updates. http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/var.c?r1=1.226r2=1.227diff_format=u Index: php-src/ext/standard/var.c diff -u

[PHP-CVS] cvs: php-src /ext/standard var.c

2006-03-27 Thread Andrei Zmievski
andrei Mon Mar 27 21:19:12 2006 UTC Modified files: /php-src/ext/standard var.c Log: Make a UTODO note. http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/var.c?r1=1.227r2=1.228diff_format=u Index: php-src/ext/standard/var.c diff -u

[PHP-CVS] cvs: php-src /ext/standard var.c

2006-03-27 Thread Andrei Zmievski
andrei Mon Mar 27 22:16:53 2006 UTC Modified files: /php-src/ext/standard var.c Log: Typo. http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/var.c?r1=1.228r2=1.229diff_format=u Index: php-src/ext/standard/var.c diff -u

[PHP-CVS] cvs: php-src /ext/standard string.c

2006-03-27 Thread Andrei Zmievski
andrei Mon Mar 27 23:05:38 2006 UTC Modified files: /php-src/ext/standard string.c Log: Fix UErrorCode check. http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/string.c?r1=1.535r2=1.536diff_format=u Index: php-src/ext/standard/string.c diff -u

[PHP-CVS] cvs: php-src /ext/unicode collator.c

2006-03-27 Thread Andrei Zmievski
andrei Tue Mar 28 03:28:08 2006 UTC Modified files: /php-src/ext/unicodecollator.c Log: Fix typos. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/collator.c?r1=1.1r2=1.2diff_format=u Index: php-src/ext/unicode/collator.c diff -u

[PHP-CVS] cvs: php-src /ext/unicode collator.c

2006-03-27 Thread Andrei Zmievski
andrei Tue Mar 28 04:33:29 2006 UTC Modified files: /php-src/ext/unicodecollator.c Log: Fix collator instantiation. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/collator.c?r1=1.2r2=1.3diff_format=u Index: php-src/ext/unicode/collator.c diff -u

[PHP-CVS] cvs: php-src /ext/unicode unicode.c

2006-03-26 Thread Andrei Zmievski
andrei Sun Mar 26 21:23:00 2006 UTC Modified files: /php-src/ext/unicodeunicode.c Log: Add unicode_get_error_mode() and unicode_get_subst_char(). http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/unicode.c?r1=1.16r2=1.17diff_format=u Index:

Re: [PHP-CVS] cvs: php-src /ext/standard array.c php_array.h /ext/unicode collator.c config.m4 config.w32 php_unicode.h unicode.c

2006-03-26 Thread Andrei Zmievski
Shouldn't it be called unicode_collator.c? -Andrei On Mar 26, 2006, at 3:06 AM, Derick Rethans wrote: derick Sun Mar 26 11:06:24 2006 UTC Added files: /php-src/ext/unicodecollator.c Modified files: /php-src/ext/standard array.c php_array.h

[PHP-CVS] cvs: php-src / unicode-todo.txt

2006-03-26 Thread Andrei Zmievski
andrei Sun Mar 26 21:46:01 2006 UTC Modified files: /php-srcunicode-todo.txt Log: http://cvs.php.net/viewcvs.cgi/php-src/unicode-todo.txt?r1=1.8r2=1.9diff_format=u Index: php-src/unicode-todo.txt diff -u php-src/unicode-todo.txt:1.8

[PHP-CVS] cvs: php-src /ext/unicode unicode.c

2006-03-26 Thread Andrei Zmievski
andrei Mon Mar 27 03:19:30 2006 UTC Modified files: /php-src/ext/unicodeunicode.c Log: Rewrite unicode_encode() and unicode_decode() functions. Apply the new conversion error semantics.

[PHP-CVS] cvs: php-src(PHP_5_1) / acinclude.m4

2006-03-26 Thread Andrei Zmievski
andrei Mon Mar 27 04:59:36 2006 UTC Modified files: (Branch: PHP_5_1) /php-srcacinclude.m4 Log: On Mac OSX, our extensions are actually bundles and should not have .dylib extension. Read this:

[PHP-CVS] cvs: php-src(PHP_4_3) / acinclude.m4

2006-03-26 Thread Andrei Zmievski
andrei Mon Mar 27 05:00:49 2006 UTC Modified files: (Branch: PHP_4_3) /php-srcacinclude.m4 Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/acinclude.m4?r1=1.218.2.50r2=1.218.2.51diff_format=u Index: php-src/acinclude.m4 diff -u

[PHP-CVS] cvs: php-src / acinclude.m4

2006-03-26 Thread Andrei Zmievski
andrei Mon Mar 27 05:01:49 2006 UTC Modified files: /php-srcacinclude.m4 Log: MFB http://cvs.php.net/viewcvs.cgi/php-src/acinclude.m4?r1=1.341r2=1.342diff_format=u Index: php-src/acinclude.m4 diff -u php-src/acinclude.m4:1.341 php-src/acinclude.m4:1.342

<    1   2   3   4   5   6   7   >