From: Kieren Diment Date: Fri, 16 May 2008 12:55:22 +0000 (+0000) Subject: authorization doc fix X-Git-Tag: v5.8005~312 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=3778bcbe622622881133e21002eea4179453c2f0;hp=2d0526d162eaee76807a5f7534820429c0395a03 authorization doc fix --- diff --git a/Makefile.PL b/Makefile.PL index e56c0f5..51e2fb7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,7 @@ -use inc::Module::Install 0.65; +use inc::Module::Install 0.64; name 'Catalyst-Manual'; -all_from 'lib/Catalyst/ManualPlaceholder.pm'; +all_from 'lib/Catalyst/Manual.pm'; author 'Jonathan Rockway '; license 'perl'; diff --git a/lib/Catalyst/Manual/Tutorial/Authorization.pod b/lib/Catalyst/Manual/Tutorial/Authorization.pod index 2a16efa..d6be44f 100644 --- a/lib/Catalyst/Manual/Tutorial/Authorization.pod +++ b/lib/Catalyst/Manual/Tutorial/Authorization.pod @@ -388,13 +388,13 @@ Then run the Catalyst development server script: $ script/myapp_server.pl -Log in as C. Once at the book list, click the "Create" link to -try the C action. You should receive a red "Unauthorized!" -error message at the top of the list. (Note that in reality you would -probably want to place the "Create" link code in -C inside an C statement that only displays -the list to admin-level users.) If you log in as C you should -be able to view the C form and add a new book. +Log in as C. Once at the book list, click the "Create" link +to try the C action. You should receive a red +"Unauthorized!" error message at the top of the list. (Note that in +the example code the "Create" link code in C +is inside an C statement that only displays the list to +admin-level users.) If you log in as C you should be able to +view the C form and add a new book. When you are done, use one of the 'Logout' links (or go to the L URL directly) when you are done.