cvs commit: modperl/src/modules/perl Apache.xs

2001-06-13 Thread dougm
dougm 01/06/13 22:26:29 Modified:.Changes src/modules/perl Apache.xs Log: croak if the filehandle passed to $r->send_fd is NULL Revision ChangesPath 1.598 +3 -0 modperl/Changes Index: Changes ==

cvs commit: modperl/src/modules/perl Apache.xs

2001-06-13 Thread dougm
dougm 01/06/13 21:36:22 Modified:.Changes t/net/perl api.pl src/modules/perl Apache.xs Log: $r->custom_response($code, undef) will now unset the current CustomResponse Revision ChangesPath 1.595 +3 -0 modperl/Changes

cvs commit: modperl/src/modules/perl Apache.xs

2001-04-17 Thread dougm
dougm 01/04/17 14:57:21 Modified:.Changes src/modules/perl Apache.xs Log: $r->no_cache(0) will unset cache headers Revision ChangesPath 1.585 +3 -0 modperl/Changes Index: Changes ===

cvs commit: modperl/src/modules/perl Apache.xs

2000-12-29 Thread dougm
dougm 00/12/29 09:10:09 Modified:.Changes src/modules/perl Apache.xs Log: allow $r->finfo to be modified Revision ChangesPath 1.565 +2 -0 modperl/Changes Index: Changes =

cvs commit: modperl/src/modules/perl Apache.xs

2000-12-22 Thread dougm
dougm 00/12/22 12:56:24 Modified:.Changes src/modules/perl Apache.xs Log: fix $r->custom_response bug which was triggering core dumps if no ErrorDocuments were configured Revision ChangesPath 1.562 +3 -0 modperl/Changes Index: Cha

cvs commit: modperl/src/modules/perl Apache.xs

2000-12-19 Thread dougm
dougm 00/12/19 23:02:49 Modified:.Changes src/modules/perl Apache.xs Log: allow modification of $r->hostname Revision ChangesPath 1.553 +3 -0 modperl/Changes Index: Changes =

cvs commit: modperl/src/modules/perl Apache.xs

2000-09-28 Thread dougm
dougm 00/09/28 12:28:39 Modified:.Changes ToDo src/modules/perl Apache.xs Log: Apache::SubRequest->run(1) allows ap_send_http_headers() to output for subrequests Revision ChangesPath 1.536 +3 -0 modperl/Changes Index: Changes ==

cvs commit: modperl/src/modules/perl Apache.xs

2000-09-28 Thread dougm
dougm 00/09/28 10:46:59 Modified:.Changes src/modules/perl Apache.xs Log: default AuthType to Basic for note_basic_auth_failure Revision ChangesPath 1.535 +2 -2 modperl/Changes Index: Changes ==

cvs commit: modperl/src/modules/perl Apache.xs mod_perl.h perl_config.c

2000-09-27 Thread dougm
dougm 00/09/27 16:51:35 Modified:.Changes ToDo src/modules/perl Apache.xs mod_perl.h perl_config.c Log: $r->get_basic_auth_pw will default $r->auth_type to "Basic" if not already set $r->auth_type is now writeable, e.g. $r->auth_type("Basic") Rev

cvs commit: modperl/src/modules/perl Apache.xs

2000-09-27 Thread dougm
dougm 00/09/27 12:44:24 Modified:.Changes ToDo src/modules/perl Apache.xs Log: fix $r->read() so it will not block if all data has already been read and so that Apache will not hang during ap_discard_request_body() on error or redirect after all data has

cvs commit: modperl/src/modules/perl Apache.xs

2000-09-13 Thread dougm
dougm 00/09/13 00:50:11 Modified:src/modules/perl Apache.xs Log: use proper macro Revision ChangesPath 1.108 +2 -2 modperl/src/modules/perl/Apache.xs Index: Apache.xs === RCS file: /home/

cvs commit: modperl/src/modules/perl Apache.xs

2000-08-31 Thread dougm
dougm 00/08/31 13:54:23 Modified:.Changes src/modules/perl Apache.xs Log: avoid duplicate buffer copy in {read,get}_client_block by reading directly into Perl's SV buffer Revision ChangesPath 1.511 +3 -0 modperl/Changes Index: Cha

cvs commit: modperl/src/modules/perl Apache.xs

2000-08-30 Thread dougm
dougm 00/08/30 22:49:07 Modified:.Changes Apache Apache.pm src/modules/perl Apache.xs Log: switch usage of hard_timeout() to soft_timeout() Revision ChangesPath 1.509 +4 -0 modperl/Changes Index: Changes =

cvs commit: modperl/src/modules/perl Apache.xs

2000-08-30 Thread dougm
dougm 00/08/30 20:39:45 Modified:.Changes src/modules/perl Apache.xs Log: fix refcnt bug in $r->get_handlers Revision ChangesPath 1.508 +3 -0 modperl/Changes Index: Changes =

cvs commit: modperl/src/modules/perl Apache.xs

2000-08-30 Thread dougm
dougm 00/08/30 20:38:37 Modified:.Changes src/modules/perl Apache.xs Log: add PerlCleanupHandler to the {get,set}_handlers table Revision ChangesPath 1.507 +3 -0 modperl/Changes Index: Changes =

Re: cvs commit: modperl/src/modules/perl Apache.xs

2000-08-15 Thread Ask Bjoern Hansen
On Tue, 15 Aug 2000, brian moseley wrote: > On Tue, 15 Aug 2000, Doug MacEachern wrote: > > > what do you mean? args in or out? $r->args($string) > > just does a blind copy. @args = $r->args just splits on > > &,=, it's up to the caller to deal with multiple args of > > the same name. > > hm

cvs commit: modperl/src/modules/perl Apache.xs ModuleConfig.xs mod_perl.c mod_perl.h perl_config.c perl_util.c perlio.c

2000-08-15 Thread dougm
dougm 00/08/15 12:36:39 Modified:.LICENSE src/modules/perl Apache.xs ModuleConfig.xs mod_perl.c mod_perl.h perl_config.c perl_util.c perlio.c Log: license fixes: remove attributions specific to httpd (ncsa did not have any mod_perl

Re: cvs commit: modperl/src/modules/perl Apache.xs

2000-08-15 Thread Doug MacEachern
On Tue, 15 Aug 2000, brian moseley wrote: > hm. what about %args = $r->args? won't that give me only the > last arg value? i suppose i should just do @args = $r->args. > thanks for the reminder. yeah.

Re: cvs commit: modperl/src/modules/perl Apache.xs

2000-08-15 Thread ___cliff rayman___
brian moseley wrote: > On Tue, 15 Aug 2000, Doug MacEachern wrote: > > > what do you mean? args in or out? $r->args($string) > > just does a blind copy. @args = $r->args just splits on > > &,=, it's up to the caller to deal with multiple args of > > the same name. > > hm. what about %args = $r

Re: cvs commit: modperl/src/modules/perl Apache.xs

2000-08-15 Thread brian moseley
On Tue, 15 Aug 2000, Doug MacEachern wrote: > what do you mean? args in or out? $r->args($string) > just does a blind copy. @args = $r->args just splits on > &,=, it's up to the caller to deal with multiple args of > the same name. hm. what about %args = $r->args? won't that give me only the

Re: cvs commit: modperl/src/modules/perl Apache.xs

2000-08-15 Thread Doug MacEachern
On Mon, 14 Aug 2000, brian moseley wrote: > On 15 Aug 2000 [EMAIL PROTECTED] wrote: > > > Log: > > fix $r->args(undef) > > speaking of which... does $r->args handle multiple args with > the same name correctly? the docs imply that it doesn't. i > haven't tried it myself to see. what do you

Re: cvs commit: modperl/src/modules/perl Apache.xs

2000-08-14 Thread brian moseley
On 15 Aug 2000 [EMAIL PROTECTED] wrote: > Log: > fix $r->args(undef) speaking of which... does $r->args handle multiple args with the same name correctly? the docs imply that it doesn't. i haven't tried it myself to see. if i'm using Apache::Request, does setting a param get translated back

cvs commit: modperl/src/modules/perl Apache.xs

2000-08-14 Thread dougm
dougm 00/08/14 21:35:14 Modified:.Changes Apache Apache.pm src/modules/perl Apache.xs Log: fix $r->args(undef) Revision ChangesPath 1.506 +2 -0 modperl/Changes Index: Changes ==

cvs commit: modperl/src/modules/perl Apache.xs

2000-08-09 Thread ask
ask 00/08/09 19:33:27 Modified:.Changes src/modules/perl Apache.xs Log: dereferencing from ->print is a waste of CPU cycles in the first place. Don't make it worse. Revision ChangesPath 1.505 +0 -3 modperl/Changes Index: Changes

cvs commit: modperl/src/modules/perl Apache.xs

2000-08-09 Thread ask
ask 00/08/09 18:45:39 Modified:.Changes src/modules/perl Apache.xs Log: bug with Apache::print not dereferencing scalar referencess that are of type SVt_PVIV. Submitted by: T.J. Mather <[EMAIL PROTECTED]> Revision ChangesPath 1.504 +3 -

cvs commit: modperl/src/modules/perl Apache.xs

2000-07-25 Thread cholet
cholet 00/07/25 10:59:49 Modified:.Changes src/modules/perl Apache.xs Log: return code from stat() call was being ignored Revision ChangesPath 1.502 +3 -0 modperl/Changes Index: Changes =

cvs commit: modperl/src/modules/perl Apache.xs

2000-06-05 Thread dougm
dougm 00/06/05 11:18:54 Modified:.Changes src/modules/perl Apache.xs Log: fix $r->bytes_sent($bytes) Revision ChangesPath 1.498 +2 -0 modperl/Changes Index: Changes =

cvs commit: modperl/src/modules/perl Apache.xs

2000-05-23 Thread dougm
dougm 00/05/23 11:15:47 Modified:.Changes src/modules/perl Apache.xs Log: fix unescape_url_info() when url is undef or "" Revision ChangesPath 1.490 +3 -0 modperl/Changes Index: Changes

cvs commit: modperl/src/modules/perl Apache.xs

2000-04-20 Thread dougm
dougm 00/04/20 23:03:52 Modified:.Changes src/modules/perl Apache.xs Log: add Apache::FILENO method for 5.6.0+ tied filehandle support Revision ChangesPath 1.471 +3 -0 modperl/Changes Index: Changes ===

cvs commit: modperl/src/modules/perl Apache.xs

2000-04-13 Thread dougm
dougm 00/04/13 11:43:24 Modified:.Changes src/modules/perl Apache.xs Log: fix PerlSetVar inheritance bug Revision ChangesPath 1.468 +3 -0 modperl/Changes Index: Changes =

cvs commit: modperl/src/modules/perl Apache.xs

2000-04-04 Thread dougm
dougm 00/04/04 21:55:55 Modified:.Changes Apache Apache.pm src/modules/perl Apache.xs Log: added Apache::OPEN method for 5.6.0+ tied filehandle support Revision ChangesPath 1.460 +2 -0 modperl/Changes Index: Changes

cvs commit: modperl/src/modules/perl Apache.xs ModuleConfig.xs mod_perl.c mod_perl.h perl_config.c perl_util.c

2000-04-02 Thread dougm
dougm 00/04/02 21:48:54 Modified:.Changes MANIFEST src/modules/perl Apache.xs ModuleConfig.xs mod_perl.c mod_perl.h perl_config.c perl_util.c Added: .LICENSE Log: upgrade license to apache software license version 1.1

cvs commit: modperl/src/modules/perl Apache.xs

2000-04-02 Thread dougm
dougm 00/04/02 20:11:14 Modified:.Changes src/modules/perl Apache.xs Log: add Apache::BINMODE stub for 5.6.0 tied filehandle support (fixes cgi.t #4) Revision ChangesPath 1.452 +3 -0 modperl/Changes Index: Changes