Re: [Catalyst] Tests fail installing Catalyst::Controller::FormBuilder

2009-05-06 Thread Chisel Wright
On Wed, May 06, 2009 at 12:29:55AM +0100, Tomas Doran wrote: You have fixes. Please commit them somewhere and we can get a development release out (at least). OK, I should be able to pick this up tonight. I'll drop a patch here when I'm done. -- Chisel Wright e: chi...@herlpacker.co.uk w:

Re: [Catalyst] Forward to view question

2009-05-06 Thread Dennis Daupert
On Tue, May 5, 2009 at 7:24 PM, Tomas Doran bobtf...@bobtfish.net wrote: Sorry for pointing out the obvious, but this is just perl: my $output = delete $c-res-{body}; opem(FH, file) or die; print FH $output; close(FH); will do what you want... Hi Tom, Thanks for your reply. There are

Re: [Catalyst] Application stallling problem

2009-05-06 Thread kakimoto
hi, all, I found that the problem again. 1) I ran my application with DBIC_TRACE=1 ie DBIC_TRACE=1 myapp_server.pl -d 2) When I clicked on a link which shows me all the subscription listings belonging to an agent, the application loads the page just fine (and quickly) 3) I then moved on to

[Catalyst] catalyst related programming job in florida

2009-05-06 Thread Martin Flack
Hi all, I'm a long-time perl hacker and brand new CTO of Velocitude, a web startup in Fort Lauderdale. I'm standardizing our coding on LAMP, Catalyst, DBIx::Class, TT, etc. We have a job opening available which would probably interest people on this list. We're looking for solid web development

Re: [Catalyst] catalyst related programming job in florida

2009-05-06 Thread Walter Vargas
I can help you from Venezuela :) (remote job ) --Mensaje original-- De: Martin Flack Para: catalyst@lists.scsys.co.uk Responder a: The elegant MVC web framework Asunto: [Catalyst] catalyst related programming job in florida Enviado: 6 May, 2009 11:01 AM Hi all, I'm a long-time perl

[Catalyst] How do I set the default view in Catalyst?

2009-05-06 Thread kakimoto
hi guys I been reading up on 1) the tute , http://search.cpan.org/~hkclark/Catalyst-Manual-5.7020/lib/Catalyst/Manual/Tutorial/MoreCatalystBasics.pod#CATALYST_VIEWS, 2) http://search.cpan.org/~mramberg/Catalyst-View-TT-0.29/lib/Catalyst/View/TT.pm#CONFIGURATION 3)

Re: [Catalyst] How do I set the default view in Catalyst?

2009-05-06 Thread Tomas Doran
kakim...@tpg.com.au wrote: From what I have read, to set default view to TT, I have to declare 'default_view' = 'TT', in my myApp.pm file. That's exactly right. So you'll be saying: __PACKAGE__-config( default_view = 'TT' ); in MyApp.pm Cheers t0m

Re: [Catalyst] Tests fail installing Catalyst::Controller::FormBuilder [patches attached]

2009-05-06 Thread Chisel Wright
On Wed, May 06, 2009 at 10:09:17AM +0100, Chisel Wright wrote: OK, I should be able to pick this up tonight. I'll drop a patch here when I'm done. I've attached three patches: - one for the TestApp/Component/* issue - one for Formbuilder::Action (it's not happy with Class::Accessor::Fast)

Re: [Catalyst] Forward to view question

2009-05-06 Thread Andrew Rodland
On Wednesday 06 May 2009 09:01:43 am Dennis Daupert wrote: On Tue, May 5, 2009 at 7:24 PM, Tomas Doran bobtf...@bobtfish.net wrote: my $output = delete $c-res-{body}; opem(FH, file) or die; print FH $output; close(FH); will do what you want... There are some things that aren't so

Re: [Catalyst] Forward to view question

2009-05-06 Thread Dennis Daupert
On Wed, May 6, 2009 at 5:28 PM, Andrew Rodland arodl...@comcast.net wrote: In that example you don't *have* a View::TTprint. Or if you do, it's just another subclas of C::V::TT with a different config and search path. No overloading, no OUTPUT. You forward to the view, it writes into