[Catalyst-commits] r7880 - trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial

hkclark at dev.catalyst.perl.org hkclark at dev.catalyst.perl.org
Mon Jun 2 00:43:44 BST 2008


Author: hkclark
Date: 2008-06-02 00:43:44 +0100 (Mon, 02 Jun 2008)
New Revision: 7880

Modified:
   trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod
   trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Authentication.pod
   trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Authorization.pod
   trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod
   trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Testing.pod
Log:
Fix erroneous "Part #" cross references between parts of the tutorial.

Modified: trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod
===================================================================
--- trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod	2008-06-01 22:44:09 UTC (rev 7879)
+++ trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/AdvancedCRUD.pod	2008-06-01 23:43:44 UTC (rev 7880)
@@ -57,7 +57,7 @@
 =head1 DESCRIPTION
 
 This part of the tutorial explores more advanced functionality for
-Create, Read, Update, and Delete (CRUD) than we saw in Part 3.  In
+Create, Read, Update, and Delete (CRUD) than we saw in Part 4.  In
 particular, it looks at a number of techniques that can be useful for
 the Update portion of CRUD, such as automated form generation,
 validation of user-entered data, and automated transfer of data between

Modified: trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Authentication.pod
===================================================================
--- trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Authentication.pod	2008-06-01 22:44:09 UTC (rev 7879)
+++ trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Authentication.pod	2008-06-01 23:43:44 UTC (rev 7880)
@@ -58,7 +58,7 @@
 
 Now that we finally have a simple yet functional application, we can 
 focus on providing authentication (with authorization coming next in 
-Part 5).
+Part 6).
 
 This part of the tutorial is divided into two main sections: 1) basic,
 cleartext authentication and 2) hash-based authentication.
@@ -77,7 +77,7 @@
 
 First, we add both user and role information to the database (we will
 add the role information here although it will not be used until the
-authorization section, Part 5).  Create a new SQL script file by opening
+authorization section, Part 6).  Create a new SQL script file by opening
 C<myapp02.sql> in your editor and insert:
 
     --

Modified: trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Authorization.pod
===================================================================
--- trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Authorization.pod	2008-06-01 22:44:09 UTC (rev 7879)
+++ trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Authorization.pod	2008-06-01 23:43:44 UTC (rev 7880)
@@ -57,7 +57,7 @@
 =head1 DESCRIPTION
 
 This part of the tutorial adds role-based authorization to the existing
-authentication implemented in Part 4.  It provides simple examples of
+authentication implemented in Part 5.  It provides simple examples of
 how to use roles in both TT templates and controller actions.  The first
 half looks at manually configured authorization.  The second half looks
 at how the ACL authorization plugin can simplify your code.
@@ -238,7 +238,7 @@
 body has already been set.  In reality you would probably want to use a
 technique that maintains the visual continuity of your template layout
 (for example, using the "status" or "error" message feature added in
-Part 2).
+Part 3).
 
 B<TIP>: If you want to keep your existing C<url_create> method, you can
 create a new copy and comment out the original by making it look like a

Modified: trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod
===================================================================
--- trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod	2008-06-01 22:44:09 UTC (rev 7879)
+++ trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod	2008-06-01 23:43:44 UTC (rev 7880)
@@ -762,7 +762,7 @@
 One option would be to create a separate schema file for each table in
 the database, however, lets use the same L<DBIx::Class::Schema::Loader>
 used earlier with C<create=dynamic> to build the static files for us.
-First, lets remove the schema file created in Part 2:
+First, lets remove the schema file created earlier:
 
     $ rm lib/MyApp/Schema.pm 
 

Modified: trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Testing.pod
===================================================================
--- trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Testing.pod	2008-06-01 22:44:09 UTC (rev 7879)
+++ trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/Testing.pod	2008-06-01 23:43:44 UTC (rev 7880)
@@ -288,7 +288,7 @@
 
 Experiment with the C<DBIC_TRACE>, C<CATALYST_DEBUG>
 and C<-v> settings.  If you find that there are errors, use the
-techniques discussed in the "Catalyst Debugging" section (Part 6) to
+techniques discussed in the "Catalyst Debugging" section (Part 7) to
 isolate and fix any problems.
 
 If you want to run the test case under the Perl interactive debugger,




More information about the Catalyst-commits mailing list