Re: [Catalyst] Mason configuration in YAML

2006-12-08 Thread Jon Warbrick
On Thu, 7 Dec 2006, Kevin Old wrote: ... then in Mason.pm you can use it like this: package MyApp::View::Mason; use base 'Catalyst::View::Mason'; __ PACKAGE__-config-{DEBUG} = 'all'; __ PACKAGE__-config-{comp_root} = $c-config-{comp_root}; __ PACKAGE__-config-{data_dir} =

Re: [Catalyst] question from tutorial - does creating HTML in a controller using HTML::Widget violate MVC?

2006-12-08 Thread Matt S Trout
On 6 Dec 2006, at 23:20, Thomas L. Shinnick wrote: At 04:12 PM 12/6/2006, Hermida, Leandro wrote: Jonathan Rockway wrote: Nilson Santos Figueiredo Junior wrote: On 12/6/06, Matt S Trout [EMAIL PROTECTED] wrote: Reaction calls these ViewPort objects :) Sweet. Any docs yet? The

Re: [Catalyst] usign Catalyst::Plugin::Prototype

2006-12-08 Thread Luis Azevedo
There is no standard Ajax framework, and I believe there will never be... Ruby on Rails uses Prototype, that's probably why Prototype is a trend more than a standard. But what I believe is that Prototype is really simple to use and effective, with a very small footprint. Also you might

[Catalyst] Fast CGI vs ModPerl

2006-12-08 Thread Octavian Rasnita
Hi, Which of Fast CGI and mod_perl do you recommend for using with Catalyst? The important things I am thinking to are the speed and the ease of configuration/maintenance, but you can tell me if there is something else important to keep in mind. Thank you. Octavian

Re: [Catalyst] Mason configuration in YAML

2006-12-08 Thread Kevin Old
On 12/8/06, Jon Warbrick [EMAIL PROTECTED] wrote: On Thu, 7 Dec 2006, Kevin Old wrote: ... then in Mason.pm you can use it like this: package MyApp::View::Mason; use base 'Catalyst::View::Mason'; __ PACKAGE__-config-{DEBUG} = 'all'; __ PACKAGE__-config-{comp_root} =

Re: [Catalyst] Fast CGI vs ModPerl

2006-12-08 Thread Renaud Drousies
In my opinion, I'd say that the main disadvantage of running a mod_perl application is that your application runs with the webserver's credentials, which means that: - Any security hole means your whole webserver can be compromised - If you need your catalyst app to access some ressources, then

Re: [Catalyst] Fast CGI vs ModPerl

2006-12-08 Thread Perrin Harkins
Octavian Rasnita wrote: Which of Fast CGI and mod_perl do you recommend for using with Catalyst? This has been discussed before on the list pretty thoroughly. Please see the archives. - Perrin ___ List: Catalyst@lists.rawmode.org Listinfo:

Re: [Catalyst] Mason configuration in YAML

2006-12-08 Thread Brandon Black
On 12/8/06, Kevin Old [EMAIL PROTECTED] wrote: On 12/8/06, Jon Warbrick [EMAIL PROTECTED] wrote: On Thu, 7 Dec 2006, Kevin Old wrote: ... then in Mason.pm you can use it like this: package MyApp::View::Mason; use base 'Catalyst::View::Mason'; __ PACKAGE__-config-{DEBUG} = 'all';