Re: [Catalyst] Mason view hackers (and other views), PING

2007-05-13 Thread Marc Espie
On Sat, May 12, 2007 at 02:09:31PM -0500, Dave Rolsky wrote: On Sat, 12 May 2007, Matt S Trout wrote: Something I'd be delighted if you'd have a think about: how to make Mason use intelligent search paths for Chained actions - the autohandler/dhandler etc. system is beautiful but it'll need

Re: [Catalyst] User account registration login

2007-05-13 Thread Chisel Wright
On Sat, May 12, 2007 at 10:23:41AM -0500, Tom Printy wrote: I was wondering if there is a user registration/account creation/login module for catalyst. While I understand that all login systems are different I was hoping that there was one that I could extend to meet my needs instead of

Re: [Catalyst] Question about Catalyst::Controller::FormBuilder

2007-05-13 Thread Balaji Srinivasan
Rather than the two approaches above, I think a better one was to add a new validation type to the FormBuilder VALIDATE array. $CGI::FormBuilder::Field::VALIDATE{FOOFIELD} = '/^[^,]{6,40}$/'; Now in all my forms, i just set the validate field to FOOFIELD. This works great for me. It avoide me

Re: [Catalyst] Question about Catalyst::Controller::FormBuilder

2007-05-13 Thread Matt S Trout
On Sun, May 13, 2007 at 10:43:31AM -0700, Balaji Srinivasan wrote: Rather than the two approaches above, I think a better one was to add a new validation type to the FormBuilder VALIDATE array. $CGI::FormBuilder::Field::VALIDATE{FOOFIELD} = '/^[^,]{6,40}$/'; Now in all my forms, i just set