Cookbook patch applied
Jesse Sheidlower [Mon, 12 Jun 2006 15:00:49 +0000 (15:00 +0000)]
lib/Catalyst/Manual/Cookbook.pod

index 069f909..c503c4b 100644 (file)
@@ -46,7 +46,7 @@ The recommended way is to use Catalyst::Helper::Controller::Scaffold.
 
 Just install this module, and to scaffold a Class::DBI Model class, do the following:
 
-./script/myapp_create controller <name> Scaffold <CDBI::Class>Scaffolding
+./script/myapp_create.pl controller <name> Scaffold <CDBI::Class>Scaffolding
 
 
 
@@ -423,7 +423,7 @@ static content to the view, perhaps like this:
     sub end : Private {
         my ( $self, $c ) = @_;
 
-        $c->forward( 'MyApp::V::TT' ) 
+        $c->forward( 'MyApp::View::TT' ) 
           unless ( $c->res->body || !$c->stash->{template} );
     }
 
@@ -433,7 +433,7 @@ C<$c-E<gt>res-E<gt>body>.
 
 Next, create a controller to handle requests for the /static path. Use
 the Helper to save time. This command will create a stub controller as
-C<lib/MyApp/C/Static.pm>.
+C<lib/MyApp/Controller/Static.pm>.
 
     $ script/myapp_create.pl controller Static
 
@@ -573,7 +573,7 @@ This is equivalent to:
   __PACKAGE__->config( name => MyApp );
   # configure authentication
   __PACKAGE__->config->{authentication} = {
-    user_class => 'MyApp::M::MyDB::Customer',
+    user_class => 'MyApp::Model::MyDB::Customer',
     ...
   };
   # configure sessions
@@ -687,7 +687,7 @@ in your Catalyst application, then make the following changes:
     return 1;
   }
 
-=head3 lib/MyApp/C/User.pm
+=head3 lib/MyApp/Controller/User.pm
 
   sub login : Path('/user/login') {
     my ($self, $c) = @_;
@@ -800,515 +800,515 @@ the current user does not have one of the required roles:
     $c->assert_user_roles( qw/ user admin / );
   }
   
-=head2 Building PAR Packages\r
-\r
-You know the problem, you got a application perfectly running on your\r
-development box, but then *shudder* you have to quickly move it to\r
-another one for demonstration/deployment/testing...\r
-\r
-PAR packages can save you from a lot of trouble here.\r
-They are usual Zip files that contain a blib tree, you can even\r
-include all prereqs and a perl interpreter by setting a few flags!\r
-\r
-=head3 Follow these few points to try it out!\r
-\r
-1. Install Catalyst 5.61 (or later) and PAR 0.89\r
-\r
-    % perl -MCPAN -e 'install Catalyst'\r
-    ...\r
-    % perl -MCPAN -e 'install PAR'\r
-    ...\r
-\r
-2. Create a application\r
-\r
-    % catalyst.pl MyApp\r
-    ...\r
-    % cd MyApp\r
-\r
-3. Add these lines to Makefile.PL (below "catalyst_files();")\r
-\r
-    catalyst_par_core();   # Include modules that are also included\r
-                           # in the standard Perl distribution,\r
-                           # this is optional but highly suggested\r
-\r
-    catalyst_par();        # Generate a PAR as soon as the blib\r
-                           # directory is ready\r
-\r
-4. Prepare the Makefile, test your app, create a PAR (the two Makefile.PL calls are no typo)\r
-\r
-    % perl Makefile.PL\r
-    ...\r
-    % make test\r
-    ...\r
-    % perl Makefile.PL\r
-    ...\r
-\r
-Future versions of Catalyst (5.62 and newer) will use a similar but more elegant calling convention.\r
-\r
-    % perl Makefile.PL\r
-    ...\r
-    % make catalyst_par\r
-    ...\r
-\r
-Congratulations! Your package "myapp.par" is ready, the following\r
-steps are just optional.\r
-\r
-5. Test your PAR package with "parl" (no typo) :)\r
-\r
-    % parl myapp.par\r
-    Usage:\r
-        [parl] myapp[.par] [script] [arguments]\r
-\r
-      Examples:\r
-        parl myapp.par myapp_server.pl -r\r
-        myapp myapp_cgi.pl\r
-\r
-      Available scripts:\r
-        myapp_cgi.pl\r
-        myapp_create.pl\r
-        myapp_fastcgi.pl\r
-        myapp_server.pl\r
-        myapp_test.pl\r
-\r
-    % parl myapp.par myapp_server.pl\r
-    You can connect to your server at http://localhost:3000\r
-\r
-Yes, this nifty little starter application gets automatically included.\r
-You can also use "catalyst_par_script('myapp_server.pl')" to set a\r
-default script to execute.\r
-\r
-6. Want to create a binary that includes the Perl interpreter? No\r
-problem!\r
-\r
-    % pp -o myapp myapp.par\r
-    % ./myapp myapp_server.pl\r
-    You can connect to your server at http://localhost:3000\r
-
-=head2 mod_perl Deployment\r
-\r
-In today's entry, I'll be talking about deploying an application in\r
-production using Apache and mod_perl.\r
-\r
-=head3 Pros & Cons\r
-\r
-mod_perl is the best solution for many applications, but I'll list some pros\r
-and cons so you can decide for yourself.  The other production deployment\r
-option is FastCGI, which I'll talk about in a future calendar article.\r
-\r
-=head4 Pros\r
-\r
-=head4 Speed\r
-\r
-mod_perl is very fast and your app will benefit from being loaded in memory\r
-within each Apache process.\r
-\r
-=head4 Shared memory for multiple apps\r
-\r
-If you need to run several Catalyst apps on the same server, mod_perl will\r
-share the memory for common modules.\r
-\r
-=head4 Cons\r
-\r
-=head4 Memory usage\r
-\r
-Since your application is fully loaded in memory, every Apache process will\r
-be rather large.  This means a large Apache process will be tied up while\r
-serving static files, large files, or dealing with slow clients.  For this\r
-reason, it is best to run a two-tiered web architecture with a lightweight\r
-frontend server passing dynamic requests to a large backend mod_perl\r
-server.\r
-\r
-=head4 Reloading\r
-\r
-Any changes made to the core code of your app require a full Apache restart.\r
-Catalyst does not support Apache::Reload or StatINC.  This is another good\r
-reason to run a frontend web server where you can set up an\r
-C<ErrorDocument 502> page to report that your app is down for maintenance.\r
-\r
-=head4 Cannot run multiple versions of the same app\r
-\r
-It is not possible to run two different versions of the same application in\r
-the same Apache instance because the namespaces will collide.\r
-\r
-=head4 Setup\r
-\r
-Now that we have that out of the way, let's talk about setting up mod_perl\r
-to run a Catalyst app.\r
-\r
-=head4 1. Install Catalyst::Engine::Apache\r
-\r
-You should install the latest versions of both Catalyst and \r
-Catalyst::Engine::Apache.  The Apache engines were separated from the\r
-Catalyst core in version 5.50 to allow for updates to the engine without\r
-requiring a new Catalyst release.\r
-\r
-=head4 2. Install Apache with mod_perl\r
-\r
-Both Apache 1.3 and Apache 2 are supported, although Apache 2 is highly\r
-recommended.  With Apache 2, make sure you are using the prefork MPM and not\r
-the worker MPM.  The reason for this is that many Perl modules are not\r
-thread-safe and may have problems running within the threaded worker\r
-environment.  Catalyst is thread-safe however, so if you know what you're\r
-doing, you may be able to run using worker.\r
-\r
-In Debian, the following commands should get you going.\r
-\r
-    apt-get install apache2-mpm-prefork\r
-    apt-get install libapache2-mod-perl2\r
-\r
-=head4 3. Configure your application\r
-\r
-Every Catalyst application will automagically become a mod_perl handler\r
-when run within mod_perl.  This makes the configuration extremely easy.\r
-Here is a basic Apache 2 configuration.\r
-\r
-    PerlSwitches -I/var/www/MyApp/lib\r
-    PerlModule MyApp\r
-    \r
-    <Location />\r
-        SetHandler          modperl\r
-        PerlResponseHandler MyApp\r
-    </Location>\r
-\r
-The most important line here is C<PerlModule MyApp>.  This causes mod_perl\r
-to preload your entire application into shared memory, including all of your\r
-controller, model, and view classes and configuration.  If you have -Debug\r
-mode enabled, you will see the startup output scroll by when you first\r
-start Apache.\r
-\r
-For an example Apache 1.3 configuration, please see the documentation for\r
-L<Catalyst::Engine::Apache::MP13>.\r
-\r
-=head3 Test It\r
-\r
-That's it, your app is now a full-fledged mod_perl application!  Try it out\r
-by going to http://your.server.com/.\r
-\r
-=head3 Other Options\r
-\r
-=head4 Non-root location\r
-\r
-You may not always want to run your app at the root of your server or virtual\r
-host.  In this case, it's a simple change to run at any non-root location\r
-of your choice.\r
-\r
-    <Location /myapp>\r
-        SetHandler          modperl\r
-        PerlResponseHandler MyApp\r
-    </Location>\r
-    \r
-When running this way, it is best to make use of the C<uri_for> method in\r
-Catalyst for constructing correct links.\r
-\r
-=head4 Static file handling\r
-\r
-Static files can be served directly by Apache for a performance boost.\r
-\r
-    DocumentRoot /var/www/MyApp/root\r
-    <Location /static>\r
-        SetHandler default-handler\r
-    </Location>\r
-    \r
-This will let all files within root/static be handled directly by Apache.  In\r
-a two-tiered setup, the frontend server should handle static files.\r
+=head2 Building PAR Packages
+
+You know the problem, you got a application perfectly running on your
+development box, but then *shudder* you have to quickly move it to
+another one for demonstration/deployment/testing...
+
+PAR packages can save you from a lot of trouble here.
+They are usual Zip files that contain a blib tree, you can even
+include all prereqs and a perl interpreter by setting a few flags!
+
+=head3 Follow these few points to try it out!
+
+1. Install Catalyst 5.61 (or later) and PAR 0.89
+
+    % perl -MCPAN -e 'install Catalyst'
+    ...
+    % perl -MCPAN -e 'install PAR'
+    ...
+
+2. Create a application
+
+    % catalyst.pl MyApp
+    ...
+    % cd MyApp
+
+3. Add these lines to Makefile.PL (below "catalyst_files();")
+
+    catalyst_par_core();   # Include modules that are also included
+                           # in the standard Perl distribution,
+                           # this is optional but highly suggested
+
+    catalyst_par();        # Generate a PAR as soon as the blib
+                           # directory is ready
+
+4. Prepare the Makefile, test your app, create a PAR (the two Makefile.PL calls are no typo)
+
+    % perl Makefile.PL
+    ...
+    % make test
+    ...
+    % perl Makefile.PL
+    ...
+
+Future versions of Catalyst (5.62 and newer) will use a similar but more elegant calling convention.
+
+    % perl Makefile.PL
+    ...
+    % make catalyst_par
+    ...
+
+Congratulations! Your package "myapp.par" is ready, the following
+steps are just optional.
+
+5. Test your PAR package with "parl" (no typo) :)
+
+    % parl myapp.par
+    Usage:
+        [parl] myapp[.par] [script] [arguments]
+
+      Examples:
+        parl myapp.par myapp_server.pl -r
+        myapp myapp_cgi.pl
+
+      Available scripts:
+        myapp_cgi.pl
+        myapp_create.pl
+        myapp_fastcgi.pl
+        myapp_server.pl
+        myapp_test.pl
+
+    % parl myapp.par myapp_server.pl
+    You can connect to your server at http://localhost:3000
+
+Yes, this nifty little starter application gets automatically included.
+You can also use "catalyst_par_script('myapp_server.pl')" to set a
+default script to execute.
+
+6. Want to create a binary that includes the Perl interpreter? No
+problem!
+
+    % pp -o myapp myapp.par
+    % ./myapp myapp_server.pl
+    You can connect to your server at http://localhost:3000
+
+=head2 mod_perl Deployment
+
+In today's entry, I'll be talking about deploying an application in
+production using Apache and mod_perl.
+
+=head3 Pros & Cons
+
+mod_perl is the best solution for many applications, but I'll list some pros
+and cons so you can decide for yourself.  The other production deployment
+option is FastCGI, which I'll talk about in a future calendar article.
+
+=head4 Pros
+
+=head4 Speed
+
+mod_perl is very fast and your app will benefit from being loaded in memory
+within each Apache process.
+
+=head4 Shared memory for multiple apps
+
+If you need to run several Catalyst apps on the same server, mod_perl will
+share the memory for common modules.
+
+=head4 Cons
+
+=head4 Memory usage
+
+Since your application is fully loaded in memory, every Apache process will
+be rather large.  This means a large Apache process will be tied up while
+serving static files, large files, or dealing with slow clients.  For this
+reason, it is best to run a two-tiered web architecture with a lightweight
+frontend server passing dynamic requests to a large backend mod_perl
+server.
+
+=head4 Reloading
+
+Any changes made to the core code of your app require a full Apache restart.
+Catalyst does not support Apache::Reload or StatINC.  This is another good
+reason to run a frontend web server where you can set up an
+C<ErrorDocument 502> page to report that your app is down for maintenance.
+
+=head4 Cannot run multiple versions of the same app
+
+It is not possible to run two different versions of the same application in
+the same Apache instance because the namespaces will collide.
+
+=head4 Setup
+
+Now that we have that out of the way, let's talk about setting up mod_perl
+to run a Catalyst app.
+
+=head4 1. Install Catalyst::Engine::Apache
+
+You should install the latest versions of both Catalyst and 
+Catalyst::Engine::Apache.  The Apache engines were separated from the
+Catalyst core in version 5.50 to allow for updates to the engine without
+requiring a new Catalyst release.
+
+=head4 2. Install Apache with mod_perl
+
+Both Apache 1.3 and Apache 2 are supported, although Apache 2 is highly
+recommended.  With Apache 2, make sure you are using the prefork MPM and not
+the worker MPM.  The reason for this is that many Perl modules are not
+thread-safe and may have problems running within the threaded worker
+environment.  Catalyst is thread-safe however, so if you know what you're
+doing, you may be able to run using worker.
+
+In Debian, the following commands should get you going.
+
+    apt-get install apache2-mpm-prefork
+    apt-get install libapache2-mod-perl2
+
+=head4 3. Configure your application
+
+Every Catalyst application will automagically become a mod_perl handler
+when run within mod_perl.  This makes the configuration extremely easy.
+Here is a basic Apache 2 configuration.
+
+    PerlSwitches -I/var/www/MyApp/lib
+    PerlModule MyApp
+    
+    <Location />
+        SetHandler          modperl
+        PerlResponseHandler MyApp
+    </Location>
+
+The most important line here is C<PerlModule MyApp>.  This causes mod_perl
+to preload your entire application into shared memory, including all of your
+controller, model, and view classes and configuration.  If you have -Debug
+mode enabled, you will see the startup output scroll by when you first
+start Apache.
+
+For an example Apache 1.3 configuration, please see the documentation for
+L<Catalyst::Engine::Apache::MP13>.
+
+=head3 Test It
+
+That's it, your app is now a full-fledged mod_perl application!  Try it out
+by going to http://your.server.com/.
+
+=head3 Other Options
+
+=head4 Non-root location
+
+You may not always want to run your app at the root of your server or virtual
+host.  In this case, it's a simple change to run at any non-root location
+of your choice.
+
+    <Location /myapp>
+        SetHandler          modperl
+        PerlResponseHandler MyApp
+    </Location>
+    
+When running this way, it is best to make use of the C<uri_for> method in
+Catalyst for constructing correct links.
+
+=head4 Static file handling
+
+Static files can be served directly by Apache for a performance boost.
+
+    DocumentRoot /var/www/MyApp/root
+    <Location /static>
+        SetHandler default-handler
+    </Location>
+    
+This will let all files within root/static be handled directly by Apache.  In
+a two-tiered setup, the frontend server should handle static files.
 The configuration to do this on the frontend will vary.
 
-=head2 Don't Repeat Yourself\r
-\r
-DRY is a central principle in Catalyst, yet there is one piece of code\r
-that is identical in 90% of all Catalyst applications.\r
-\r
-  sub end : Private {\r
-      my ($self,$c) = @_;\r
-      return 1 if $c->res->body;\r
-      return 1 if $c->response->status =~ /^3\d\d$/;\r
-      $c->forward( 'MyApp::View::TT' );\r
-  }\r
-\r
-Basically, we want to render a template unless we already have a response,\r
-or are redirecting. \r
-\r
-=head3 Catalyst::Plugin::DefaultEnd to the rescue!\r
-\r
-So, rather than doing this again and again, I've made a plugin for you to use.\r
-sure, it's not much code, but at least it's one function less to worry about.\r
-\r
-Here's how to use it:\r
-\r
-1. Open up MyApp.pm.\r
-\r
-2. Add the DefaultEnd plugin like this:\r
-\r
-  use Catalyst qw/-Debug DefaultEnd Static::Simple/;\r
-  \r
-3.  There is no step 3 :)\r
-\r
-As an added bonus, you can now set dump_info=1 as a url parameter to force \r
-the end action to die, and display the debug info. Note that this is only\r
-provided in Debug mode.\r
-\r
-By default, DefaultEnd will forward to the first view it can find. If you have\r
-more than one view, you might want to specifiy the active one, by setting \r
-$c->config->{view}.\r
-\r
-If you need to add more things to your end action, you can extend it like this.\r
-\r
-  sub end : Private {\r
-      my ( $self, $c ) = @_;\r
-\r
-      ... #code before view\r
-\r
-      $c->NEXT::end( $c );\r
-  \r
-      ... #code after view\r
+=head2 Don't Repeat Yourself
+
+DRY is a central principle in Catalyst, yet there is one piece of code
+that is identical in 90% of all Catalyst applications.
+
+  sub end : Private {
+      my ($self,$c) = @_;
+      return 1 if $c->res->body;
+      return 1 if $c->response->status =~ /^3\d\d$/;
+      $c->forward( 'MyApp::View::TT' );
   }
+
+Basically, we want to render a template unless we already have a response,
+or are redirecting. 
+
+=head3 Catalyst::Plugin::DefaultEnd to the rescue!
+
+So, rather than doing this again and again, I've made a plugin for you to use.
+sure, it's not much code, but at least it's one function less to worry about.
+
+Here's how to use it:
+
+1. Open up MyApp.pm.
+
+2. Add the DefaultEnd plugin like this:
+
+  use Catalyst qw/-Debug DefaultEnd Static::Simple/;
+  
+3.  There is no step 3 :)
+
+As an added bonus, you can now set dump_info=1 as a url parameter to force 
+the end action to die, and display the debug info. Note that this is only
+provided in Debug mode.
+
+By default, DefaultEnd will forward to the first view it can find. If you have
+more than one view, you might want to specifiy the active one, by setting 
+$c->config->{view}.
+
+If you need to add more things to your end action, you can extend it like this.
+
+  sub end : Private {
+      my ( $self, $c ) = @_;
+
+      ... #code before view
+
+      $c->NEXT::end( $c );
   
-=head2 YAML, YAML, YAML!\r
-\r
-When you start a new Catalyst app you configure it directly\r
-with __PACKAGE__->config, thats ok for development but admins\r
-will hate you when they have to deploy this.\r
-\r
-    __PACKAGE__->config( name => 'MyApp', 'View::TT' => { EVAL_PERL => 1 } );\r
-\r
-You didn't know you could configure your view from the application class, eh? :)\r
-Thats possible for every component that inherits from Catalyst::Component\r
-or it's subclasses (Catalyst::Base, Catalyst::Controller, Catalyst::View,\r
-Catalyst::Model).\r
-\r
-    __PACKAGE__->config(\r
-        name => 'MyApp',\r
-        'View::TT' => {\r
-            EVAL_PERL => 1\r
-        },\r
-        'Controller::Foo' => {\r
-            fool => 'sri'\r
-        }\r
-    );\r
-    \r
-    \r
-    package MyApp::Controller::Foo;\r
-    use base 'Catalyst::Controller';\r
-    \r
-    __PACKAGE__->config( lalala => " can't sing!" );\r
-    \r
-    sub default : Private {\r
-        my ( $self, $c ) = @_;\r
-        $c->res->body( $self->{fool} . $self->{lalala} );\r
-    }\r
-\r
-But back to the topic, lets make our admins happy with this little idiom.\r
-\r
-    use YAML ();\r
-    \r
-    __PACKAGE__->config( YAML::LoadFile( __PACKAGE__->path_to('myapp.yml') ) );\r
-\r
-The C<path_to()> method is a nice little helper that returns paths relative to the\r
-current application home.\r
-\r
-Thats it, now just create a file C<myapp.yml>.\r
-\r
-    ---\r
-    name: MyApp\r
-    View::TT:\r
-      EVAL_PERL: 1\r
-    Controller::Foo:\r
-      fool: sri\r
-
-=head2 Catalyst on shared hosting\r
-\r
-So, you want to put your Catalyst app out there for the whole world to\r
-see, but you don't want to break the bank. There is an answer - if you can\r
-get shared hosting with FastCGI and a shell, you can install your Catalyst\r
-app. First, run\r
-\r
-  perl -MCPAN -e shell\r
-\r
-and go through the standard CPAN configuration process. Then exit out\r
-without installing anything. Next, open your .bashrc and add\r
-\r
-  export PATH=$HOME/local/bin:$HOME/local/script:$PATH\r
-  perlversion=`perl -v | grep 'built for' | awk '{print $4}' | sed -e 's/v//;'`\r
-  export PERL5LIB=$HOME/local/share/perl/$perlversion:$HOME/local/lib/perl/$perlversion:$HOME/local/lib:$PERL5LIB\r
-\r
-and log out, then back in again (or run ". .bashrc" if you prefer). Finally,\r
-edit .cpan/CPAN/MyConfig.pm and add\r
-\r
-  'make_install_arg' => qq[SITEPREFIX=$ENV{HOME}/local],\r
-  'makepl_arg' => qq[INSTALLDIRS=site install_base=$ENV{HOME}/local],\r
-\r
-Now you can install the modules you need with CPAN as normal, and perl will\r
-pick them up. Finally, change directory into the root of your virtual host\r
-and symlink your application's script directory in -\r
-\r
-  cd path/to/mydomain.com\r
-  ln -s ~/lib/MyApp/script script\r
-\r
-And add the following lines to your .htaccess file (assuming the server is\r
-setup to handle .pl as fcgi - you may need to rename the script to\r
-myapp_fastcgi.fcgi and/or use a SetHandler directive) -\r
-\r
-  RewriteEngine On\r
-  RewriteCond %{REQUEST_URI} !^/?script/myapp_fastcgi.pl\r
-  RewriteRule ^(.*)$ script/myapp_fastcgi.pl/$1 [PT,L]\r
-\r
-http://mydomain.com/ should now Just Work. Congratulations, now you can\r
-tell your friends about your new website (or in our case, tell the client\r
+      ... #code after view
+  }
+  
+=head2 YAML, YAML, YAML!
+
+When you start a new Catalyst app you configure it directly
+with __PACKAGE__->config, thats ok for development but admins
+will hate you when they have to deploy this.
+
+    __PACKAGE__->config( name => 'MyApp', 'View::TT' => { EVAL_PERL => 1 } );
+
+You didn't know you could configure your view from the application class, eh? :)
+Thats possible for every component that inherits from Catalyst::Component
+or it's subclasses (Catalyst::Base, Catalyst::Controller, Catalyst::View,
+Catalyst::Model).
+
+    __PACKAGE__->config(
+        name => 'MyApp',
+        'View::TT' => {
+            EVAL_PERL => 1
+        },
+        'Controller::Foo' => {
+            fool => 'sri'
+        }
+    );
+    
+    
+    package MyApp::Controller::Foo;
+    use base 'Catalyst::Controller';
+    
+    __PACKAGE__->config( lalala => " can't sing!" );
+    
+    sub default : Private {
+        my ( $self, $c ) = @_;
+        $c->res->body( $self->{fool} . $self->{lalala} );
+    }
+
+But back to the topic, lets make our admins happy with this little idiom.
+
+    use YAML ();
+    
+    __PACKAGE__->config( YAML::LoadFile( __PACKAGE__->path_to('myapp.yml') ) );
+
+The C<path_to()> method is a nice little helper that returns paths relative to the
+current application home.
+
+Thats it, now just create a file C<myapp.yml>.
+
+    ---
+    name: MyApp
+    View::TT:
+      EVAL_PERL: 1
+    Controller::Foo:
+      fool: sri
+
+=head2 Catalyst on shared hosting
+
+So, you want to put your Catalyst app out there for the whole world to
+see, but you don't want to break the bank. There is an answer - if you can
+get shared hosting with FastCGI and a shell, you can install your Catalyst
+app. First, run
+
+  perl -MCPAN -e shell
+
+and go through the standard CPAN configuration process. Then exit out
+without installing anything. Next, open your .bashrc and add
+
+  export PATH=$HOME/local/bin:$HOME/local/script:$PATH
+  perlversion=`perl -v | grep 'built for' | awk '{print $4}' | sed -e 's/v//;'`
+  export PERL5LIB=$HOME/local/share/perl/$perlversion:$HOME/local/lib/perl/$perlversion:$HOME/local/lib:$PERL5LIB
+
+and log out, then back in again (or run ". .bashrc" if you prefer). Finally,
+edit .cpan/CPAN/MyConfig.pm and add
+
+  'make_install_arg' => qq[SITEPREFIX=$ENV{HOME}/local],
+  'makepl_arg' => qq[INSTALLDIRS=site install_base=$ENV{HOME}/local],
+
+Now you can install the modules you need with CPAN as normal, and perl will
+pick them up. Finally, change directory into the root of your virtual host
+and symlink your application's script directory in -
+
+  cd path/to/mydomain.com
+  ln -s ~/lib/MyApp/script script
+
+And add the following lines to your .htaccess file (assuming the server is
+setup to handle .pl as fcgi - you may need to rename the script to
+myapp_fastcgi.fcgi and/or use a SetHandler directive) -
+
+  RewriteEngine On
+  RewriteCond %{REQUEST_URI} !^/?script/myapp_fastcgi.pl
+  RewriteRule ^(.*)$ script/myapp_fastcgi.pl/$1 [PT,L]
+
+http://mydomain.com/ should now Just Work. Congratulations, now you can
+tell your friends about your new website (or in our case, tell the client
 it's time to pay the invoice :)
 
-=head2 Caching\r
-\r
-Catalyst makes it easy to employ several different types of caching to speed\r
-up your applications.\r
-\r
-=head3 Cache Plugins\r
-\r
-There are three wrapper plugins around common CPAN cache modules:\r
-Cache::FastMmap, Cache::FileCache, and Cache::Memcached.  These can be used\r
-to cache the result of slow operations. \r
-\r
-This very page you're viewing makes use of the FileCache plugin to cache the\r
-rendered XHTML version of the source POD document.  This is an ideal\r
-application for a cache because the source document changes infrequently but\r
-may be viewed many times.\r
-\r
-    use Catalyst qw/Cache::FileCache/;\r
-    \r
-    ...\r
-    \r
-    use File::stat;\r
-    sub render_pod : Local {\r
-        my ( self, $c ) = @_;\r
-        \r
-        # the cache is keyed on the filename and the modification time\r
-        # to check for updates to the file.\r
-        my $file  = $c->path_to( 'root', '2005', '11.pod' );\r
-        my $mtime = ( stat $file )->mtime;\r
-        \r
-        my $cached_pod = $c->cache->get("$file $mtime");\r
-        if ( !$cached_pod ) {\r
-            $cached_pod = do_slow_pod_rendering();\r
-            # cache the result for 12 hours\r
-            $c->cache->set( "$file $mtime", $cached_pod, '12h' );\r
-        }\r
-        $c->stash->{pod} = $cached_pod;\r
-    }\r
-    \r
-We could actually cache the result forever, but using a value such as 12 hours\r
-allows old entries to be automatically expired when they are no longer needed.\r
-\r
-=head3 Page Caching\r
-\r
-Another method of caching is to cache the entire HTML page.  While this is\r
-traditionally handled by a front-end proxy server like Squid, the Catalyst\r
-PageCache plugin makes it trivial to cache the entire output from\r
-frequently-used or slow actions.\r
-\r
-Many sites have a busy content-filled front page that might look something\r
-like this.  It probably takes a while to process, and will do the exact same\r
-thing for every single user who views the page.\r
-\r
-    sub front_page : Path('/') {\r
-        my ( $self, $c ) = @_;\r
-        \r
-        $c->forward( 'get_news_articles' );\r
-        $c->forward( 'build_lots_of_boxes' );\r
-        $c->forward( 'more_slow_stuff' );\r
-        \r
-        $c->stash->{template} = 'index.tt';\r
-    }\r
-\r
-We can add the PageCache plugin to speed things up.\r
-\r
-    use Catalyst qw/Cache::FileCache PageCache/;\r
-    \r
-    sub front_page : Path ('/') {\r
-        my ( $self, $c ) = @_;\r
-        \r
-        $c->cache_page( 300 );\r
-        \r
-        # same processing as above\r
-    }\r
-    \r
-Now the entire output of the front page, from <html> to </html>, will be\r
-cached for 5 minutes.  After 5 minutes, the next request will rebuild the\r
-page and it will be re-cached.\r
-\r
-Note that the page cache is keyed on the page URI plus all parameters, so\r
-requests for / and /?foo=bar will result in different cache items.  Also,\r
-only GET requests will be cached by the plugin.\r
-\r
-You can even get that front-end Squid proxy to help out by enabling HTTP\r
-headers for the cached page.\r
-\r
-    MyApp->config->{page_cache}->{set_http_headers} = 1;\r
-    \r
-This would now set the following headers so proxies and browsers may cache\r
-the content themselves.\r
-\r
-    Cache-Control: max-age=($expire_time - time)\r
-    Expires: $expire_time\r
-    Last-Modified: $cache_created_time\r
-    \r
-=head3 Template Caching\r
-\r
-Template Toolkit provides support for caching compiled versions of your\r
-templates.  To enable this in Catalyst, use the following configuration.\r
-TT will cache compiled templates keyed on the file mtime, so changes will\r
-still be automatically detected.\r
-\r
-    package MyApp::View::TT;\r
-    \r
-    use strict;\r
-    use warnings;\r
-    use base 'Catalyst::View::TT';\r
-    \r
-    __PACKAGE__->config(\r
-        COMPILE_DIR => '/tmp/template_cache',\r
-    );\r
-    \r
-    1;\r
-    \r
-=head3 More Info\r
-\r
-See the documentation for each cache plugin for more details and other\r
-available configuration options.\r
-\r
-L<http://search.cpan.org/dist/Catalyst-Plugin-Cache-FastMmap/lib/Catalyst/Plugin/Cache/FastMmap.pm>\r
-L<http://search.cpan.org/dist/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm>\r
-L<http://search.cpan.org/dist/Catalyst-Plugin-Cache-Memcached/lib/Catalyst/Plugin/Cache/Memcached.pm>\r
-L<http://search.cpan.org/dist/Catalyst-Plugin-PageCache/lib/Catalyst/Plugin/PageCache.pm>\r
+=head2 Caching
+
+Catalyst makes it easy to employ several different types of caching to speed
+up your applications.
+
+=head3 Cache Plugins
+
+There are three wrapper plugins around common CPAN cache modules:
+Cache::FastMmap, Cache::FileCache, and Cache::Memcached.  These can be used
+to cache the result of slow operations. 
+
+This very page you're viewing makes use of the FileCache plugin to cache the
+rendered XHTML version of the source POD document.  This is an ideal
+application for a cache because the source document changes infrequently but
+may be viewed many times.
+
+    use Catalyst qw/Cache::FileCache/;
+    
+    ...
+    
+    use File::stat;
+    sub render_pod : Local {
+        my ( self, $c ) = @_;
+        
+        # the cache is keyed on the filename and the modification time
+        # to check for updates to the file.
+        my $file  = $c->path_to( 'root', '2005', '11.pod' );
+        my $mtime = ( stat $file )->mtime;
+        
+        my $cached_pod = $c->cache->get("$file $mtime");
+        if ( !$cached_pod ) {
+            $cached_pod = do_slow_pod_rendering();
+            # cache the result for 12 hours
+            $c->cache->set( "$file $mtime", $cached_pod, '12h' );
+        }
+        $c->stash->{pod} = $cached_pod;
+    }
+    
+We could actually cache the result forever, but using a value such as 12 hours
+allows old entries to be automatically expired when they are no longer needed.
+
+=head3 Page Caching
+
+Another method of caching is to cache the entire HTML page.  While this is
+traditionally handled by a front-end proxy server like Squid, the Catalyst
+PageCache plugin makes it trivial to cache the entire output from
+frequently-used or slow actions.
+
+Many sites have a busy content-filled front page that might look something
+like this.  It probably takes a while to process, and will do the exact same
+thing for every single user who views the page.
+
+    sub front_page : Path('/') {
+        my ( $self, $c ) = @_;
+        
+        $c->forward( 'get_news_articles' );
+        $c->forward( 'build_lots_of_boxes' );
+        $c->forward( 'more_slow_stuff' );
+        
+        $c->stash->{template} = 'index.tt';
+    }
+
+We can add the PageCache plugin to speed things up.
+
+    use Catalyst qw/Cache::FileCache PageCache/;
+    
+    sub front_page : Path ('/') {
+        my ( $self, $c ) = @_;
+        
+        $c->cache_page( 300 );
+        
+        # same processing as above
+    }
+    
+Now the entire output of the front page, from <html> to </html>, will be
+cached for 5 minutes.  After 5 minutes, the next request will rebuild the
+page and it will be re-cached.
+
+Note that the page cache is keyed on the page URI plus all parameters, so
+requests for / and /?foo=bar will result in different cache items.  Also,
+only GET requests will be cached by the plugin.
+
+You can even get that front-end Squid proxy to help out by enabling HTTP
+headers for the cached page.
+
+    MyApp->config->{page_cache}->{set_http_headers} = 1;
+    
+This would now set the following headers so proxies and browsers may cache
+the content themselves.
+
+    Cache-Control: max-age=($expire_time - time)
+    Expires: $expire_time
+    Last-Modified: $cache_created_time
+    
+=head3 Template Caching
+
+Template Toolkit provides support for caching compiled versions of your
+templates.  To enable this in Catalyst, use the following configuration.
+TT will cache compiled templates keyed on the file mtime, so changes will
+still be automatically detected.
+
+    package MyApp::View::TT;
+    
+    use strict;
+    use warnings;
+    use base 'Catalyst::View::TT';
+    
+    __PACKAGE__->config(
+        COMPILE_DIR => '/tmp/template_cache',
+    );
+    
+    1;
+    
+=head3 More Info
+
+See the documentation for each cache plugin for more details and other
+available configuration options.
+
+L<http://search.cpan.org/dist/Catalyst-Plugin-Cache-FastMmap/lib/Catalyst/Plugin/Cache/FastMmap.pm>
+L<http://search.cpan.org/dist/Catalyst-Plugin-Cache-FileCache/lib/Catalyst/Plugin/Cache/FileCache.pm>
+L<http://search.cpan.org/dist/Catalyst-Plugin-Cache-Memcached/lib/Catalyst/Plugin/Cache/Memcached.pm>
+L<http://search.cpan.org/dist/Catalyst-Plugin-PageCache/lib/Catalyst/Plugin/PageCache.pm>
 L<http://search.cpan.org/dist/Template-Toolkit/lib/Template/Manual/Config.pod#Caching_and_Compiling_Options>
 
-=head2 L<Catalyst::Plugin::Subrequest>\r
-\r
-=head3 Component based sub-requests.\r
-\r
-This is actually one of the features we brought over from L<Maypole>. There it \r
-was called L<Maypole::Plugin::Component>. Basically, the idea is to set up \r
-new request/response objects, and do an internal request, then return the \r
-output. It's quite handy for various situations, Simon's example was a \r
-shopping portal. I'm frequently using it to render parts of my site that I'm \r
-also rendering with ajax, to avoid duplication of code.\r
-\r
-It's quite simple in use. You just call $c->subreq('</public/url>'); (or \r
-with TT, [% c.subreq('/public/url') %] .) This will localize enough \r
-of your request/response object so that it shouldn't affect your current\r
-request, set up a new path/uri, and call the Dispatcher to force a full\r
-request chain, including begin/end/auto/default and whatever else applies.\r
-if you don't like 'subreq', theres an alias as well: 'sub_request'.\r
-\r
-You can also set up the stash before the request, as well as pass parameters\r
-to the request like a normal form POST by passing optional hashrefs to the \r
-subreq method. for example:\r
-\r
-       my $text=$c->subreq('/foo',{ bar=>$c->stash->{bar} }, {id=>23});\r
-\r
-This will dispatch to whatever handles '/foo', with bar in the stash, and\r
-$c->req->param('id') returning 23.  After the request, $text will contain\r
-whatever's in $c->res->output.\r
-\r
-Note, by the way, that the uri path is relative to the application root, \r
+=head2 L<Catalyst::Plugin::Subrequest>
+
+=head3 Component based sub-requests.
+
+This is actually one of the features we brought over from L<Maypole>. There it 
+was called L<Maypole::Plugin::Component>. Basically, the idea is to set up 
+new request/response objects, and do an internal request, then return the 
+output. It's quite handy for various situations, Simon's example was a 
+shopping portal. I'm frequently using it to render parts of my site that I'm 
+also rendering with ajax, to avoid duplication of code.
+
+It's quite simple in use. You just call $c->subreq('</public/url>'); (or 
+with TT, [% c.subreq('/public/url') %] .) This will localize enough 
+of your request/response object so that it shouldn't affect your current
+request, set up a new path/uri, and call the Dispatcher to force a full
+request chain, including begin/end/auto/default and whatever else applies.
+if you don't like 'subreq', theres an alias as well: 'sub_request'.
+
+You can also set up the stash before the request, as well as pass parameters
+to the request like a normal form POST by passing optional hashrefs to the 
+subreq method. for example:
+
+       my $text=$c->subreq('/foo',{ bar=>$c->stash->{bar} }, {id=>23});
+
+This will dispatch to whatever handles '/foo', with bar in the stash, and
+$c->req->param('id') returning 23.  After the request, $text will contain
+whatever's in $c->res->output.
+
+Note, by the way, that the uri path is relative to the application root, 
 and not necessesarily the webserver root.
 
 =head2 DBIx::Class as Catalyst Model
@@ -1695,109 +1695,109 @@ with a variable, so you can generate Atom feeds with the same code.
 Now, go ahead and make RSS feeds for all your stuff. The world *needs* updates
 on your goldfish!
 
-=head2 FastCGI Deployment\r
-\r
-As a companion to Day 7's mod_perl article, today's article is about\r
-production FastCGI deployment.\r
-\r
-=head3 Pros\r
-\r
-=head4 Speed\r
-\r
-FastCGI performs equally as well as mod_perl.  Don't let the 'CGI' fool you;\r
-your app runs as multiple persistent processes ready to receive connections\r
-from the web server.\r
-\r
-=head4 App Server\r
-\r
-When using external FastCGI servers, your application runs as a standalone\r
-application server.  It may be restarted independently from the web server.\r
-This allows for a more robust environment and faster reload times when\r
-pushing new app changes.  The frontend server can even be configured to\r
-display a friendly "down for maintenance" page while the application is\r
-restarting.\r
-\r
-=head4 Load-balancing\r
-\r
-You can launch your application on multiple backend servers and allow the\r
-frontend web server to load-balance between all of them.  And of course, if\r
-one goes down, your app continues to run fine.\r
-\r
-=head4 Multiple versions of the same app\r
-\r
-Each FastCGI application is a separate process, so you can run different\r
-versions of the same app on a single server.\r
-\r
-=head4 Can run with threaded Apache\r
-\r
-Since your app is not running inside of Apache, the faster mpm_worker module\r
-can be used without worrying about the thread safety of your application.\r
-\r
-=head3 Cons\r
-\r
-=head4 More complex environment\r
-\r
-With FastCGI, there are more things to monitor and more processes running\r
-than when using mod_perl.\r
-\r
-=head3 Setup\r
-\r
-=head4 1. Install Apache with mod_fastcgi\r
-\r
-mod_fastcgi for Apache is a third party module, and can be found at\r
-L<http://www.fastcgi.com/>.  It is also packaged in many distributions, for\r
-example, libapache2-mod-fastcgi in Debian.\r
-\r
-=head4 2. Configure your application\r
-\r
-    # Serve static content directly\r
-    DocumentRoot  /var/www/MyApp/root\r
-    Alias /static /var/www/MyApp/root/static\r
-\r
-    FastCgiServer /var/www/MyApp/script/myapp_fastcgi.pl -processes 3\r
-    Alias /myapp/ /var/www/MyApp/script/myapp_fastcgi.pl/\r
-    \r
-    # Or, run at the root\r
-    Alias / /var/www/MyApp/script/myapp_fastcgi.pl/\r
-    \r
-The above commands will launch 3 app processes and make the app available at\r
-/myapp/\r
-\r
-=head3 Standalone server mode\r
-\r
-While not as easy as the previous method, running your app as an external\r
-server gives you much more flexibility.\r
-\r
-First, launch your app as a standalone server listening on a socket.\r
-\r
-    script/myapp_fastcgi.pl -l /tmp/myapp.socket -n 5 -p /tmp/myapp.pid -d\r
-    \r
-You can also listen on a TCP port if your web server is not on the same\r
-machine.\r
-\r
-    script/myapp_fastcgi.pl -l :8080 -n 5 -p /tmp/myapp.pid -d\r
-    \r
-You will probably want to write an init script to handle starting/stopping\r
-of the app using the pid file.\r
-\r
-Now, we simply configure Apache to connect to the running server.\r
-\r
-    # 502 is a Bad Gateway error, and will occur if the backend server is down\r
-    # This allows us to display a friendly static page that says "down for\r
-    # maintenance"\r
-    Alias /_errors /var/www/MyApp/root/error-pages\r
-    ErrorDocument 502 /_errors/502.html\r
-\r
-    FastCgiExternalServer /tmp/myapp -socket /tmp/myapp.socket\r
-    Alias /myapp/ /tmp/myapp/\r
-    \r
-    # Or, run at the root\r
-    Alias / /tmp/myapp/\r
-    \r
-=head3 More Info\r
-\r
-Lots more information is available in the new and expanded FastCGI docs that\r
-will be part of Catalyst 5.62.  For now you may read them here:\r
+=head2 FastCGI Deployment
+
+As a companion to Day 7's mod_perl article, today's article is about
+production FastCGI deployment.
+
+=head3 Pros
+
+=head4 Speed
+
+FastCGI performs equally as well as mod_perl.  Don't let the 'CGI' fool you;
+your app runs as multiple persistent processes ready to receive connections
+from the web server.
+
+=head4 App Server
+
+When using external FastCGI servers, your application runs as a standalone
+application server.  It may be restarted independently from the web server.
+This allows for a more robust environment and faster reload times when
+pushing new app changes.  The frontend server can even be configured to
+display a friendly "down for maintenance" page while the application is
+restarting.
+
+=head4 Load-balancing
+
+You can launch your application on multiple backend servers and allow the
+frontend web server to load-balance between all of them.  And of course, if
+one goes down, your app continues to run fine.
+
+=head4 Multiple versions of the same app
+
+Each FastCGI application is a separate process, so you can run different
+versions of the same app on a single server.
+
+=head4 Can run with threaded Apache
+
+Since your app is not running inside of Apache, the faster mpm_worker module
+can be used without worrying about the thread safety of your application.
+
+=head3 Cons
+
+=head4 More complex environment
+
+With FastCGI, there are more things to monitor and more processes running
+than when using mod_perl.
+
+=head3 Setup
+
+=head4 1. Install Apache with mod_fastcgi
+
+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.
+
+=head4 2. Configure your application
+
+    # Serve static content directly
+    DocumentRoot  /var/www/MyApp/root
+    Alias /static /var/www/MyApp/root/static
+
+    FastCgiServer /var/www/MyApp/script/myapp_fastcgi.pl -processes 3
+    Alias /myapp/ /var/www/MyApp/script/myapp_fastcgi.pl/
+    
+    # Or, run at the root
+    Alias / /var/www/MyApp/script/myapp_fastcgi.pl/
+    
+The above commands will launch 3 app processes and make the app available at
+/myapp/
+
+=head3 Standalone server mode
+
+While not as easy as the previous method, running your app as an external
+server gives you much more flexibility.
+
+First, launch your app as a standalone server listening on a socket.
+
+    script/myapp_fastcgi.pl -l /tmp/myapp.socket -n 5 -p /tmp/myapp.pid -d
+    
+You can also listen on a TCP port if your web server is not on the same
+machine.
+
+    script/myapp_fastcgi.pl -l :8080 -n 5 -p /tmp/myapp.pid -d
+    
+You will probably want to write an init script to handle starting/stopping
+of the app using the pid file.
+
+Now, we simply configure Apache to connect to the running server.
+
+    # 502 is a Bad Gateway error, and will occur if the backend server is down
+    # This allows us to display a friendly static page that says "down for
+    # maintenance"
+    Alias /_errors /var/www/MyApp/root/error-pages
+    ErrorDocument 502 /_errors/502.html
+
+    FastCgiExternalServer /tmp/myapp -socket /tmp/myapp.socket
+    Alias /myapp/ /tmp/myapp/
+    
+    # Or, run at the root
+    Alias / /tmp/myapp/
+    
+=head3 More Info
+
+Lots more information is available in the new and expanded FastCGI docs that
+will be part of Catalyst 5.62.  For now you may read them here:
 L<http://dev.catalyst.perl.org/file/trunk/Catalyst/lib/Catalyst/Engine/FastCGI.pm>
 
 =head2 Catalyst::View::TT
@@ -1816,7 +1816,7 @@ Catalyst::View::TT provides two different helpers for use to use: TT and TTSite.
 
 Create a basic Template Toolkit View using the provided helper script:
 
-    script/myapp_create.pl view MyView TT
+    script/myapp_create.pl view TT TT
 
 This will create lib/MyApp/View/MyView.pm, which is going to be pretty empty to start. However, it sets everything up that you need to get started. You can now define which template you want and forward to your view. For instance:
 
@@ -1825,7 +1825,7 @@ This will create lib/MyApp/View/MyView.pm, which is going to be pretty empty to
 
         $c->stash->{template} = 'hello.tt';
 
-        $c->forward( $c->view('MyView') );
+        $c->forward( $c->view('TT') );
     }
 
 In most cases, you will put the $c->forward into end(), and then you would only have to define which template you want to use. The S<DefaultEnd> plugin discussed on Day 8 is also commonly used.
@@ -1836,7 +1836,7 @@ Although the TT helper does create a functional, working view, you may find your
 
 Once again, you can use the helper script:
 
-    script/myapp_create.pl view myView TTSite
+    script/myapp_create.pl view TT TTSite
 
 This time, the helper sets several options for us in the generated View.
 
@@ -1886,7 +1886,7 @@ In our controllers, we can add data to the stash, and then access it from the te
 
         $c->stash->{template} = 'hello.tt';
 
-        $c->forward( $c->view('MyView') );
+        $c->forward( $c->view('TT') );
     }
 
 Then, in hello.tt:
@@ -1906,7 +1906,7 @@ In your controller:
 
         $c->stash->{template} = 'hello.tt';
 
-        $c->forward( $c->view('MyView') );
+        $c->forward( $c->view('TT') );
     }
 
 In hello.tt: