[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-03-05 Thread Moriyoshi Koizumi
moriyoshi Wed Mar 5 12:51:33 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed a small leak in the convert filter code Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.29 php4/ext/standard/filters.c:1.30 ---

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-03-02 Thread Moriyoshi Koizumi
moriyoshi Sun Mar 2 03:39:01 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed my silly mistake in the filter code Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.28 php4/ext/standard/filters.c:1.29 ---

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-02-24 Thread Moriyoshi Koizumi
moriyoshi Mon Feb 24 17:41:55 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed string.strip_tags filter so it reflects the change on php_strip_tags Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.27

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-02-18 Thread Moriyoshi Koizumi
moriyoshi Tue Feb 18 18:22:49 2003 EDT Modified files: /php4/ext/standard filters.c Log: Revived convert filter codes Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.24 php4/ext/standard/filters.c:1.25 ---

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-17 Thread Moriyoshi Koizumi
moriyoshi Fri Jan 17 04:04:03 2003 EDT Modified files: /php4/ext/standard filters.c Log: Significant speed enhancements. I was underestimating the power of recent CPUs :) Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.20

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-17 Thread Moriyoshi Koizumi
moriyoshi Fri Jan 17 15:00:33 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed a quoted printable decoder so that it would conform to RFC2045. Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.21

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-16 Thread Moriyoshi Koizumi
moriyoshi Thu Jan 16 15:59:08 2003 EDT Modified files: /php4/ext/standard filters.c Log: Finally fixed a qp encoder bug that line break characters that appear exactly at the end of the chunk lost in the output. # I bet no more problems will occur in

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-15 Thread Moriyoshi Koizumi
moriyoshi Wed Jan 15 10:05:18 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed a qp encoder bug that the constructor sometimes fails if line-breaking mode is off. Index: php4/ext/standard/filters.c diff -u

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-14 Thread Moriyoshi Koizumi
moriyoshi Tue Jan 14 11:42:19 2003 EDT Modified files: /php4/ext/standard filters.c Log: Added a new option force-encode-first to the quoted-printable encoder as per Wez's request. If enabled, the encoder forcefully does qp tranformation on every first

Re: [PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-14 Thread Wez Furlong
It should be noted that this is only necessary for lines beginning with the string From which some mtas will mangle in transit, thus rendering digital signatures invalid. --Wez. On Tue, 14 Jan 2003, Moriyoshi Koizumi wrote: moriyoshi Tue Jan 14 11:42:19 2003 EDT Modified

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-13 Thread Moriyoshi Koizumi
moriyoshi Mon Jan 13 05:21:41 2003 EDT Modified files: /php4/ext/standard filters.c Log: . Implemented a common filter parameter parsing function. # For example base64-encode.line-break-chars=--,base64-decode.blah=foobar # will be parsed and splitted

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-13 Thread Moriyoshi Koizumi
moriyoshi Mon Jan 13 06:00:24 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed a silly segfault bug caused by lack of strict type checking Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.14

Re: [PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-13 Thread Wez Furlong
I am going to alter the API so that you can pass a zval directly to the filter implementation; this will make the code so much simpler. I mentioned this last week, and I'd feel happier if there was less code to maintain, so please consider reverting the parameter parsing commit. Sorry if this

Re: [PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-13 Thread Moriyoshi Koizumi
On Mon, Jan 13, 2003 at 01:28:27PM +, Wez Furlong wrote: I am going to alter the API so that you can pass a zval directly to the filter implementation; this will make the code so much simpler. I mentioned this last week, and I'd feel happier if there was less code to maintain, so please

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-13 Thread Moriyoshi Koizumi
moriyoshi Mon Jan 13 20:23:36 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed quoted-printable encoder so that it produces RFC2045 complicant output. As per this specification requirement, the constructor now accepts three options:

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-13 Thread Moriyoshi Koizumi
moriyoshi Mon Jan 13 20:27:57 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed small memory leak that occurs when the invalid line length is passed to the qprint ctor. Index: php4/ext/standard/filters.c diff -u

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-12 Thread Moriyoshi Koizumi
moriyoshi Sun Jan 12 07:48:13 2003 EDT Modified files: /php4/ext/standard filters.c Log: . Updated quoted-printable filter by a neater implementation. . Changed emalloc family functions to pemalloc ones for persistent filters. . Changed base64 and

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-12 Thread Moriyoshi Koizumi
moriyoshi Sun Jan 12 08:41:35 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed error msg format so it correctly reports the actual filter name Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.10

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-12 Thread Moriyoshi Koizumi
moriyoshi Sun Jan 12 08:46:11 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed infinite loop bug when an invalid quoted-printable escape sequence appears in the streem. Index: php4/ext/standard/filters.c diff -u

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-12 Thread Moriyoshi Koizumi
moriyoshi Sun Jan 12 16:05:23 2003 EDT Modified files: /php4/ext/standard filters.c Log: Fixed a bug of the base64 decoder that a sequence of intervening characters that are supposed to be ignored by the decoder cause output corruption. Index:

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-07 Thread Moriyoshi Koizumi
moriyoshi Tue Jan 7 17:53:42 2003 EDT Modified files: /php4/ext/standard filters.c Log: Instances should not be freed in dtor()... Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.7 php4/ext/standard/filters.c:1.8 ---

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-07 Thread Moriyoshi Koizumi
moriyoshi Tue Jan 7 17:52:24 2003 EDT Modified files: /php4/ext/standard filters.c Log: Made error msg format more consistent Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.6 php4/ext/standard/filters.c:1.7 ---

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-06 Thread Moriyoshi Koizumi
moriyoshi Mon Jan 6 19:03:26 2003 EDT Modified files: /php4/ext/standard filters.c Log: Implemented string.base64 stream filter @- Implemented string.base64 stream filter. (Moriyoshi) Index: php4/ext/standard/filters.c diff -u

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-06 Thread Moriyoshi Koizumi
moriyoshi Mon Jan 6 20:41:18 2003 EDT Modified files: /php4/ext/standard filters.c Log: Implemented quoted-printable stream filter Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.5 php4/ext/standard/filters.c:1.6 ---

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-05 Thread Sara Golemon
pollita Mon Jan 6 00:22:06 2003 EDT Modified files: /php4/ext/standard filters.c Log: Added string.toupper and string.tolower filters and generalized non-op filter methods Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.3

[PHP-CVS] cvs: php4 /ext/standard filters.c

2003-01-01 Thread Wez Furlong
wez Wed Jan 1 06:21:40 2003 EDT Modified files: /php4/ext/standard filters.c Log: Tidy up Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.1 php4/ext/standard/filters.c:1.2 --- php4/ext/standard/filters.c:1.1 Wed Jan 1

[PHP-CVS] cvs: php4 /ext/standard filters.c user_filters.c

2003-01-01 Thread Sebastian Bergmann
sebastian Wed Jan 1 07:36:06 2003 EDT Modified files: /php4/ext/standard filters.c user_filters.c Log: Fix warnings. Index: php4/ext/standard/filters.c diff -u php4/ext/standard/filters.c:1.2 php4/ext/standard/filters.c:1.3 ---