Re: [Catalyst] New website using Catalyst

2007-08-23 Thread Ashley
On Aug 22, 2007, at 2:42 AM, Rob Clarke wrote: This is a really slick looking site. I'd also be interested in how you implemented forms. It is nice. I'm interested in how you did your sharing stuff. The digg this, stumbled it, etc. Was it Perl-centric, CPAN, straight cut and paste

Re: [Catalyst] New website using Catalyst

2007-08-23 Thread Matt Rosin
Hi, It's a very attractive site! Wonderful. What things did you use YUI for? Matt R. ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive:

[Catalyst] CMS

2007-08-23 Thread Matt Rosin
Catalyst makes it easy to build a site with lots of little modules of content composing a single page - the actual content (words/images) being scattered in static apache directories, the database, the templates folders and the code. At some point a content management system of some type is

[Catalyst] C::P::Scheduler

2007-08-23 Thread Will Smith
Hi, I'm trying to use the plugin to run a cron job by adding this to the myapp.pm : __PACKAGE__-schedule( at= '0 * * * *', event = '/email/checkemail', auto_run = 1, ); This suppose to set the process checkemail run every hour, but it does nothing at all.

Re: [Catalyst] C::P::Scheduler

2007-08-23 Thread taulmarill
Am Do, 23.08.2007, 14:45, schrieb Will Smith: Hi, I'm trying to use the plugin to run a cron job by adding this to the myapp.pm : __PACKAGE__-schedule( at= '0 * * * *', event = '/email/checkemail', auto_run = 1, ); This suppose to set the process

[Catalyst] A Perl Message Queue?

2007-08-23 Thread Jesper Krogh
Hi. This is quite off-topic related to Catalyst but my googling didn't reveal anything. Has anyone seen stuff like a Messages Queue (I dont have other words for it) But a more generic implementation of a thing where you can put in messages and pick them out in some other part of the program.

Re: [Catalyst] CMS

2007-08-23 Thread Cory Watson
On 8/23/07, Matt Rosin [EMAIL PROTECTED] wrote: Catalyst makes it easy to build a site with lots of little modules of content composing a single page - the actual content (words/images) being scattered in static apache directories, the database, the templates folders and the code. At some

Re: [Catalyst] Storing $c leaks memory?

2007-08-23 Thread Christopher H. Laco
Tobias Kremer wrote: While hunting down some memory leaks in my application I found that it's generally a bad idea to store $c in a class as this never gets cleared up completely, is that correct? I'd wager circular reference issue. Take a look into ACCEPT_CONTEXT controller. In short, if

RE: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Hartmaier Alexander
Database table? -Alex -Original Message- From: Jesper Krogh [mailto:[EMAIL PROTECTED] Sent: Thursday, August 23, 2007 3:44 PM To: [EMAIL PROTECTED]; catalyst@lists.rawmode.org@shrek.krogh.cc Subject: [Catalyst] A Perl Message Queue? Hi. This is quite off-topic related to

[Catalyst] Storing $c leaks memory?

2007-08-23 Thread Tobias Kremer
While hunting down some memory leaks in my application I found that it's generally a bad idea to store $c in a class as this never gets cleared up completely, is that correct? I'm also doing things like this which seem to cause major leaks: $foo-bar( coderef = sub { return $c-forward(

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Tobias Kremer
Has anyone seen stuff like a Messages Queue (I dont have other words for it) But a more generic implementation of a thing where you can put in messages and pick them out in some other part of the program. It would be nice when you have stuff that takes longer that people usually can wait

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Ash Berlin
Don't use a DB as the backing store for a message queue if you will ever need to pass a lot of messages thought it - you're just asking for trouble doing it that way. Hartmaier Alexander wrote: Database table? -Alex -Original Message- From: Jesper Krogh [mailto:[EMAIL PROTECTED]

Re: [Catalyst] CMS

2007-08-23 Thread Simon Wilcox
Cory Watson wrote: Next year I will have a need for a CMS that: - multi-user - tracks changes - allows previewing - is perl - doesn't impose a templating system - extensible - is open source - works with my cat site If you want sledgehammers, Bricolage and Krang are probably the

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Mark Knoop
Don't use a DB as the backing store for a message queue if you will ever need to pass a lot of messages thought it - you're just asking for trouble doing it that way. Getting way off topic but, understanding the kind of trouble one can get into using a DB to store messages, how else can

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Michael Richards
Just use something like Amazon's SQS and worry not. On 8/23/07, Mark Knoop [EMAIL PROTECTED] wrote: Don't use a DB as the backing store for a message queue if you will ever need to pass a lot of messages thought it - you're just asking for trouble doing it that way. Getting way off

[Catalyst] Re: [Catalyst-dev] Re: Patches for Catalyst::Plugin::ConfigLoader, Config::All and Config::All::General

2007-08-23 Thread Brian Cassidy
Hey All, Config::Any 0.08 and Catalyst::Plugin::ConfigLoader 0.16 have hit the CPAN. Changes: Config::Any: 0.08 Thu Aug 23 2007 pass config options to each parser fix for loading the same perl config twice (RT #28812) Catalyst::Plugin::ConfigLoader: 0.16 Thu Aug 23 2007 -

Re: [Catalyst] CMS

2007-08-23 Thread Cory Watson
On 8/23/07, Simon Wilcox [EMAIL PROTECTED] wrote: If you want sledgehammers, Bricolage and Krang are probably the beefiest ones you can find :-) www.bricolage.cc www.krangcms.com Bricolage I was aware of, but krang is new to me. They'll do all that you want (less perhaps a certain amount

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Brandon Black
On 8/23/07, Mark Knoop [EMAIL PROTECTED] wrote: Don't use a DB as the backing store for a message queue if you will ever need to pass a lot of messages thought it - you're just asking for trouble doing it that way. Getting way off topic but, understanding the kind of trouble one can get

Re: [Catalyst] CMS

2007-08-23 Thread Joe Landman
Cory Watson wrote: On 8/23/07, Simon Wilcox [EMAIL PROTECTED] wrote: If you want sledgehammers, Bricolage and Krang are probably the beefiest ones you can find :-) www.bricolage.cc www.krangcms.com Bricolage I was aware of, but krang is new to me. I had sent a note to one of the people

RE: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Alan Humphrey
To give some idea, here's a couple of common products in the commercial world: IBM's MQSeries (now called WebSphere MQ) http://www-306.ibm.com/software/integration/wmq/features/ BEA MessageQ: http://www.bea.com/framework.jsp?CNT=index.htmFP=/content/products/mor e/messageq If you

[Catalyst] Re: CMS

2007-08-23 Thread Matt Rosin
Incidentally the dev site does list something called EasyCMS but I read somewhere that it is defunct and won't work with current version of Catalyst. Obviously lots of people have thought about this.. Matt Rosin ___ List: Catalyst@lists.rawmode.org

RE: [BULK] - [Catalyst] CMS

2007-08-23 Thread Mesdaq, Ali
I have used Joomla in the past for a fairly busy community website I run on the side. When I first learned about Catalyst first thing I did was look for what cool CMS was created using it. Unfortunately I didn't find anything ready to go live. I definitely think we need one but for it to actually

Re: [Catalyst] CMS

2007-08-23 Thread John Wang
On 8/23/07, Simon Wilcox [EMAIL PROTECTED] wrote: If you want sledgehammers, Bricolage and Krang are probably the beefiest ones you can find :-) www.bricolage.cc www.krangcms.com Don't forget www.webgui.org. One thing about Bricolage, Krang and WebGUI, is that none of them are

Re: [Catalyst] CMS

2007-08-23 Thread Cory Watson
On 8/23/07, John Wang [EMAIL PROTECTED] wrote: For while I've been thinking it would be nice to have a Cat-based CMS with multiple features built on top of a platform. The platform can include basic things like Authn, Authz, Sessions, a basic user schema and pre-built HTML. The pre-built HTML

Re: [Catalyst] CMS

2007-08-23 Thread Christopher H. Laco
John Wang wrote: On 8/23/07, Simon Wilcox [EMAIL PROTECTED] wrote: If you want sledgehammers, Bricolage and Krang are probably the beefiest ones you can find :-) www.bricolage.cc www.krangcms.com Don't forget www.webgui.org. One thing about Bricolage, Krang and WebGUI, is that none

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread J . G . Konrad
a Perl message queue using POE! http://search.cpan.org/~dsnopek/POE-Component-MessageQueue-0.1.4/lib/POE/Component/MessageQueue.pm On 8/23/07, Alan Humphrey [EMAIL PROTECTED] wrote: To give some idea, here's a couple of common products in the commercial world: IBM's MQSeries (now called

Re: [Catalyst] CMS

2007-08-23 Thread Perrin Harkins
On 8/23/07, Cory Watson [EMAIL PROTECTED] wrote: I want something manages and version my templates and then a view that lets Cat retrieve the appropriate template through some means. You can do something like that with Krang or Bricolage. They both publish files rather than serving the

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Steve Atkins
On Aug 23, 2007, at 10:39 AM, tprinty wrote: Have you looked at memcache? http://www.danga.com/memcached/ Memcached is nice for caching, and OK for temporary session data, but last time I looked at it I couldn't see any good way to use it for queuing. Is there a trick I missed? Cheers,

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread J. Shirley
On 8/23/07, Tobias Kremer [EMAIL PROTECTED] wrote: Has anyone seen stuff like a Messages Queue (I dont have other words for it) But a more generic implementation of a thing where you can put in messages and pick them out in some other part of the program. It would be nice when you have

RE: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Dylan Vanderhoof
I haven't played with gearman yet, but we're also using TheSchwartz (thanks to some setup help from jshirley), and its truly awesome. I have a couple minor gripes (needs an on_final_error sub you can override), but for the most part it rocks. -D -Original Message-

Re: [Catalyst] CMS

2007-08-23 Thread Fernan Aguero
| On 8/23/07, John Wang [EMAIL PROTECTED] wrote: | For while I've been thinking it would be nice to have a Cat-based CMS with | multiple features built on top of a platform. The platform can include basic | things like Authn, Authz, Sessions, a basic user schema and pre-built HTML. | The

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread tprinty
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. Supposedly the twitter guys have hacked memcached to act as a queue but I can't find anything on how they did it.

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Perrin Harkins
On 8/23/07, tprinty [EMAIL PROTECTED] wrote: Have you looked at memcache? Don't put your messages into memcached unless you don't mind losing some. It is not a database or reliable storage. It's just a cache. - Perrin ___ List:

Re: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Perrin Harkins
On 8/23/07, Ash Berlin [EMAIL PROTECTED] wrote: Don't use a DB as the backing store for a message queue if you will ever need to pass a lot of messages thought it - you're just asking for trouble doing it that way. Like most things, it depends. If you need ACID properties for your messages,

RE: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Robert Mah
Good message queue systems can exceed 100,000 messages per second in throughput. They say OpenAMQ does, for example. I suggest looking at OpenAMQ (openamq.org). It is free (GNU license), supported and used by major companies for $$$ work, looks well designed, seems very flexible, has great

RE: [BULK] - RE: [Catalyst] A Perl Message Queue?

2007-08-23 Thread Mesdaq, Ali
This looks very interesting and promising but is it just me or is there No actual documentation on using Perl bindings? Thanks, -- Ali Mesdaq Security Researcher II Websense Security Labs http://www.WebsenseSecurityLabs.com