From: Jonathan Rockway Date: Mon, 12 Feb 2007 21:27:31 +0000 (+0000) Subject: applying doc patch regarding :Private from Troy Davis X-Git-Tag: v5.8005~356 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=089747172705c7ecb4dfac88c6e3b09f8c48e672 applying doc patch regarding :Private from Troy Davis --- diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 5aff621..941c021 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -819,8 +819,9 @@ dispatch type, please see L. sub foo : Private { } Matches no URL, and cannot be executed by requesting a URL that -corresponds to the action key. Private actions can be executed only -inside a Catalyst application, by calling the C method: +corresponds to the action key. Catalyst's :Private attribute is exclusive +and doesn't work with other attributes. Private actions can be executed +only inside a Catalyst application, by calling the C method: $c->forward('foo');