From: Kieren Diment Date: Sat, 11 Feb 2012 11:17:37 +0000 (+1100) Subject: Changes prompted by RT 74869 (thanks William Blunn). X-Git-Tag: 5.9003~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=f577e42d6082c6b034295995286d248e57e290e0 Changes prompted by RT 74869 (thanks William Blunn). --- diff --git a/Changes b/Changes index ced88c8..319178e 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for Catalyst-Manual - - Hilight the importance of uncommenting the template line in the list action + - Better docs of :Global inspired by RT 74869 (thanks William Blunn) + - Highlight the importance of uncommenting the template line in the list action 5.9003 - Clarified Data::Dumper usage. RT#71410 Thanks to Bill Corr diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index bd9ad73..e9ba5b1 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -23,7 +23,7 @@ possible to do things in a different way. Other web frameworks are I simpler to use, but achieve this by locking the programmer into a single set of tools. Catalyst's emphasis on flexibility means that you have to think more to use it. We view this as a feature. For -example, this leads to Catalyst being more suited to system integration +example, this leads to Catalyst being better suited to system integration tasks than other web frameworks. =head3 MVC @@ -53,7 +53,7 @@ L, L... =item * B Control the whole request phase, check parameters, dispatch actions, flow -control. Catalyst itself! +control. This is the meat of where Catalyst works. =back @@ -804,14 +804,18 @@ application (e.g. http://localhost:3000/ ): package MyApp::Controller::Root; use base 'Catalyst::Controller'; + # Sets the actions in this controller to be registered with no prefix # so they function identically to actions created in MyApp.pm + __PACKAGE__->config( namespace => ''); + sub default : Path { my ( $self, $context ) = @_; $context->response->status(404); $context->response->body('404 not found'); } + 1; @@ -820,9 +824,9 @@ The code __PACKAGE__->config( namespace => '' ); makes the controller act as if its namespace is empty. As you'll see -below, an empty namespace makes many of the URL-matching attributes, -such as :Path, :Local and :Global matches, match at the start of the -URL path. +below, an empty namespace makes many of the URL-matching attributes, such +as :Path and :Local match at the start of the URL path (i.e. the +application root). =back @@ -850,20 +854,30 @@ subroutine name together determine the path. =item * Root-level (C<:Global>) package MyApp::Controller::Foo; - sub foo : Global { } -Matches http://localhost:3000/foo - that is, the action is mapped -directly to the controller namespace, ignoring the function name. + sub bar : Global { + my ($self, $c) = @_; + $c->res->body( + $c->res->body('sub bar in Controller::Foo triggered on a request for ' + . $c->req->uri)); + } -C<:Global> always matches from root: it is sugar for C<:Path('/methodname')>. -C<:Local> is simply sugar for C<:Path('methodname')>, which takes the package -namespace as described above. +1; - package MyApp::Controller::Root; - __PACKAGE__->config( namespace => ''); - sub foo : Local { } +Matches http://localhost:3000/foo - that is, the action is mapped +directly to the controller namespace, ignoring the function name. -Use whichever makes the most sense for your application. +C<:Global> always matches from the application root: it is simply +shorthandfor C<:Path('/methodname')>. C<:Local> is shorthand for +C<:Path('methodname')>, which takes the controller namespace as described +above. + +Usage of the C handler is rare in all but very old Catalyst +applications (e.g. before Catalyst 5.7). The use cases where C +used to make sense are now largely replaced by the C dispatch +type, or by empty C declarations on an controller action. C +is still included in Catalyst for backwards compatibility, although +legitimate use-cases for it may still exist (but nobody can. =item * Changing handler behaviour: eating arguments (C<:Args>)