From: Kennedy Clark Date: Sun, 15 Nov 2009 13:52:01 +0000 (+0000) Subject: Integrate tome fix branch (with thanks to tome!) X-Git-Tag: v5.8005~87 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=6290bf87f4960688b5aec32fc762886031e9db09 Integrate tome fix branch (with thanks to tome!) --- diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index f0b3042..5332811 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -648,13 +648,13 @@ required if you do a single SQL statement on the command line). Use your OS command prompt. Please note that here we have chosen to use 'singular' table names. This -is because the default inflection code for L +is because the default inflection code for L does NOT handle plurals. There has been much philosophical discussion on whether table names should be plural or singular. There is no one correct answer, as long as one makes a choice and remains consistent with it. If you prefer plural table names (e.g. they are easier and more natural to read) then you will need to pass it an inflect_map -option. See L for more information. +option. See L for more information. For using other databases, such as PostgreSQL or MySQL, see L. @@ -754,11 +754,6 @@ into files. =item * -C causes the help to include the -L DBIC component. - -=item * - And finally, C is the standard DBI connect string for use with SQLite. diff --git a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod index 2456ca4..8c3523e 100644 --- a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod @@ -336,7 +336,6 @@ for the tutorial, but if you wish to use C, just convert to the following code: - use_session 1 password_type clear user_model DB::User diff --git a/lib/Catalyst/Manual/Tutorial/08_Testing.pod b/lib/Catalyst/Manual/Tutorial/08_Testing.pod index 2776f6f..95bb753 100644 --- a/lib/Catalyst/Manual/Tutorial/08_Testing.pod +++ b/lib/Catalyst/Manual/Tutorial/08_Testing.pod @@ -270,7 +270,7 @@ editor and enter the following: # Make sure the appropriate logout buttons are displayed $_->content_contains("/logout\">User Logout", "Both users should have a 'User Logout'") for $ua1, $ua2; - $ua1->content_contains("/books/form_create\">Create", + $ua1->content_contains("/books/form_create\">Admin Create", "Only 'test01' should have a create link"); $ua1->get_ok("http://localhost/books/list", "View book list as 'test01'");