[Catalyst] Action attributes

2009-06-05 Thread Илья
Hi there, we use Catalyst about year and one thing make a lot of pain. When you make typo in action attribute name Catalyst silently eat it. For example: sub foo : Loacal Arg(1) { } will be work, but Arg(1) just do nothing. Now we use few additional attributes and I add trivial check in

Re: [Catalyst] Action attributes

2009-06-14 Thread Илья
Hi, A patch that let you do something like __PACKAGE__-config( Dispatcher = { action_attributes = { allow = \...@list } } ); in MyApp.pm (preferably with the built in ones already in the list) to turn on strict checking would seem fine to me. thank you. I will try to add