Apache::Request + Apache::Filter

2002-11-12 Thread Richard Clarke
List, Can anyone tell me if a module exists that combines these two modules so that, for example, when using Apache::Dispatch one can create an instance of Apache::Request in the handler without clobbering the overridden methods sent as part of the Apache::Filter object. Before I try and do

Re: Apache::Request + Apache::Filter

2002-11-12 Thread John Heitmann
Hello, We use this patch (on Apache::Filter 1.019) and it works ok. It won't get you up and running with Apache::Registry, but it will do if you can initialize the filter yourself. Add this to Filter.pm: sub Apache::Request::filter_register { my $r= shift; ISA = qw(Apache::Request);