Re: [Catalyst] FormValidator::Simple Sillyness

2006-08-30 Thread Karl . Moens
* Christopher H. Laco [EMAIL PROTECTED] [2006-08-29 21:15]: So, imho, FV::S is not very object vs. class friendly. If I needed to set two different sets of messages for two seperate parts of an app that just happen to have the same action name (like save, load, delete, add, or anything

Re: [Catalyst] FormValidator::Simple Sillyness

2006-08-30 Thread Jason Crummack
I currently use $c-localize in my templates to allow foreign language labels / messages, I struggled a little with HTML::Widget to do this where as with CGI::FormBuilder it was relatively straight forward, so at the moment ;-) I'm also a fan of CGI::FormBuilder. It can also (don't want to

Re: [Catalyst] Plugins vs. Base Controllers

2006-08-30 Thread Krzysztof Krzyzaniak
Matt S Trout wrote: [..] If your only argument is I need $c you can usually do a controller, view or model with an ACCEPT_CONTEXT method. Often you only actually need the app instance (i.e. the MyApp class name in 5.70) not the full request context. Could someone point me example (some

Re: [Catalyst] Announce Catalyst::Plugin::DBIC::TemplateMaker

2006-08-30 Thread Nilson Santos Figueiredo Junior
On 8/30/06, Kieren Diment [EMAIL PROTECTED] wrote: It does virtually nothing, apart from saving you some typing. You must resolve any related columns to a properly stringified name for example. Maybe it should've been a Catalyst::Helper ? Then it could be used through Catalyst's default

Re: [Catalyst] Plugins vs. Base Controllers

2006-08-30 Thread John Napiorkowski
Check out the thread summary for this thread at: http://www.gossamer-threads.com/lists/catalyst/users/9312?search_string=Plugins%20vs.%20Base%20Controllers;#9312 and toward the bottom Matt gives and example and pointed me to a module that was using it. --john - Original Message

Re: [Catalyst] Announce Catalyst::Plugin::DBIC::TemplateMaker

2006-08-30 Thread Kieren Diment
On 30/08/06, Nilson Santos Figueiredo Junior [EMAIL PROTECTED] wrote: On 8/30/06, Kieren Diment [EMAIL PROTECTED] wrote: It does virtually nothing, apart from saving you some typing.You must resolve any related columns to a properly stringified name for example.Maybe it should've been a

Re: [Catalyst] Plugins vs. Base Controllers

2006-08-30 Thread Krzysztof Krzyzaniak
John Napiorkowski wrote: Check out the thread summary for this thread at: http://www.gossamer-threads.com/lists/catalyst/users/9312?search_string=Plugins%20vs.%20Base%20Controllers;#9312 and toward the bottom Matt gives and example and pointed me to a module that was using it. --john

Re: [Catalyst] Anyone actually using FastCGI with Apache (or even lighttpd)?

2006-08-30 Thread Jason Kohles
On 8/30/06, Matt S Trout [EMAIL PROTECTED] wrote: On 30/08/06, Jason Kohles [EMAIL PROTECTED] wrote: On 8/29/06, Matt S Trout [EMAIL PROTECTED] wrote: If somebody could write this up for Engine::FastCGI in the form of a patch I'm sure it could ship in 5.7002 I started to, but the

Re: [Catalyst] Is this right (Chained actions)

2006-08-30 Thread John Napiorkowski
Okay, Maybe a more simple explanation of my question. The documentation talkes about using relative paths in the Chain attribute, however the :Chained('.') doesn't work unless there is already a :Chained('/') for it to find. So if I want to match, /templates/* I can do the following

Re: [Catalyst] auth::DBIC session problems

2006-08-30 Thread Yuval Kogman
On Tue, Aug 15, 2006 at 12:01:34 -0400, [EMAIL PROTECTED] wrote: So I still have the problem where if I use Authentication::Store::DBIC, I cannot use a session plug-in because freeze() doesn't like coderefs, and my DBIC objects contain codrefs for their inflate/deflate methods. Okay, i

Re: [Catalyst] Fastest Perl HTTPD?

2006-08-30 Thread Pedro Melo
Hi, On 2006/08/28, at 12:48, Kaare Rasmussen wrote: I don't. But for me at least, what I'm looking for is a simpler HTTPD to power my back-end's with Catalyst apps. Even if ax2 is a little bit slower than Apache, it would be a good choice in some situations. Agreed. But that is asuming that

[Catalyst] Catalyst::Engine::POE status

2006-08-30 Thread Pedro Melo
Hi, is anybody using the POE engine? I'm doing a standalone web-based perl App and it seems an excellent choice. Thanks in advance, -- Pedro Melo JID: xmpp:[EMAIL PROTECTED] ___ List: Catalyst@lists.rawmode.org Listinfo:

[Catalyst] Generate a URL for a given action

2006-08-30 Thread John Napiorkowski
Hi, I'm sure this is a no brainer but I just can't find it anywhere. Basically what I am trying to find out is if there is a programmatic way to discover the url for a given action in controller just by using the action name. Here is the example I am trying to deal with: package

Re: [Catalyst] Generate a URL for a given action

2006-08-30 Thread Justin Guenther
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Napiorkowski Sent: August 30, 2006 8:08 PM To: catalyst@lists.rawmode.org Subject: [Catalyst] Generate a URL for a given action Hi, I'm sure this is a no brainer but I just can't find it