Re: [Catalyst] Re: Patch for Catalyst::View::Mason

2008-03-08 Thread Jonathan Rockway
* On Sat, Mar 08 2008, Sebastian Willert wrote: > (setq auto-mode-alist (cons '("\\/templates/mason/" 'xml-html-mode) > auto-mode-alist)) This should be (cons (cons regex mode) auto-mode-alist) instead of (cons (list regex mode) auto-mode-alist). This is so (cdr that-thing) returns a value inst

Re: [Catalyst] problem installing Catalyst

2008-03-08 Thread Silvio Almeida
From error messages: MD5 checksum is incorrect ... Please check this array with 'o conf urllist', and retry. So my friend be sure to have ftp://ftp.roedu.net _out_ of your urllist: cpan> o conf urllist [EMAIL PROTECTED] wrote: Hi, I've installed some time ago Catalyst on a server. I've c

Re: [Catalyst] model update

2008-03-08 Thread Ryan D Johnson
Alex Povolotsky <[EMAIL PROTECTED]> writes: > First of all, $c->model('Model::Class') returns DBIx::ResultSet, NOT > YourApp::Schema::Class. It is quite unclear for me, and seems to be > illogical, but it is. If you'd prefer to use things in a more "classic" DBIC style, you could do something lik

Re: [Catalyst] Model/Controller logic separation - best practices?

2008-03-08 Thread Zbigniew Lukasiak
On Tue, Mar 4, 2008 at 8:35 PM, Ian Sillitoe <[EMAIL PROTECTED]> wrote: > Hopefully there is a quick and obvious answer to the following - if so, > apologies for the length of this email. Apologies in advance also if this is > considered off-topic and/or covered in previous threads - I have trawled

Re: [Catalyst] The home page, the wiki and the mailing list

2008-03-08 Thread Ashley
On Mar 8, 2008, at 12:40 AM, Peter Edwards wrote: If you or anyone else would like to volunteer to help: - sign up to the new Wiki at http://catwiki.toeat.com/ - join #catalyst-site on irc.perl.org and ask Speaking of which, is there a recover/reset password feature coming? Some of us dummies

RE: [Catalyst] OT: Recommendations for big-time hosting

2008-03-08 Thread Peter Edwards
Matt Trout wrote: >> Rackspace is immensely popular, but I'm worried that people are just >> comparing them to crap hosts that put cPanel on a white box and call >> that managed. I trust you guys/gals and your experiences a great deal >> more than a forum like WHT! > >Rackspace are, in my exper

Re: [Catalyst] Why use external FastCGI apps?

2008-03-08 Thread Christian Storm
++ I would be very appreciative seeing a write up of both :) Any chance you could repay in kind by writing up what you ended up with on the wiki? Using PAR + external fcgi this way is an interesting deployment option and I think people would be interested in the process - if nothing else

Re: [Catalyst] The home page, the wiki and the mailing list

2008-03-08 Thread Matt Rosin
use camels;) ___ List: Catalyst@lists.scsys.co.uk Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.scsys.co.uk/ Dev site: http://dev.catalyst.perl.org/

Re: [Catalyst] The home page, the wiki and the mailing list

2008-03-08 Thread J. Shirley
On Sat, Mar 8, 2008 at 2:46 AM, Ali M. <[EMAIL PROTECTED]> wrote: > First I would like to apologize if I came up as mean or disrespectful > to anyone. It was not my intention to be rude. > > It would be nice thought if next to the quoted names you would add > references to why I should listen t

Re: [Catalyst] Re: Patch for Catalyst::View::Mason

2008-03-08 Thread Sebastian Willert
On Sat, 2008-03-08 at 07:26 +0100, Aristotle Pagaltzis wrote: > * Christopher H. Laco <[EMAIL PROTECTED]> [2008-03-07 22:25]: > > I go one stranger. No extensions ever. Instead, I rely on > > directories assuming I might switch. > > > > templates/tt/controller/action > > templates/mason/controller

Re: [Catalyst] model update

2008-03-08 Thread Alex Povolotsky
Jennifer Ahn wrote: hello! i'm writing my first controller method to update the database using the catalyst model, but i seem to have the syntax for that all wrong. my $obj = $c->model ('MyAppDB::Student')->update ( { name => $name }, { id => $id} ); I'm updating

Re: [Catalyst] multiple schemas per application

2008-03-08 Thread Matt S Trout
On Mon, Feb 25, 2008 at 03:30:52PM -0700, Tyler Bird wrote: > Hi, > > How can I support multiple schema's per application > and share them between applications hopefully without duplication in > the catalyst framework? If you meant db schemas like how pg does it, ->table('schemaname.tablename')

Re: [Catalyst] model update

2008-03-08 Thread Matt S Trout
On Mon, Feb 25, 2008 at 12:56:39PM -0800, Jennifer Ahn wrote: > hello! > > i'm writing my first controller method to update the database using the > catalyst model, but i seem to have the syntax for that all wrong. > >my $obj = $c->model ('MyAppDB::Student')->update ( >{ name => $na

Re: [Catalyst] OT: Recommendations for big-time hosting

2008-03-08 Thread Matt S Trout
On Sun, Feb 24, 2008 at 03:29:49PM -0600, Brian Kirkbride wrote: > Hello all, > > I'd be interested in hearing opinions from the Catalyst community on > the best managed hosting. We run a Catalyst-based web service and are > currently on several self-managed dedicated hosts at SoftLayer. I >

Re: [Catalyst] So, what do we want in the -next- book?

2008-03-08 Thread Matt S Trout
On Sun, Feb 24, 2008 at 11:11:37AM -0800, Daniel Hembree wrote: > Matt S Trout wrote: > >Since a fair few of you will now have John's book, I figured it was time > >to ask what you'd want from a second book. > > > >I guess the existing one provides a pretty good tutorial style, so we > >should > >

Re: [Catalyst] So, what do we want in the -next- book?

2008-03-08 Thread Matt S Trout
On Sat, Feb 23, 2008 at 09:25:07PM +0300, Alex Povolotsky wrote: > Matt S Trout wrote: > >Since a fair few of you will now have John's book, I figured it was time > >to ask what you'd want from a second book. > > > >I guess the existing one provides a pretty good tutorial style, so we > >should >

Re: [Catalyst] Why use external FastCGI apps?

2008-03-08 Thread Matt S Trout
On Mon, Feb 25, 2008 at 09:35:04AM -0500, Matt Pitts wrote: > > -Original Message- > > From: Matt S Trout [mailto:[EMAIL PROTECTED] > > Sent: Saturday, February 23, 2008 1:18 PM > > To: The elegant MVC web framework > > Subject: Re: [Catalyst] Why use external FastCGI apps? > > > > On Tue,

[Catalyst] problem installing Catalyst

2008-03-08 Thread stefan . petrea
Hi, I've installed some time ago Catalyst on a server. I've coded some bits of code with it and it worked okay. After some time I decided to try a project from some site, this one http://dab.free.fr/wp/?p=66 It has a .tgz with the code. And I got some errors regarding the fact that I needed to i

Re: [Catalyst] The home page, the wiki and the mailing list

2008-03-08 Thread Ali M.
First I would like to apologize if I came up as mean or disrespectful to anyone. It was not my intention to be rude. It would be nice thought if next to the quoted names you would add references to why I should listen to them, since for many they are not familiar names. Finally, I am really exci

RE: [Catalyst] The home page, the wiki and the mailing list

2008-03-08 Thread Peter Edwards
Ali M. wrote: >Why is the wiki so poorly maintained... We are porting the Wiki from Trac to Mojomojo at present. So no-one's adding to the old one. If you or anyone else would like to volunteer to help: - sign up to the new Wiki at http://catwiki.toeat.com/ - join #catalyst-site on irc.perl.org