]> granicus.if.org Git - php/log
php
22 years agoMake this work as it was supposed to work.
foobar [Sun, 14 Apr 2002 03:50:40 +0000 (03:50 +0000)]
Make this work as it was supposed to work.

22 years agoMFH (use of correct javac/jar binaries)
foobar [Sun, 14 Apr 2002 00:40:59 +0000 (00:40 +0000)]
MFH (use of correct javac/jar binaries)

22 years agoMFH: ocibind: avoid warning in debug mode
Thies C. Arntzen [Sat, 13 Apr 2002 18:59:38 +0000 (18:59 +0000)]
MFH: ocibind: avoid warning in debug mode

22 years agoMFH: Mixing OCIPlogon and OCINLogon no longer leak Oracle-Sessions. (thies)
Thies C. Arntzen [Sat, 13 Apr 2002 12:14:02 +0000 (12:14 +0000)]
MFH: Mixing OCIPlogon and OCINLogon no longer leak Oracle-Sessions. (thies)
to RM: this is a real fix that _should_ be in 4.2!

22 years ago- Makefile.frag is not supposed to be here..
foobar [Sat, 13 Apr 2002 04:32:22 +0000 (04:32 +0000)]
- Makefile.frag is not supposed to be here..
- Net/Socket.php doesn't exist anymore

22 years agoMFH: For example the compile in AIX does not like these at all..
foobar [Sat, 13 Apr 2002 00:34:42 +0000 (00:34 +0000)]
MFH: For example the compile in AIX does not like these at all..

22 years agoMFH.
foobar [Sat, 13 Apr 2002 00:18:54 +0000 (00:18 +0000)]
MFH.

(Prevent users from trying to build Apache 1.x module with Apache 2.x and
vice-versa)

22 years agoMFH (forgot to commit this..sorry Derick..)
foobar [Sat, 13 Apr 2002 00:17:37 +0000 (00:17 +0000)]
MFH (forgot to commit this..sorry Derick..)

22 years agoFix a typo and a build error detected by the lovely HPUX11 ANSI C compiler.
Aaron Bannert [Fri, 12 Apr 2002 22:26:28 +0000 (22:26 +0000)]
Fix a typo and a build error detected by the lovely HPUX11 ANSI C compiler.

22 years ago- Swap back development version numbers
Derick Rethans [Fri, 12 Apr 2002 19:29:27 +0000 (19:29 +0000)]
- Swap back development version numbers

22 years ago- Go with RC3
Derick Rethans [Fri, 12 Apr 2002 19:14:18 +0000 (19:14 +0000)]
- Go with RC3

22 years ago - fix testcase
Jan Lehnardt [Fri, 12 Apr 2002 16:53:34 +0000 (16:53 +0000)]
 - fix testcase
 - patch by: Roman Neuhauser <neuhauser@mail.cz>

22 years agoMFH
Sander Roobol [Fri, 12 Apr 2002 15:27:00 +0000 (15:27 +0000)]
MFH

22 years agofixed a bug which causes crash when charset is not set.
Rui Hirokawa [Fri, 12 Apr 2002 15:07:48 +0000 (15:07 +0000)]
fixed a bug which causes crash when charset is not set.

22 years agoMFH (Reduce warning level for re2c generated files.
Sebastian Bergmann [Fri, 12 Apr 2002 05:34:45 +0000 (05:34 +0000)]
MFH (Reduce warning level for re2c generated files.

22 years agofixed type
Harald Radi [Thu, 11 Apr 2002 20:35:49 +0000 (20:35 +0000)]
fixed type

22 years agoFix a problem where php-generated data was pushed down the entire output
Aaron Bannert [Thu, 11 Apr 2002 20:34:31 +0000 (20:34 +0000)]
Fix a problem where php-generated data was pushed down the entire output
filter chain instead of just down the rest of the chain. This fix will
speed up some unnecessary overhead introduced in the last patch.

Suggested by:  Cliff Woolley <jwoolley@apache.org>

22 years agoPHP filters and Apache 2 aren't quite a perfect match yet, so we have
Aaron Bannert [Thu, 11 Apr 2002 19:27:27 +0000 (19:27 +0000)]
PHP filters and Apache 2 aren't quite a perfect match yet, so we have
to do some trickery with the server_context to make sure it is always
valid within the current thread.

This patch makes sure the server_context is created in apache's
post_read_request hook phase, and then registeres a cleanup that
will NULL out the server context when the request goes out of scope.
Then, inside the output filters, if the server_context is null we
throw an error. Finally, instead of saving the output filter in
the server_context, now we store the entire request_rec pointer
in there.

POST bodies appear to be working now, although they are very inefficient.
The input filter is still just realloc()ing for whatever data comes
down the input pipe, and then sending this to PHP. This means that
we are doing some really nasty memory management on big POST bodies.
For now this it allows for unlimited input bodies, which means that
a big POST could potentially DoS a box by making it run out of memory.
We might want to put a limit on here just in case, at least until
we figure out how to consume input data more efficiently into php.

22 years agoDisable ext/overload.
Sebastian Bergmann [Thu, 11 Apr 2002 18:15:58 +0000 (18:15 +0000)]
Disable ext/overload.

22 years agoDon't depend on the context provided by the filter (f->ctx) anymore. In
Aaron Bannert [Thu, 11 Apr 2002 17:32:37 +0000 (17:32 +0000)]
Don't depend on the context provided by the filter (f->ctx) anymore. In
Apache 2 the input and output filter contexts are kept unique. We now
only depend on SG(server_context) for each request, and assume that
the same thread will process the entire request. At some point it
would be wise to separate the input and output contexts.

22 years agoReturn the number of bytes consumed, not the number of bytes left.
Aaron Bannert [Thu, 11 Apr 2002 17:18:48 +0000 (17:18 +0000)]
Return the number of bytes consumed, not the number of bytes left.

Suggested by:  Brian Havard <brianh@kheldar.apana.org.au>

22 years agoMFH (Update README).
Sebastian Bergmann [Thu, 11 Apr 2002 17:02:32 +0000 (17:02 +0000)]
MFH (Update README).

22 years ago- Mark Apache2, overload and aggregation as experimental
Derick Rethans [Thu, 11 Apr 2002 12:53:24 +0000 (12:53 +0000)]
- Mark Apache2, overload and aggregation as experimental

22 years ago* no more pear/scripts/pear-get
Stig Bakken [Thu, 11 Apr 2002 10:03:02 +0000 (10:03 +0000)]
* no more pear/scripts/pear-get

22 years agoMFH (Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley <jwoolley@virginia...
Sebastian Bergmann [Thu, 11 Apr 2002 06:04:21 +0000 (06:04 +0000)]
MFH (Patch by Aaron Bannert <aaron@clove.org> and Cliff Woolley <jwoolley@virginia.edu>).

22 years agoNote about Apache2 support being experimental.
foobar [Wed, 10 Apr 2002 09:45:01 +0000 (09:45 +0000)]
Note about Apache2 support being experimental.

22 years agoMFH
foobar [Wed, 10 Apr 2002 09:43:07 +0000 (09:43 +0000)]
MFH

22 years ago* add missing continuation
Stig Bakken [Wed, 10 Apr 2002 07:59:31 +0000 (07:59 +0000)]
* add missing continuation

22 years ago* tabify instead of untabify :-P
Stig Bakken [Wed, 10 Apr 2002 07:58:17 +0000 (07:58 +0000)]
* tabify instead of untabify :-P

22 years ago* remove pear-get if installed
Stig Bakken [Wed, 10 Apr 2002 07:44:28 +0000 (07:44 +0000)]
* remove pear-get if installed

22 years ago* keep installing the bundled files in 4.2 too
Stig Bakken [Wed, 10 Apr 2002 07:12:06 +0000 (07:12 +0000)]
* keep installing the bundled files in 4.2 too

22 years ago- Reverse patch
Derick Rethans [Wed, 10 Apr 2002 06:37:49 +0000 (06:37 +0000)]
- Reverse patch

22 years agoMFH
Derick Rethans [Wed, 10 Apr 2002 06:22:42 +0000 (06:22 +0000)]
MFH

22 years agoMFH
jim winstead [Tue, 9 Apr 2002 20:19:04 +0000 (20:19 +0000)]
MFH

22 years ago* MFH Makefile
Stig Bakken [Tue, 9 Apr 2002 19:07:52 +0000 (19:07 +0000)]
* MFH Makefile

22 years ago* PEAR MFH
Stig Bakken [Tue, 9 Apr 2002 19:04:25 +0000 (19:04 +0000)]
* PEAR MFH
# using rsync this time, does it work?

22 years agoThis commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.
SVN Migration [Tue, 9 Apr 2002 18:50:55 +0000 (18:50 +0000)]
This commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.

22 years ago* partial PEAR MFH
Stig Bakken [Tue, 9 Apr 2002 18:04:33 +0000 (18:04 +0000)]
* partial PEAR MFH

22 years agoThis commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.
SVN Migration [Tue, 9 Apr 2002 17:15:18 +0000 (17:15 +0000)]
This commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.

22 years ago* MFH: install the right expat header files
Stig Bakken [Tue, 9 Apr 2002 16:08:18 +0000 (16:08 +0000)]
* MFH: install the right expat header files

22 years agofix compile warnings
Sterling Hughes [Tue, 9 Apr 2002 06:13:01 +0000 (06:13 +0000)]
fix compile warnings

22 years agoMFH
foobar [Mon, 8 Apr 2002 22:21:30 +0000 (22:21 +0000)]
MFH

22 years agoMFH (MS VS.Net Fix).
Sebastian Bergmann [Mon, 8 Apr 2002 15:40:22 +0000 (15:40 +0000)]
MFH (MS VS.Net Fix).

22 years agoremove streams option from branch
Wez Furlong [Mon, 8 Apr 2002 12:42:01 +0000 (12:42 +0000)]
remove streams option from branch

22 years agoFinished syncing win32 build and docs with the unix counterpart.
Edin Kadribasic [Mon, 8 Apr 2002 08:24:23 +0000 (08:24 +0000)]
Finished syncing win32 build and docs with the unix counterpart.
Renamed the cli executable to php-cli.exe so somebody doesn't overwrite
cgi by mistake.
# To the packager: php4ts_cli.dsp (php-cli.exe) shouldn't be bundled
# with the binary distribution of PHP 4.2.0.

22 years agoRename Win32 executable to php.exe.
Sebastian Bergmann [Mon, 8 Apr 2002 07:37:43 +0000 (07:37 +0000)]
Rename Win32 executable to php.exe.

22 years ago- MFH
Derick Rethans [Mon, 8 Apr 2002 06:36:39 +0000 (06:36 +0000)]
- MFH

22 years agoMFH
foobar [Mon, 8 Apr 2002 01:15:16 +0000 (01:15 +0000)]
MFH

22 years ago-found userland solution to fix UNICODE comments (see tests/003.phpt)
Marcus Boerger [Sun, 7 Apr 2002 19:45:36 +0000 (19:45 +0000)]
-found userland solution to fix UNICODE comments (see tests/003.phpt)
#solution from HEAD would mean new functionality
#so this fix makes it work without adding new functionality

22 years agoThis commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.
SVN Migration [Sun, 7 Apr 2002 19:42:06 +0000 (19:42 +0000)]
This commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.

22 years ago- MFH zip_entry_read_bug
Derick Rethans [Sat, 6 Apr 2002 17:29:44 +0000 (17:29 +0000)]
- MFH zip_entry_read_bug

22 years agoInform the masses about where to get a 4.2 compatible mailparse package
Wez Furlong [Sat, 6 Apr 2002 16:58:49 +0000 (16:58 +0000)]
Inform the masses about where to get a 4.2 compatible mailparse package

22 years agoMFH (.dsp fixes)
Sebastian Bergmann [Sat, 6 Apr 2002 16:12:52 +0000 (16:12 +0000)]
MFH (.dsp fixes)

22 years agoMFH changes per doug's request
Sterling Hughes [Fri, 5 Apr 2002 21:23:30 +0000 (21:23 +0000)]
MFH changes per doug's request

22 years agoMFH added unlink_node alias
Joseph Tate [Fri, 5 Apr 2002 19:13:58 +0000 (19:13 +0000)]
MFH added unlink_node alias

22 years agoMFH the fixed entries
foobar [Fri, 5 Apr 2002 12:00:18 +0000 (12:00 +0000)]
MFH the fixed entries

22 years agolet people know about mailparse being pickled
Wez Furlong [Fri, 5 Apr 2002 09:07:48 +0000 (09:07 +0000)]
let people know about mailparse being pickled

22 years agoMFH: add mbstring headers to those for pear/pecl extensions
Wez Furlong [Fri, 5 Apr 2002 09:04:38 +0000 (09:04 +0000)]
MFH: add mbstring headers to those for pear/pecl extensions

22 years agoForgot mention fixed bug that is reported by user.
Yasuo Ohgaki [Fri, 5 Apr 2002 07:14:35 +0000 (07:14 +0000)]
Forgot mention fixed bug that is reported by user.

22 years agoMFH.
Yasuo Ohgaki [Fri, 5 Apr 2002 06:45:25 +0000 (06:45 +0000)]
MFH.
Fixed pg_last_notice() double free.

22 years agoremoved calls to wctomb, wcstombs
Marcus Boerger [Thu, 4 Apr 2002 20:42:47 +0000 (20:42 +0000)]
removed calls to wctomb, wcstombs
#leave UNICODE to user

22 years agomfh
Sterling Hughes [Thu, 4 Apr 2002 20:27:24 +0000 (20:27 +0000)]
mfh

22 years agoFixed sigfault in ibase_close (bug #15419-#15992)
Daniela Mariaschi [Thu, 4 Apr 2002 20:13:41 +0000 (20:13 +0000)]
Fixed sigfault in ibase_close (bug #15419-#15992)

22 years agoMFH. mailparse moved to pear/PECL.
jim winstead [Thu, 4 Apr 2002 18:44:33 +0000 (18:44 +0000)]
MFH. mailparse moved to pear/PECL.

22 years agoMFH
Yasuo Ohgaki [Thu, 4 Apr 2002 15:29:34 +0000 (15:29 +0000)]
MFH
# Fixed crash with pg_escape_*()
# Added test for pg_escape_*()

22 years agoThis commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.
SVN Migration [Thu, 4 Apr 2002 15:25:47 +0000 (15:25 +0000)]
This commit was manufactured by cvs2svn to create branch 'PHP_4_2_0'.

22 years agoMFH
foobar [Thu, 4 Apr 2002 14:33:35 +0000 (14:33 +0000)]
MFH

22 years agomissing .cvsignore
foobar [Thu, 4 Apr 2002 13:37:57 +0000 (13:37 +0000)]
missing .cvsignore

22 years agoMFH
Sterling Hughes [Thu, 4 Apr 2002 00:04:25 +0000 (00:04 +0000)]
MFH

22 years agoFix the test..somehow got corrupted?
foobar [Wed, 3 Apr 2002 23:05:39 +0000 (23:05 +0000)]
Fix the test..somehow got corrupted?

22 years agoPartial MFH
foobar [Wed, 3 Apr 2002 23:04:53 +0000 (23:04 +0000)]
Partial MFH

22 years ago- Added the autom4te.cache to be cleaned too with cvsclean
foobar [Wed, 3 Apr 2002 19:58:45 +0000 (19:58 +0000)]
- Added the autom4te.cache to be cleaned too with cvsclean

22 years ago- Swap back version numbers for development
Derick Rethans [Wed, 3 Apr 2002 19:53:54 +0000 (19:53 +0000)]
- Swap back version numbers for development

22 years ago- Fix build (Patch by Marcus Boerger)
Derick Rethans [Wed, 3 Apr 2002 19:51:26 +0000 (19:51 +0000)]
- Fix build (Patch by Marcus Boerger)

22 years ago- Fix version number
Derick Rethans [Wed, 3 Apr 2002 19:47:13 +0000 (19:47 +0000)]
- Fix version number

22 years ago#Fix for the quot_print - remove unneeded char.
Kirill Maximov [Tue, 2 Apr 2002 08:54:23 +0000 (08:54 +0000)]
#Fix for the quot_print - remove unneeded char.

22 years agoMFH
foobar [Mon, 1 Apr 2002 23:29:19 +0000 (23:29 +0000)]
MFH

22 years ago(PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2
Kirill Maximov [Mon, 1 Apr 2002 19:27:16 +0000 (19:27 +0000)]
(PHP quoted_printable_decode) Fixed CR/LF processing for Windows/OS2
@ Fixed CR/LF processing for Windows/OS2 in quoted_printable_decode (kir)

22 years agoMFH finding test files
Marcus Boerger [Mon, 1 Apr 2002 13:27:47 +0000 (13:27 +0000)]
MFH finding test files

22 years agoMFH.
Yasuo Ohgaki [Mon, 1 Apr 2002 11:44:52 +0000 (11:44 +0000)]
MFH.
Forgot to commit this when I commit fix build with PostgreSQL 6.5.x

22 years ago- MFH for fix for bug #14966
Derick Rethans [Mon, 1 Apr 2002 09:21:29 +0000 (09:21 +0000)]
- MFH for fix for bug #14966

22 years agomoved static constant definitions for separeted files to fix compilation problem...
Rui Hirokawa [Sun, 31 Mar 2002 05:16:27 +0000 (05:16 +0000)]
moved static constant definitions for separeted files to fix compilation problem in Tru64.

22 years agorevert Sascha's patch to fix compile error in Tru64.
Rui Hirokawa [Sun, 31 Mar 2002 00:29:51 +0000 (00:29 +0000)]
revert Sascha's patch to fix compile error in Tru64.

22 years agofixed crash bug in Tru64.
Rui Hirokawa [Sun, 31 Mar 2002 00:19:17 +0000 (00:19 +0000)]
fixed crash bug in Tru64.

22 years agoMFH. 6.5.3 libpq build fix.
Yasuo Ohgaki [Sat, 30 Mar 2002 23:23:58 +0000 (23:23 +0000)]
MFH. 6.5.3 libpq build fix.

22 years ago- corrected test-image
Marcus Boerger [Sat, 30 Mar 2002 19:11:44 +0000 (19:11 +0000)]
- corrected test-image

22 years agoMFH - corrected test-image
Marcus Boerger [Sat, 30 Mar 2002 18:32:09 +0000 (18:32 +0000)]
MFH - corrected test-image

22 years ago-memory leaks
Marcus Boerger [Sat, 30 Mar 2002 18:31:08 +0000 (18:31 +0000)]
-memory leaks

22 years agoanother missing .cvsignore
foobar [Sat, 30 Mar 2002 03:23:42 +0000 (03:23 +0000)]
another missing .cvsignore

22 years agomissing .cvsignore
foobar [Sat, 30 Mar 2002 03:14:40 +0000 (03:14 +0000)]
missing .cvsignore

22 years agomissing entry (still needed here..)
foobar [Sat, 30 Mar 2002 03:14:19 +0000 (03:14 +0000)]
missing entry (still needed here..)

22 years agoMFH
foobar [Sat, 30 Mar 2002 03:07:47 +0000 (03:07 +0000)]
MFH

22 years ago- MFH fix for #16348.
Markus Fischer [Sat, 30 Mar 2002 01:58:24 +0000 (01:58 +0000)]
- MFH fix for #16348.

22 years ago- MFH fixes for these tests.
foobar [Fri, 29 Mar 2002 15:15:16 +0000 (15:15 +0000)]
- MFH fixes for these tests.

22 years ago- Backout Makefile patch, it caused problems
Derick Rethans [Thu, 28 Mar 2002 10:58:39 +0000 (10:58 +0000)]
- Backout Makefile patch, it caused problems

22 years ago- Fix build for BSD: BSD_MAKEFILE and resolver functions. (Patch by Melvyn
Derick Rethans [Thu, 28 Mar 2002 07:56:35 +0000 (07:56 +0000)]
- Fix build for BSD: BSD_MAKEFILE and resolver functions. (Patch by Melvyn
  Sopacua <msopacua@idg.nl>)

22 years ago- MFH for bug 16314
Derick Rethans [Thu, 28 Mar 2002 07:48:50 +0000 (07:48 +0000)]
- MFH for bug 16314

22 years ago- Fix build on BSDI
Derick Rethans [Thu, 28 Mar 2002 07:35:09 +0000 (07:35 +0000)]
- Fix build on BSDI

22 years agoMFH: fixed bug: #16237
foobar [Wed, 27 Mar 2002 23:47:42 +0000 (23:47 +0000)]
MFH: fixed bug: #16237

22 years ago- MFH for multiple To: lines
Derick Rethans [Wed, 27 Mar 2002 20:39:27 +0000 (20:39 +0000)]
- MFH for multiple To: lines