[Catalyst] Slug Generator?

2013-02-22 Thread Kevin Monceaux
Catalyst Fans, Is there a Catalyst, or DBIx::Class, plugin for generating slugs? Something like Django-autoslug: https://bitbucket.org/neithere/django-autoslug/ or Rails FriendlyId: https://github.com/norman/friendly_id/ I've been searching cpan, but haven't found anything similar so

Re: [Catalyst] Slug Generator?

2013-02-22 Thread Len Jaffe
I wrote one for work...Basically stole the good parts of other people's code. Give a day or so, and I can see about posting it here. Len. On Fri, Feb 22, 2013 at 4:52 PM, Kevin Monceaux ke...@rawfeddogs.netwrote: Catalyst Fans, Is there a Catalyst, or DBIx::Class, plugin for generating

Re: [Catalyst] Slug Generator?

2013-02-22 Thread Kevin Monceaux
On Fri, Feb 22, 2013 at 07:25:00PM -0300, Hernan Lopes wrote: http://search.cpan.org/~rentocron/Text2URI-0.3001/ that will do it It looks like that would handle simple cases where the slug is being generated from a unique column. But, life usually isn't simple. Here are some examples from

Re: [Catalyst] May be asynchronous communication between Catalyst applications

2013-02-22 Thread Francisco Obispo
I would probably use a message queue. Have you looked into RabbitMQ ? App 1 would be the producer, and you would have a consumer, responsible for performing the operation on App 2. On Feb 22, 2013, at 10:40 PM, linuxsupport lin.supp...@gmail.com wrote: Hi All, I need your help on the