in reply to RFC: Apache::Controller
If you're aiming for using such a beast directly as an Apache handler, you could say:
package My::App; use base 'CGI::Application'; sub handler { my $r = shift; __PACKAGE__->new->run; } # Rest of CGI::Application code
Nothing to it, really. No need for wheel-reinvention when this wheel will do what you want.
"There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: RFC: Apache::Controller
by revdiablo (Prior) on Dec 03, 2004 at 18:37 UTC | |
by astroboy (Chaplain) on Dec 04, 2004 at 10:46 UTC |