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

2003-06-17 Thread Jani Taskinen
Sounds like something nobody else than you needs? :) No need to merge, no bug reports (AFAIK) about this either. --Jani On Tue, 17 Jun 2003, Stanislav Malyshev wrote: >Well, it mostly fixed the tests :) The problem is that if one doesn't >flush, then on console everything

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

2003-06-17 Thread Stanislav Malyshev
Well, it mostly fixed the tests :) The problem is that if one doesn't flush, then on console everything is OK, but if you use some buffered stream (e.g., popen, or even maybe file) then the banner can get inside the rest of the output and not at the start. Using interactive mode outside console

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

2003-06-17 Thread Jani Taskinen
MFH? (what exactly did this fix/change? :) --Jani On Mon, 16 Jun 2003, Stanislav Malyshev wrote: >stas Mon Jun 16 12:14:38 2003 EDT > > Modified files: >/php4/sapi/cli php_cli.c > Log: > flush after banner print > > >Index: php4/sapi/cli/php_c

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

2003-06-16 Thread Stanislav Malyshev
stasMon Jun 16 12:14:38 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: flush after banner print Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.94 php4/sapi/cli/php_cli.c:1.95 --- php4/sapi/cli/php_cli.c:1.94Tue Jun 1

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

2003-05-30 Thread Marcus Boerger
helly Thu May 29 20:11:37 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: MFB Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.91 php4/sapi/cli/php_cli.c:1.92 --- php4/sapi/cli/php_cli.c:1.91Thu May 29 10:45:03 2003 +++ php4

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

2003-05-30 Thread Marcus Boerger
helly Thu May 29 10:45:03 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: Simply print errors Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.90 php4/sapi/cli/php_cli.c:1.91 --- php4/sapi/cli/php_cli.c:1.90Mon May 26 14:37:

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

2003-03-30 Thread Marcus Boerger
helly Sun Mar 30 09:00:09 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: more ini defaults for error message handling Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.78 php4/sapi/cli/php_cli.c:1.79 --- php4/sapi/cli/php_cli.c:1.78

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

2003-03-30 Thread Marcus Boerger
helly Sun Mar 30 06:07:36 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: simplify and fix Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.77 php4/sapi/cli/php_cli.c:1.78 --- php4/sapi/cli/php_cli.c:1.77Sat Mar 29 16:23:53

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

2003-03-29 Thread Marcus Boerger
helly Sat Mar 29 16:23:53 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: use sizeof() as suggested by Andrei Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.76 php4/sapi/cli/php_cli.c:1.77 --- php4/sapi/cli/php_cli.c:1.76S

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

2003-03-29 Thread Derick Rethans
On Sat, 29 Mar 2003, Andrei Zmievski wrote: > On Sat, 29 Mar 2003, Derick Rethans wrote: > > MAKE_STD_ZVAL(tmp); > > > > INI_DEFAULT("register_argc_argv", 19, "1"); > > - INI_DEFAULT("html_errors", 12, "1"); > > + INI_DEFAULT("html_errors", 12, "0"); > > INI_DEFAULT("implicit_flu

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

2003-03-29 Thread Andrei Zmievski
On Sat, 29 Mar 2003, Derick Rethans wrote: > MAKE_STD_ZVAL(tmp); > > INI_DEFAULT("register_argc_argv", 19, "1"); > - INI_DEFAULT("html_errors", 12, "1"); > + INI_DEFAULT("html_errors", 12, "0"); > INI_DEFAULT("implicit_flush", 15, "1"); > INI_DEFAULT("max_execution

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

2003-03-29 Thread Derick Rethans
derick Sat Mar 29 15:57:31 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: - html errors should default to off (0) in CLI Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.75 php4/sapi/cli/php_cli.c:1.76 --- php4/sapi/cli/php_cli.c

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

2003-03-25 Thread Moriyoshi Koizumi
I found the cause of the problem, that mbstring doesn't use INI property values themselves and it only updates the appropriate MBSTRG member in the INI handlers. Any ideas? Moriyoshi [EMAIL PROTECTED] (Marcus Börger) wrote: > There must be something else (i tested all combinations before i comm

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

2003-03-24 Thread Marcus Börger
At 20:11 24.03.2003, Moriyoshi Koizumi wrote: [EMAIL PROTECTED] (Marcus Börger) wrote: > At 18:19 24.03.2003, Moriyoshi Koizumi wrote: > >Sorry for being a bit late, but this commit broke BC. I cannot override > >php.ini settings by -d options any more. > > > Hm, not for me. > > [EMAIL PROTECTED]

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

2003-03-24 Thread Moriyoshi Koizumi
Sorry, forget what I just said... But as for mbstring.internal_encoding, it doesn't work as expected. Moriyoshi Moriyoshi Koizumi <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] (Marcus Börger) wrote: > > > At 18:19 24.03.2003, Moriyoshi Koizumi wrote: > > >Sorry for being a bit late, but this

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

2003-03-24 Thread Moriyoshi Koizumi
[EMAIL PROTECTED] (Marcus Börger) wrote: > At 18:19 24.03.2003, Moriyoshi Koizumi wrote: > >Sorry for being a bit late, but this commit broke BC. I cannot override > >php.ini settings by -d options any more. > > > Hm, not for me. > > [EMAIL PROTECTED] php4-HEAD]$ php -r 'var_dump(ini_get("html_

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

2003-03-24 Thread Marcus Börger
At 18:19 24.03.2003, Moriyoshi Koizumi wrote: Sorry for being a bit late, but this commit broke BC. I cannot override php.ini settings by -d options any more. Hm, not for me. [EMAIL PROTECTED] php4-HEAD]$ php -r 'var_dump(ini_get("html_errors"));' string(0) "" [EMAIL PROTECTED] php4-HEAD]$ php -

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

2003-03-24 Thread Moriyoshi Koizumi
Sorry for being a bit late, but this commit broke BC. I cannot override php.ini settings by -d options any more. Moriyoshi "Marcus Boerger" <[EMAIL PROTECTED]> wrote: > helly Tue Mar 18 10:56:12 2003 EDT > > Modified files: > /php4/sapi/cliphp_cli.c > Log: >

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

2003-03-19 Thread Marcus Boerger
helly Wed Mar 19 15:36:04 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: - reenable $argc/$argv - add a comment where hardcoded defaults would go # i believe we have none for now though Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_

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

2003-03-18 Thread Marcus Boerger
helly Tue Mar 18 10:56:12 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: use new callback to overwrite ini settings # ok now lets split html_errors and phpinfo() formatting Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.71 php4

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

2003-02-15 Thread Marcus Boerger
helly Sat Feb 15 10:20:17 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: fix parameter string (-R & -H) Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.69 php4/sapi/cli/php_cli.c:1.70 --- php4/sapi/cli/php_cli.c:1.69Tue Fe

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

2003-02-11 Thread Marcus Boerger
helly Tue Feb 11 15:34:24 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: Make that clear Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.68 php4/sapi/cli/php_cli.c:1.69 --- php4/sapi/cli/php_cli.c:1.68Tue Feb 11 11:18:42 2

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

2003-02-11 Thread Marcus Börger
At 21:14 11.02.2003, Ilia A. wrote: real data is avaliable within the PHP script. The only purpose of this code is to hide argv/argc from being visible via the ps command. Ilia Ok, now i see the point - that makes sense and indeed a good catch. manpage update follows marcus -- PHP CVS Mailin

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

2003-02-11 Thread Ilia A.
On February 11, 2003 02:41 pm, Marcus Börger wrote: > Why will i hide command line arguments from command line, does this make > sense? This is there primarily for daemon and other long term PHP process that run on shared servers and accept command line arguments. To prevent other users from see

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

2003-02-11 Thread Marcus Börger
At 17:18 11.02.2003, Ilia Alshanetsky wrote: iliaa Tue Feb 11 11:18:43 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: Added -H option to CLI binary. This option can be used to hide any arguments including the script name passed to the CLI binary. Why will i h

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

2003-02-11 Thread Ilia Alshanetsky
iliaa Tue Feb 11 11:18:43 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: Added -H option to CLI binary. This option can be used to hide any arguments including the script name passed to the CLI binary. Index: php4/sapi/cli/php_cli.c diff -u p

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

2003-02-08 Thread Marcus Börger
At 15:56 08.02.2003, Jani Taskinen wrote: Just curious..but was there some agreement on keeping these obscure options?? I kinda missed the discussion.. --Jani Some few people were against and Edin liked the idea after playing around with it. So both maintainers of the cli sapi are

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

2003-02-07 Thread Marcus Boerger
helly Fri Feb 7 16:55:51 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: Define STDIN/OUT/ERR for -B -R -F -E (works as expected). Enable exit in same switches. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.66 php4/sapi/cli/ph

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

2003-02-07 Thread Marcus Boerger
helly Fri Feb 7 15:53:06 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: No more maximum line size for -R and -F Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.65 php4/sapi/cli/php_cli.c:1.66 --- php4/sapi/cli/php_cli.c:1.65

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

2003-02-04 Thread Marcus Boerger
helly Tue Feb 4 15:52:13 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: remove it thenthis forces to put work in man page ... Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.64 php4/sapi/cli/php_cli.c:1.65 --- php4/sapi/cli/p

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

2003-02-03 Thread Marcus Börger
At 15:31 03.02.2003, Andrei Zmievski wrote: On Mon, 03 Feb 2003, Edin Kadribasic wrote: > > Perhaps some discussion on this in front would have been a good idea. > > I was actually wondering about the same thing. Marcus? Yeah, no kidding. For a major addition like this sending an RFC to the list

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

2003-02-03 Thread Andrei Zmievski
On Mon, 03 Feb 2003, Edin Kadribasic wrote: > > Perhaps some discussion on this in front would have been a good idea. > > I was actually wondering about the same thing. Marcus? Yeah, no kidding. For a major addition like this sending an RFC to the list would have been a simple courtesy. -Andrei

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

2003-02-03 Thread Edin Kadribasic
On Mon, 3 Feb 2003, Derick Rethans wrote: > On Mon, 3 Feb 2003, Marcus Boerger wrote: > > > helly Sun Feb 2 19:22:28 2003 EDT > > > > Modified files: > > /php4/sapi/cli php_cli.c > > Log: > > - Added -B, -F, -R, -E for line by line std in processing. > >

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

2003-02-03 Thread Derick Rethans
On Mon, 3 Feb 2003, Marcus Boerger wrote: > helly Sun Feb 2 19:22:28 2003 EDT > > Modified files: > /php4/sapi/cliphp_cli.c > Log: > - Added -B, -F, -R, -E for line by line std in processing. > - Added some error messages. > - Added more -h info. > @Add

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

2003-02-02 Thread Marcus Börger
At 08:41 03.02.2003, Sebastian Bergmann wrote: sebastian Mon Feb 3 02:41:06 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: Fix ZTS build. Thanks, i was sure i did latest changes before commit with a ZTS version...but it seems i have to many php source dire

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

2003-02-02 Thread Sebastian Bergmann
sebastian Mon Feb 3 02:41:06 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: Fix ZTS build. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.63 php4/sapi/cli/php_cli.c:1.64 --- php4/sapi/cli/php_cli.c:1.63Sun Feb 2 19:

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

2003-02-02 Thread Marcus Boerger
helly Sun Feb 2 19:22:28 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: - Added -B, -F, -R, -E for line by line std in processing. - Added some error messages. - Added more -h info. @Added command line parameters -B, -F, -R and -E which allow

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

2003-01-10 Thread Ilia Alshanetsky
iliaa Fri Jan 10 19:20:50 2003 EDT Modified files: /php4/sapi/cli php_cli.c Log: Fix the line numbering when the 1st line in the script is #!. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.61 php4/sapi/cli/php_cli.c:1.62 --- php4/sap

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

2002-12-20 Thread Moriyoshi Koizumi
moriyoshi Fri Dec 20 10:51:35 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Recommited the patch Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.57 php4/sapi/cli/php_cli.c:1.58 --- php4/sapi/cli/php_cli.c:1.57Wed D

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

2002-12-18 Thread Edin Kadribasic
edink Wed Dec 18 19:13:43 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: MFB: Reverted previous patches as suggested by Andi. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.56 php4/sapi/cli/php_cli.c:1.57 --- php4/sapi/cli/php

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

2002-12-16 Thread Moriyoshi Koizumi
Andi Gutmans <[EMAIL PROTECTED]> wrote: > I didn't understand the explanation. Why do you mind if the resources are > destroyed before the constants? That's good, no? Sorry, I'm still unsure if my patch is the correct one, as I said in the first mail. As far as I've looked into it, the streams

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

2002-12-15 Thread Andi Gutmans
I didn't understand the explanation. Why do you mind if the resources are destroyed before the constants? That's good, no? Andi At 03:22 PM 12/15/2002 +0900, Moriyoshi Koizumi wrote: It appears that the problem was because stream resources are finalized before the constants that contain those re

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

2002-12-14 Thread Moriyoshi Koizumi
It appears that the problem was because stream resources are finalized before the constants that contain those resources are destructed, as php_stream_open_wrapper_ex() doesn't return persistent resources. Moriyoshi Andi Gutmans <[EMAIL PROTECTED]> wrote: > This doesn't look right to me. We alw

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

2002-12-14 Thread Andi Gutmans
This doesn't look right to me. We always use CONST_PERSISTENT in all of PHP. What is the problem? Andi At 10:24 AM 12/11/2002 +, Edin Kadribasic wrote: edink Wed Dec 11 05:24:03 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Fix for #20539 (patch by Moriyosh

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

2002-12-11 Thread Edin Kadribasic
edink Wed Dec 11 05:24:03 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Fix for #20539 (patch by Moriyoshi Koizumi). Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.55 php4/sapi/cli/php_cli.c:1.56 --- php4/sapi/cli/php_cli.c:1

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

2002-12-09 Thread Sebastian Bergmann
sebastian Mon Dec 9 06:45:47 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Fix build. Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.54 php4/sapi/cli/php_cli.c:1.55 --- php4/sapi/cli/php_cli.c:1.54Sun Dec 8 05:2

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

2002-12-08 Thread Moriyoshi Koizumi
moriyoshi Sun Dec 8 05:23:51 2002 EDT Modified files: /php4/sapi/cli php_cli.c Log: Fixed stream leaks Index: php4/sapi/cli/php_cli.c diff -u php4/sapi/cli/php_cli.c:1.53 php4/sapi/cli/php_cli.c:1.54 --- php4/sapi/cli/php_cli.c:1.53Tue Nov

[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

[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-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-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-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-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

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

[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

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: > 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: >

[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 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

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-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 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 -- -

[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-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-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-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