in reply to Converting to CGI::Application

No shoehorning required, just write your setup accordingly, something like the following would work
sub setup { my $self = shift; my $cgi = $self->query; $cgi->param('mode','stats') if $cgi->param('stats'); ... }

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.

Replies are listed 'Best First'.
Re^2: Converting to CGI::Application
by skx (Parson) on May 14, 2005 at 11:14 UTC