[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-03 Thread Yasuo Ohgaki
yohgaki Thu Oct 3 05:57:53 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Shouldn't enable implicit_flush like this. Most problems are fixed. If you find internal function that does not follow my comment, please fix it or let me know. Ind

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-13 Thread Derick Rethans
derick Mon Oct 14 02:58:57 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: - Fix CLI Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.35 php4/sapi/cli/php_cli.c:1.36 --- php4/sapi/cli/php_cli.c:1.35Thu Oct 3 06:35:33 200

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-14 Thread Derick Rethans
derick Mon Oct 14 07:59:59 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: - Revert, got tricked by a stale object file Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.36 php4/sapi/cli/php_cli.c:1.37 --- php4/sapi/cli/php_cli.c:

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-22 Thread Yasuo Ohgaki
yohgaki Tue Oct 22 21:21:40 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Make CLI behave like other moder scripting languages. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.37 php4/sapi/cli/php_cli.c:1.38 --- php4/sapi/cli/ph

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-24 Thread Derick Rethans
derick Thu Oct 24 09:18:29 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.39 php4/sapi/cli/php_cli.c:1.40 --- php4/sapi/cli/php_cli.c:1.39Thu Oct 24 09:14:49 2002 +++ php4

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-24 Thread Sascha Schumann
sas Thu Oct 24 09:25:58 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Improve shutdown-behaviour Noticed by: Anantha Kesari H Y Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.40 php4/sapi/cli/php_cli.c:1.41 --- php4/sa

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-24 Thread Derick Rethans
derick Thu Oct 24 10:01:40 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: - whitespace Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.41 php4/sapi/cli/php_cli.c:1.42 --- php4/sapi/cli/php_cli.c:1.41Thu Oct 24 09:25:57 2

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-25 Thread Jan Lehnardt
jan Fri Oct 25 05:32:34 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: - alphabetical output for php -h (cli) Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.43 php4/sapi/cli/php_cli.c:1.44 --- php4/sapi/cli/php_cli.c:1.43

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-26 Thread Ilia Alshanetsky
iliaa Sat Oct 26 15:33:15 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Fixed memory leaks. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.44 php4/sapi/cli/php_cli.c:1.45 --- php4/sapi/cli/php_cli.c:1.44Fri Oct 25 05:

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-10-31 Thread Jani Taskinen
sniper Thu Oct 31 12:34:10 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Added built date and time to -v output. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.45 php4/sapi/cli/php_cli.c:1.46 --- php4/sapi/cli/php_cli.c:1.45

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-11-05 Thread Edin Kadribasic
edink Tue Nov 5 06:13:35 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Made php -v output look nicer on standard 80 column display. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.46 php4/sapi/cli/php_cli.c:1.47 --- php4/sapi

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-11-05 Thread Marcus Börger
helly Tue Nov 5 10:15:51 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: call php_module_startup after zts has been initialised. This way we could have called zend_ini_deactivate(TSRMLS_C). But it seems unnecessary. #tested with ZTS and non ZTS b

[PHP-CVS] cvs: php4 /sapi/cli php_cli.c

2002-11-13 Thread Jan Lehnardt
jan Wed Nov 13 07:41:05 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: - be more verbose Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.50 php4/sapi/cli/php_cli.c:1.51 --- php4/sapi/cli/php_cli.c:1.50Tue Nov 12 15:5

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

2002-10-22 Thread Derick Rethans
On Wed, 23 Oct 2002, Yasuo Ohgaki wrote: > yohgaki Tue Oct 22 21:21:40 2002 EDT > > Modified files: > /php4/sapi/cliphp_cli.c > Log: > Make CLI behave like other moder scripting languages. WTF! Derick -- -

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

2002-10-22 Thread Shane Caraveo
This seems to completely bypass the ini settings, seems like a bad thing to me, then again so does ini in the first place. Shane Yasuo Ohgaki wrote: yohgaki Tue Oct 22 21:21:40 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Make CLI behave like other moder scrip

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

2002-10-22 Thread Yasuo Ohgaki
Shane Caraveo wrote: This seems to completely bypass the ini settings, seems like a bad thing to me, then again so does ini in the first place. Shane Yes, it is. Therefore, I'm telling Derick that the line is bogus. I thought he understood, but apparently he is not :) -- Yasuo Ohgaki Yasuo

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

2002-10-24 Thread Derick Rethans
On Thu, 24 Oct 2002, Sascha Schumann wrote: > sas Thu Oct 24 09:25:58 2002 EDT > > Modified files: > /php4/sapi/cliphp_cli.c > Log: > Improve shutdown-behaviour > > Noticed by: Anantha Kesari H Y Can you please stick to the coding standards: > +out: >

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

2002-10-24 Thread Sascha Schumann
> Can you please stick to the coding standards: My changes are always aligned with the rest of the source file. - Sascha -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2002-10-24 Thread Derick Rethans
On Thu, 24 Oct 2002, Sascha Schumann wrote: > > Can you please stick to the coding standards: > > My changes are always aligned with the rest of the source file. Not this time then; I wouldn't really bother to mail if it was aligned, but it's clearly not. The whole file (except for one othe