Re: [Catalyst] Newbie Question about Database

2009-01-19 Thread Ashley
On Jan 19, 2009, at 7:06 PM, Charlie Garrison wrote: Good afternoon, On 19/01/09 at 8:11 PM -0500, Robert L Cochran wrote: I also wonder if Catalyst can make use of a .my.cnf file if there is one. Why is this important? Because you can keep your connection password private. You can pass

Re: [Catalyst] Newbie Question about Database

2009-01-19 Thread Charlie Garrison
Good afternoon, On 19/01/09 at 8:11 PM -0500, Robert L Cochran wrote: I also wonder if Catalyst can make use of a .my.cnf file if there is one. Why is this important? Because you can keep your connection password private. You can pass a path to a "user defaults" file as part of the DBI co

Re: [Catalyst] [Announce] Catalyst::Runtime 5.71000

2009-01-19 Thread hkclark
I'm working on an update that will add a basic example of how to use Chained actions in BasicCRUD, but that's not really related to this release. Kennedy On Mon, Jan 19, 2009 at 8:22 PM, Robert L Cochran wrote: > Will this result in any changes to the online tutorial? > > Thanks > > Bob > > > Ma

Re: [Catalyst] [Announce] Catalyst::Runtime 5.71000

2009-01-19 Thread Robert L Cochran
Will this result in any changes to the online tutorial? Thanks Bob Marcus Ramberg wrote: > I'm proud to announce that the Catalyst team has released the first > feature release of Catalyst since 5.7 was released in July 2006. > Highlights in this release are relative chained actions, PathP

Re: [Catalyst] Newbie Question about Database

2009-01-19 Thread Robert L Cochran
John Goulah wrote: > On Mon, Jan 19, 2009 at 3:10 PM, Giancarlo Corcuera > wrote: > >> Hi: >> >> I'm building an App but I want to have my database in another IP. Is there a >> way to enter the parameters to do this instead of the normal connection that >> appears in the manual? >> >> This is m

Re: [Catalyst] Newbie Question about Database

2009-01-19 Thread John Goulah
On Mon, Jan 19, 2009 at 3:10 PM, Giancarlo Corcuera wrote: > Hi: > > I'm building an App but I want to have my database in another IP. Is there a > way to enter the parameters to do this instead of the normal connection that > appears in the manual? > > This is my model (a very standar one): > > p

Re: [Catalyst] Newbie Question about Database

2009-01-19 Thread Gene Selkov
connect_info => [ 'dbi:mysql:model', This is a mysql question. DBI passes the connection line is mysql. See here for an example of what you can write in it, but I cannot confirm, not being a mysl user: http://www.apachefriends.org/f/viewtopic.php?f=16&t=27481 Look for any examples

[Catalyst] Newbie Question about Database

2009-01-19 Thread Giancarlo Corcuera
Hi: I'm building an App but I want to have my database in another IP. Is there a way to enter the parameters to do this instead of the normal connection that appears in the manual? This is my model (a very standar one): package App::Model::ModelDB; use strict; use base 'Catalyst::Model::DBI

Re: [Catalyst] [Announce] Catalyst::Runtime 5.71000

2009-01-19 Thread Devin Austin
yay! On Mon, Jan 19, 2009 at 11:12 AM, Marcus Ramberg wrote: > I'm proud to announce that the Catalyst team has released the first feature > release of Catalyst since 5.7 was released in July 2006. > Highlights in this release are relative chained actions, PathPrefix > support, $c->go/$c->vi

[Catalyst] [Announce] Catalyst::Runtime 5.71000

2009-01-19 Thread Marcus Ramberg
I'm proud to announce that the Catalyst team has released the first feature release of Catalyst since 5.7 was released in July 2006. Highlights in this release are relative chained actions, PathPrefix support, $c->go/$c->visit, refactored Component Resolution, as well as a bunch of bug fixes a

Re: [Catalyst] create search engine friendly uri from string

2009-01-19 Thread Brad Bowman
Robin Berjon wrote: On Dec 15, 2008, at 21:53 , Johannes Plunien wrote: My not very elegant, but working solution: my $str = " Beta Launch Invites: Kwyno Brings The Web Into Your IM And (Soon) SMS Inboxes "; $str =~ s/^\s+|\s+$//g; $str =~ s/\W/ /g; $str =~ s/\s{1,}/ /g; $str =~ s/\s/-/g; $

Re: [Catalyst] controller subclass and :Local actions

2009-01-19 Thread Marcello Romani
Rodrigo ha scritto: On Fri, Jan 16, 2009 at 6:13 PM, Marcello Romani mailto:mrom...@ottotecnica.com>> wrote: Hallo, I have a controller base class that implements the usual crud actions (list, create, etc.), and I would like to override i.e. the list method in a subclass,