Re: [Catalyst] chained actions, knowing if current action is an endpoint or not

2007-02-02 Thread Matt S Trout
On 1 Feb 2007, at 17:37, John Napiorkowski wrote: Hmm, interesting point. I'm going to go and try writing something that trys to modify the ActionContainer and see what happens! --john You'd be better screwing with $c->action, I think. Something like if ($c->stack->[-1] eq $c->action->chain-

Re: [Catalyst] chained actions, knowing if current action is an endpoint or not

2007-02-02 Thread Brian Cassidy
Matt S Trout wrote: On 1 Feb 2007, at 17:37, John Napiorkowski wrote: Hmm, interesting point. I'm going to go and try writing something that trys to modify the ActionContainer and see what happens! --john You'd be better screwing with $c->action, I think. Something like if ($c->stack->[-1]

Re: [Catalyst] formbuilder method in C::C::FormBuilder not located

2007-02-02 Thread rahed h
2007/2/1, Mark Zealey <[EMAIL PROTECTED]>: I'm guessing you didn't change the line which says: use base 'Catalyst::Controller'; to: use base 'Catalyst::Controller::FormBuilder'; Actually I added that class but thought I didn't need to omit Catalyst::Controller. Thank you Radek ___

[Catalyst] Catalyst::Engine::HTTP::Restarter issue

2007-02-02 Thread Jim Spath
While developing my site, I've begun using the -restart option so I don't have to restart the webserver every time I am working on something. I've run into a problem where sometimes, when it tries to restart, it complains that it can't find one of my DBIx::Class model files: Can't locate MyAp

Re: [Catalyst] Catalyst::Engine::HTTP::Restarter issue

2007-02-02 Thread Nilson Santos Figueiredo Junior
On 2/2/07, Jim Spath <[EMAIL PROTECTED]> wrote: Another way I can get around the issue is to kill the server, and restart it by hand. This problem also happens with me. It's even reproducible: every time I edit MyApp.pm, restarter can't do its thing so I end up killing it and running it again.