[Catalyst-commits] r13165 -
Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual
edenc at dev.catalyst.perl.org
edenc at dev.catalyst.perl.org
Sat Apr 17 16:31:39 GMT 2010
Author: edenc
Date: 2010-04-17 17:31:39 +0100 (Sat, 17 Apr 2010)
New Revision: 13165
Modified:
Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Cookbook.pod
Log:
added documentation reminder to install FCGI.pm when deploying to fastcgi
Modified: Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Cookbook.pod
===================================================================
--- Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Cookbook.pod 2010-04-16 21:22:59 UTC (rev 13164)
+++ Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Cookbook.pod 2010-04-17 16:31:39 UTC (rev 13165)
@@ -373,17 +373,17 @@
},
},
},
- },
+ },
);
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 @@
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<Template Toolkit|Template> is probably the most popular.
Once again, the Catalyst developers have done all the hard work, and
@@ -1481,7 +1481,7 @@
use base qw/Catalyst::Controller/;
sub key1 : Chained('/')
-
+
=head2 Extending RenderView (formerly DefaultEnd)
The recommended approach for an C<end> action is to use
@@ -1512,8 +1512,8 @@
# do stuff here
}
-
+
=head1 Deployment
The recipes below describe aspects of the deployment process,
@@ -1758,7 +1758,8 @@
mod_fastcgi for Apache is a third party module, and can be found at
L<http://www.fastcgi.com/>. It is also packaged in many distributions,
-for example, libapache2-mod-fastcgi in Debian.
+for example, libapache2-mod-fastcgi in Debian. You will also need to install
+the L<FCGI> module from cpan.
Important Note! If you experience difficulty properly rendering pages,
try disabling Apache's mod_deflate (Deflate Module), e.g. 'a2dismod deflate'.
More information about the Catalyst-commits
mailing list