Re: [Catalyst] FormHandler -- pro or con?

2010-12-08 Thread Zbigniew Lukasiak
On Thu, Dec 9, 2010 at 2:44 AM, Toby Corkindale wrote: > (I do have some code that programmatically generates the form config > based on the object you're editting, although I use a precreated base > for it) Well - there is http://search.cpan.org/~gshank/HTML-FormHandler-Model-DBIC-0.14/lib/HTML

Re: [Catalyst] FormHandler -- pro or con?

2010-12-08 Thread Toby Corkindale
On 7 December 2010 18:03, Octavian Rasnita wrote: > From: "Toby Corkindale" > >> On 1 December 2010 02:34, will trillich wrote: >>> Anybody else *dissing* FormHandler? We've started developing based on >>> FormHandler lately and haven't had troubles... yet? >> >> I'm running it, and have been ve

Re: [Catalyst] Transferring control via root/auto

2010-12-08 Thread Andrew Rodland
On Wednesday, December 08, 2010 07:31:42 am Tomas Doran wrote: > On 7 Dec 2010, at 16:11, Ben van Staveren wrote: > > You want to $c->detach('end') -- unless that's the default these > > days. I use this pattern a lot and the only difference I see is that > > > I do: > The end action will _always_

Re: [Catalyst] Transferring control via root/auto

2010-12-08 Thread Cosmin Budrica
Actualy I find that diagram to pretty much stick to the basic rules. His auto code is the problem. While he's redirecting to the change password, he is also re-entering auto. And, most probably the conditions are met. A pretty straight forward solution is to do something like: if ($c->user_exists

Re: [Catalyst] Configuration Management in Continuous Integration environments

2010-12-08 Thread Trevor Leffler
Not exactly a Catalyst-specific query, however... Right, certainly loading all the deps onto your CI at the system/global level doesn't work when you've multiple projects, branches building that have conflicting dependency requirements. I've seen this problem solved by the "toolchain" method

Re: [Catalyst] Transferring control via root/auto

2010-12-08 Thread Ashley Pond V
On Wed, Dec 8, 2010 at 6:59 AM, Larry Leszczynski wrote: > > In situations like this I find this flow diagram helpful: > >   http://dev.catalystframework.org/attachment/wiki/WikiStart/catalyst-flow.png > > but I admit I am also not totally clear about how detach/go fit in... > Maybe someone has an

Re: [Catalyst] Transferring control via root/auto

2010-12-08 Thread Larry Leszczynski
Hi - On Wed, 08 Dec 2010 13:31 +, "Tomas Doran" wrote: > > On 7 Dec 2010, at 16:11, Ben van Staveren wrote: > > > You want to $c->detach('end') -- unless that's the default these > > days. > > The end action will _always_ be run, there is no need to detach to the > end action. > > How

Re: [Catalyst] Transferring control via root/auto

2010-12-08 Thread Tomas Doran
On 7 Dec 2010, at 16:11, Ben van Staveren wrote: You want to $c->detach('end') -- unless that's the default these days. I use this pattern a lot and the only difference I see is that I do: The end action will _always_ be run, there is no need to detach to the end action. However I'm no