From: Matt S Trout Date: Thu, 22 Jun 2006 14:53:05 +0000 (+0000) Subject: Documented auto/forward/detach behaviour for chains in Intro X-Git-Tag: 5.7099_04~480 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d666af81cece84d49c57bb91949641937ad57091;p=catagits%2FCatalyst-Runtime.git Documented auto/forward/detach behaviour for chains in Intro r10133@cain (orig r4426): phaylon | 2006-06-20 20:28:25 +0000 --- diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 91fc76e..fe9ac8d 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -651,6 +651,15 @@ C<$c-Erequest-Earguments>. =back +Note that the list of C actions called depends on the private path +of the endpoint of the chain, not on the chained actions way. The C +actions will be run before the chain dispatching begins. In every other +aspect, C actions behave as documented. + +The Cing to other actions does just what you would expect. But if +you C out of a chain, the rest of the chain will not get called +after the C returned. + =item * B (B) package MyApp::Controller::Foo;