From: <me...@st...> - 2005-10-13 12:04:45
|
>>>>> "Kai" == Kai Andresen <kai...@gm...> writes: Kai> I copied the My/App test application from the CGI-Prototype Kai> distribution, and added a app.cgi like: Kai> use strict; Kai> use warnings; Kai> use lib qw( /real/path/here ); Kai> use My::App; Kai> My::App->activate; There's no dispatcher in the TestApp. Inheriting the "return $self" from the base class means that you'll stay forever in the "My::App" state, meaning you'll get the "intentionally left blank" message forever. For a better "tiny" app, see my Linux Magazine articles (google site:stonehenge.com CGI::Prototype for the location). -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 <me...@st...> <URL:http://www.stonehenge.com/merlyn/> Perl/Unix/security consulting, Technical writing, Comedy, etc. etc. See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training! |