Re: [Catalyst] Catalyst::Controller::FormBuilder config problem

2007-01-02 Thread Matt S Trout
On 21 Dec 2006, at 18:05, Michael Reece wrote: be wary of putting your base controller class in the MyApp/ Controller/ directory, because catalyst will load it as a controller itself. which sucks if you want to put default inheritable actions in your base class. i use MyApp/Controller.pm

Re: [Catalyst] Catalyst::Controller::FormBuilder config problem

2007-01-02 Thread Michael Reece
On Jan 2, 2007, at 7:28 AM, Matt S Trout wrote: On 21 Dec 2006, at 18:05, Michael Reece wrote: be wary of putting your base controller class in the MyApp/ Controller/ directory, because catalyst will load it as a controller itself. which sucks if you want to put default inheritable

Re: [Catalyst] Catalyst::Controller::FormBuilder config problem

2007-01-02 Thread Matt S Trout
On 2 Jan 2007, at 17:30, Michael Reece wrote: aha, it looks like Module::Pluggable was made more useful last april or so. thanks for the pointer. Actually, we were using Module::Pluggable::Fast until 5.70. However muttley was kind enough to help us get rid of that horrific piece of shit

Re: [Catalyst] Catalyst::Controller::FormBuilder config problem

2006-12-22 Thread Robert 'phaylon' Sedlacek
Michael Reece wrote: be wary of putting your base controller class in the MyApp/Controller/ directory, because catalyst will load it as a controller itself. which sucks if you want to put default inheritable actions in your base class. Why does it suck especially then? i use

[Catalyst] Catalyst::Controller::FormBuilder config problem

2006-12-21 Thread Ulrich Leodolter
Hi, The config method as described in Catalyst::Controller::FormBuilder doesn't work for me. in MyApp.pm __PACKAGE__-config( name = 'MyApp', 'Controller::FormBuilder' = { new = { method = 'post',

Re: [Catalyst] Catalyst::Controller::FormBuilder config problem

2006-12-21 Thread Juan Camacho
On 12/21/06, Ulrich Leodolter [EMAIL PROTECTED] wrote: Hi, The config method as described in Catalyst::Controller::FormBuilder doesn't work for me. in MyApp.pm RTM. You have the config options in the wrong place. Put them in your Controller class -- not in MyApp.pm. I recommend you