On Mon, 14 Aug 2000, Matt Sergeant wrote:

> On Sun, 13 Aug 2000, Greg Cope wrote:
> 
> > Apache->push_handlers("PerlTransHandler", \&transhandler);
> 
> push_handlers is temporary, not permanent. And this line only gets
> executed once.

of course, if you wanted something like that, your module (if loaded at 
startup) can do this:

{
    package Apache::ReadConfig;
    push @PerlTransHandler, join '::', __PACKAGE__, 'transhandler';
}

Reply via email to