[Catalyst-commits] r12347 - Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual

hkclark at dev.catalyst.perl.org hkclark at dev.catalyst.perl.org
Sun Dec 13 17:11:07 GMT 2009


Author: hkclark
Date: 2009-12-13 17:11:07 +0000 (Sun, 13 Dec 2009)
New Revision: 12347

Modified:
   Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/About.pod
   Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Components.pod
   Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Cookbook.pod
Log:
Merge in final set of changes from wolfman2000.  A big thanks to wolfman2000 for the updates!

Modified: Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/About.pod
===================================================================
--- Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/About.pod	2009-12-13 16:52:09 UTC (rev 12346)
+++ Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/About.pod	2009-12-13 17:11:07 UTC (rev 12347)
@@ -226,7 +226,7 @@
 gluing some other module into Catalyst; the display logic is written
 within the template itself.
 
-The Controller is Catalyst itself. When a request is made to Catalyst,
+The B<Controller> is Catalyst itself. When a request is made to Catalyst,
 it will be received by one of your Controller modules; this module
 will figure out what the user is trying to do, gather the necessary
 data from a Model, and send it to a View for display.

Modified: Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Components.pod
===================================================================
--- Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Components.pod	2009-12-13 16:52:09 UTC (rev 12346)
+++ Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Components.pod	2009-12-13 17:11:07 UTC (rev 12347)
@@ -200,6 +200,9 @@
 
 =head2 L<Catalyst::Plugin::AutoSession>
 
+L<Catalyst::Plugin::AutoSession> enables specified request parameters
+to generate session variables.
+
 =head2 L<Catalyst::Plugin::Browser>
 
 Extends L<Catalyst::Request> by adding the capability of browser
@@ -227,6 +230,8 @@
 
 =head2 L<Catalyst::Plugin::CGI::Untaint>
 
+Provides specific charset handlers for the Japanese charsets.
+
 =head2 L<Catalyst::Plugin::Charsets::Japanese>
 
 =head2 L<Catalyst::Plugin::Compress::Bzip2>
@@ -333,6 +338,8 @@
 
 =head2 L<Catalyst::Plugin::Redirect>
 
+Allows for easy redirecting with the Catalyst app.
+
 =head2 L<Catalyst::Plugin::RequestToken>
 
 =head2 L<Catalyst::Plugin::RequireSSL>
@@ -425,6 +432,8 @@
 
 =head2 L<Catalyst::Plugin::Upload::MD5>
 
+Computes the MD5 message digest of uploaded files.
+
 =head2 L<Catalyst::Plugin::Upload::MIME>
 
 =head2 L<Catalyst::Plugin::UploadProgress>

Modified: Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Cookbook.pod
===================================================================
--- Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Cookbook.pod	2009-12-13 16:52:09 UTC (rev 12346)
+++ Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Cookbook.pod	2009-12-13 17:11:07 UTC (rev 12347)
@@ -446,7 +446,7 @@
 
 Under role based access control each user is allowed to perform any
 number of roles. For example, at a zoo no one but specially trained
-personnel can enter the moose cage (Mynd you, møøse bites kan be
+personnel can enter the moose cage (Mynd you, møøse bites kan be
 pretty nasti!). For example:
 
     package Zoo::Controller::MooseCage;
@@ -745,8 +745,8 @@
 text if you wanted.
 
 Most Catalyst applications use a template system to generate their HTML,
-and though there are several template systems available, Template
-Toolkit is probably the most popular.
+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
 made things easy for the rest of us. Catalyst::View::TT provides the




More information about the Catalyst-commits mailing list