[Catalyst] Re: Chained, root action, with default sub present

2009-08-15 Thread Aristotle Pagaltzis
* Matija Grabnar [2009-08-09 16:35]: > If not, what do I have to change to have both index and default > in my root controller? Do you *need* both in the same controller? Since you can attach the root action of a Chained tree to any point in your URI space, there is no need to have anything but a

Re: [Catalyst] Why no extra attributes on Private actions?

2009-08-15 Thread Eden Cardim
On Sat, Aug 15, 2009 at 3:44 PM, Bill Moseley wrote: > Why does Catalyst::Controller not allow additional attributes on Private > actions? > > Marcus added this code in r5558 back in November of 2006. > >   5558 marcus if ( $attrs->{Private} && ( keys %$attrs > 1 ) ) { >   5558 marc

[Catalyst] Why no extra attributes on Private actions?

2009-08-15 Thread Bill Moseley
Why does Catalyst::Controller not allow additional attributes on Private actions? Marcus added this code in r5558 back in November of 2006. 5558 marcus if ( $attrs->{Private} && ( keys %$attrs > 1 ) ) { 5558 marcus $c->log->debug( 'Bad action definition "' Yes, I