Re: [Catalyst] CMS

2007-08-24 Thread Zbigniew Lukasiak
I don't know if that is feasible - but perhaps we could try to define some way of building components cross cutting the MVC pattern. Like a threaded discussions component that you could attach to any page and that would contain the model part to store the posts the controller to manage them and

Re: [Catalyst] A Perl Message Queue?

2007-08-24 Thread Jesper Krogh
I don't know if you can do Queing but from Jesper's description it didn't seem like order was important. Seemed to me that he just wanted to stash something away and grok it later on. Thats pretty much the requirement. But it needs to be fail-tolerant and survive a reboot of the computer

[Catalyst] XML RPC : Authentication and Session

2007-08-24 Thread Nicolas Raspail
Hello, I'm new in the Catalyst World and I'm trying to make my first app with it. But I have a problem with the session. I'm building an XML RPC server, and I want the users to be authenticated before using some commands. So I have created a controller (XMLRPC.pm) with the script and I

Re: [Catalyst] DBIx question

2007-08-24 Thread Matt Lawrence
Will Smith wrote: Hi, I know this is not the room for DBIx, I tried to post in DBIx, but did not go through, so, if you don't mind, please do not bounce me out. my question is: I have a multiple join, and trying to sort the dataset using oder_by, and get either error, or do not sort. my code

Re: [Catalyst] CMS

2007-08-24 Thread Matt Rosin
Catalyst::Plugin::I18N::DBIC (and Mango::Catalyst::Plugin::I18N) is maybe a crosscutting thing like Zbigniew mentions with some useful concepts. I'm not looking to build Drupal or a blog platform but I have nothing against them per se. I was thinking more of a tool to reduce the amount of

Re: [Catalyst] DBIx question

2007-08-24 Thread Charlie Garrison
Good morning, On 24/8/07 at 7:57 AM -0700, Will Smith [EMAIL PROTECTED] wrote: I have a multiple join, and trying to sort the dataset using oder_by, and get either error, or do not sort. my code is: # table: calls,property,city . property has many calls, city has many property,

Re: [Catalyst] DBIx question

2007-08-24 Thread Will Smith
Thank you all, it works. Matt Lawrence [EMAIL PROTECTED] wrote: Will Smith wrote: Hi, I know this is not the room for DBIx, I tried to post in DBIx, but did not go through, so, if you don't mind, please do not bounce me out. my question is: I have a multiple join, and trying to sort the

Re: [Catalyst] A Perl Message Queue?

2007-08-24 Thread J. Shirley
On 8/24/07, Jesper Krogh [EMAIL PROTECTED] wrote: I don't know if you can do Queing but from Jesper's description it didn't seem like order was important. Seemed to me that he just wanted to stash something away and grok it later on. Thats pretty much the requirement. But it needs to be

RE: [Catalyst] CMS

2007-08-24 Thread Hartmaier Alexander
I installed WebGUI over a year ago for a friend who runs a tattoo shop and I wasn’t satisfied with neither the installation nor the use of it. Before the site got live it was replaced by another CMS, dunno which one. -Alex From: John Wang [mailto:[EMAIL PROTECTED] Sent: Thursday, August

Re: [Catalyst] XML RPC Server and RenderView

2007-08-24 Thread Joe Landman
Nicolas Raspail wrote: Hello, when playing with Catalyst::Plugin::Server::XMLRPC following the documentation, I get the same behaviour as Joe. Hmmm I thought it was just me. I have search the archive and found thie mail from Joe Landman , and he has the same problem, but

RE: [Catalyst] A Perl Message Queue?

2007-08-24 Thread Hartmaier Alexander
So TheSchwartz may be a good module to queue mails by a Catalyst app for sending them by let’s say a perl script run by cron (or running all the time)?! At the moment I’m sending the mails directly from my Cat app (SMTP to localhost mail daemon) which works flawless (as long as the local MTA

Re: [Catalyst] A Perl Message Queue?

2007-08-24 Thread Bernhard Graf
Hartmaier Alexander wrote: So TheSchwartz may be a good module to queue mails by a Catalyst app for sending them by let’s say a perl script run by cron (or running all the time)?! At the moment I’m sending the mails directly from my Cat app (SMTP to localhost mail daemon) which works

Re: [Catalyst] XML RPC Server and RenderView

2007-08-24 Thread Matthieu Codron
Hi, Nicolas Raspail wrote: Hello, when playing with Catalyst::Plugin::Server::XMLRPC following the documentation, I get the same behaviour as Joe. Hmmm I thought it was just me. I have search the archive and found thie mail from Joe Landman , and he has the same problem, but

Re: [Catalyst] A Perl Message Queue?

2007-08-24 Thread J. Shirley
On 8/24/07, Bernhard Graf [EMAIL PROTECTED] wrote: Hartmaier Alexander wrote: So TheSchwartz may be a good module to queue mails by a Catalyst app for sending them by let's say a perl script run by cron (or running all the time)?! At the moment I'm sending the mails directly from my

[Catalyst] Should CATALYST_DEBUG suppress manual calls to $c-log-debug()?

2007-08-24 Thread Will Hawes
I've been trying unsuccessfully to disable all debug messages while running tests on my app with prove. Setting CATALYST_DEBUG=0 eliminates all the test server debug output such as the list of loaded actions, but i am still seeing the output of every call made to $c-log-debug by my controller

Re: [Catalyst] Should CATALYST_DEBUG suppress manual calls to $c-log-debug()?

2007-08-24 Thread Jonathan Rockway
Will Hawes wrote: Is my mistake in misunderstanding how $c-log-debug() is supposed to work? Or is it likely that I've somehow overridden CATALYST_DEBUG elsewhere? It is indeed. $c-log-debug() has nothing to do with CATALYST_DEBUG. Try: $c-log-debug('Hello') if $c-debug; I think the

Re: [Catalyst] A Perl Message Queue?

2007-08-24 Thread Jonathan Rockway
Bernhard Graf wrote: Don't know about TheSchwartz (btw. what a stupid name) When you write your own message queue that actually works correctly, is supported and documented, and is available freely on the CPAN, you can pick the name. In the mean time, STFU. Thanks. Regards, Jonathan Rockway