X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F06_Authorization.pod;h=1280a818d70b41f9f2000482e3ecdd9ddf63fe99;hp=10debada32ea8dae214358034f11551aa54ac7db;hb=691a8b7cc8125e97b0d3a9c33b9e6f68dfde8886;hpb=333f9299012b2bafa32a49bf8fc7e26dbdcbd693 diff --git a/lib/Catalyst/Manual/Tutorial/06_Authorization.pod b/lib/Catalyst/Manual/Tutorial/06_Authorization.pod index 10debad..1280a81 100644 --- a/lib/Catalyst/Manual/Tutorial/06_Authorization.pod +++ b/lib/Catalyst/Manual/Tutorial/06_Authorization.pod @@ -64,8 +64,9 @@ actions. The first half looks at basic authorization concepts. The second half looks at how moving your authorization code to your model can simplify your code and make things easier to maintain. -You can checkout the source code for this example from the catalyst -subversion repository as per the instructions in +Source code for the tutorial in included in the F directory +of the Tutorial Virtual machine (one subdirectory per chapter). There +are also instructions for downloading the code in L. @@ -273,11 +274,18 @@ the "C" line: return any(map { $_->role } $self->roles) eq $role; } -Let's also add Perl6::Junction to the requirements listed in +Let's also add C to the requirements listed in Makefile.PL: requires 'Perl6::Junction'; +B Feel free to use C in lieu of C if +you prefer. Also, please don't let the use of the C +module above lead you to believe that Catalyst is somehow dependent on +Perl 6... we are simply using that module for its +L +C function. + Now we need to add some enforcement inside our controller. Open C and update the C method to match the following code: @@ -299,9 +307,6 @@ match the following code: # with related 'book_authors' entries $c->stash->{object}->delete; - # Use 'flash' to save information across requests until it's read - $c->flash->{status_msg} = "Book deleted"; - # Redirect the user back to the list page $c->response->redirect($c->uri_for($self->action_for('list'), {mid => $c->set_status_msg("Deleted book $id")}));