From: Eden Cardim Date: Sat, 17 Apr 2010 16:31:39 +0000 (+0000) Subject: added documentation reminder to install FCGI.pm when deploying to fastcgi X-Git-Tag: v5.8005~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=31e9c5ef62da7e7aab68a5dc4b4650e3e2ff307e added documentation reminder to install FCGI.pm when deploying to fastcgi --- diff --git a/lib/Catalyst/Manual/Cookbook.pod b/lib/Catalyst/Manual/Cookbook.pod index 5262a10..4db76b0 100644 --- a/lib/Catalyst/Manual/Cookbook.pod +++ b/lib/Catalyst/Manual/Cookbook.pod @@ -373,17 +373,17 @@ the user is a member. }, }, }, - }, + }, ); package MyApp::Controller::Root; use Moose; use namespace::autoclean; - + BEGIN { extends 'Catalyst::Controller' } - + __PACKAGE__->config(namespace => ''); - + sub login : Local { my ($self, $c) = @_; @@ -745,7 +745,7 @@ display your data; you can choose to generate HTML, PDF files, or plain text if you wanted. Most Catalyst applications use a template system to generate their HTML, -and though there are several template systems available, +and though there are several template systems available, L