RFC: Apache::Handlers

2002-01-03 Thread James G Smith
This is a module I am working on, but haven't debugged yet. Looking for comments on what the name of the module should be if Apache::Handlers is not a good name. General comments on design are welcome as well. NAME Apache::Handlers SYNOPSIS In code: use Apache::Handlers

Re: RFC: Apache::Handlers

2002-01-03 Thread Geoffrey Young
use Apache::Handlers qw(CLEANUP PerlCleanupHandler); our $global; our $other_global : PerlCleanupHandler; my $lexical : PerlLogHandler(sub { print STDERR $lexical\n; }); CLEANUP { our $global = undef; }; heh, seems like you should