[Catalyst] Documentation

2006-06-15 Thread Hélio Rocha
Does anyone have a pdf with catalyst basics?   Thanks in Advance   --hjr ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/catalyst@lists.raw

Re: [Catalyst] has_many and belongs_to with InstantCRUD

2006-06-15 Thread Jess Robinson
On Wed, 14 Jun 2006, Zbigniew Lukasiak wrote: > Hi, > > In the current InstantCRUD there is no support for any relations > between tables. You need to to extend it yourself for that > functionality. > > The 'instantcrud' prefix for the DBIx::Class classes is not needed - I > did not add anythin

Re: [Catalyst] DBIx::Class and managing schemas

2006-06-15 Thread Jess Robinson
Or you could look at the versioning branch of DBIx::Class, which will handle all that for you. See VERSIONING_SKETCH in the -current branch for a summary of what it will be able to do. Jess On Wed, 14 Jun 2006, Daniel McBrearty wrote: > thanks! > > On 6/13/06, Richard Jolly <[EMAIL PROTECTED

Re: [Catalyst] RFC on how to structure controllers

2006-06-15 Thread Zbigniew Lukasiak
Hi, The ChildOf mechanism looks promising. But after reading the docs I still don't know how to make a multilingual or branded site (without too much hassle). I'll present here my guesses - please correct me if I don't understand the docs. So I can build the language consumer: sub lang_handler

Re: [Catalyst] RFC on how to structure controllers

2006-06-15 Thread Sebastian Riedel
14.06.2006 20:26 [EMAIL PROTECTED]: > [EMAIL PROTECTED] wrote on 06/14/2006 01:11:34 PM: >> [EMAIL PROTECTED] wrote on 06/14/2006 11:23:16 AM: >> >>> * [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2006-06-14 >>> 17:10]: I mean does it ever make sense to blindly allow users to jump into a ran

Re: [Catalyst] DBIx::Class and managing schemas

2006-06-15 Thread Daniel McBrearty
again, thanks! it'll be a while before it will be a problem, main thing is that we don't start doing something now that will break the mechanism then ... On 6/15/06, Jess Robinson <[EMAIL PROTECTED]> wrote: > > Or you could look at the versioning branch of DBIx::Class, which will > handle all th

Re: [Catalyst] RFC on how to structure controllers

2006-06-15 Thread Matt S Trout
Zbigniew Lukasiak wrote: > Hi, > > The ChildOf mechanism looks promising. But after reading the docs I > still don't know how to make a multilingual or branded site (without > too much hassle). I'll present here my guesses - please correct me if > I don't understand the docs. > > So I can build

[Catalyst] "Your Project is not the Science Fair" (More potential propaganda for catalyst versus ruby on rails)

2006-06-15 Thread Thomas Hartman
Saw this on reddit and thought I'd share: http://approach.botonomy.com/2006/05/15/your-project-is-not-the-science-fair/ ___ List: Catalyst@lists.rawmode.org Listinfo: http://lists.rawmode.org/mailman/listinfo/catalyst Searchable archive: http://www.mail

[Catalyst] About Model naming

2006-06-15 Thread Eric W. Bates
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Another n00b question. I have successfully created a Model utilizing DBIx::Class::Schema and a Controller to successfully display a resultset. However, I'm confused about the package naming for the Model. Catalyst root is HG. The DBIx::Class::Schema

Re: [Catalyst] n00b question

2006-06-15 Thread Eric W. Bates
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Justin Guenther wrote: > On 6/14/06, Eric W. Bates <[EMAIL PROTECTED]> wrote: > Sorry. Assumed the error was prior to parsing the file... > >> No worries, it's just a bit hard to debug someone's code when you >> can't see it ;) > >> I can't see anyt

Re: [Catalyst] About Model naming

2006-06-15 Thread Matt S Trout
Eric W. Bates wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Another n00b question. > > I have successfully created a Model utilizing DBIx::Class::Schema and a > Controller to successfully display a resultset. However, I'm confused > about the package naming for the Model. > > Cata

Re: [Catalyst] About Model naming

2006-06-15 Thread Eric W. Bates
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Matt S Trout wrote: > Eric W. Bates wrote: >> >> Perhaps in the context of $c->model() I'm not really loading a package? > > $c->model prefixes w/MyApp::Model for convenience and code re-use between > applications. > Cool. Which other parts (if any

Re: [Catalyst] Proposed patch for Catalyst::Plugin::Authorization::Roles

2006-06-15 Thread Yuval Kogman
On Thu, May 11, 2006 at 12:31:47 +0200, Michele Beltrame wrote: > Hello! > > I'm attaching a patch for Catalyst::Plugin::Authorization::Roles. Hi, I missed this, sorry. If i seem to be ignoring patches please slap me - I get a lot of mail and sometimes things to mailing lists get lost The

[Catalyst] Database schema -- Can't locate object method "new" via package

2006-06-15 Thread Sarah Berry
I'm trying to learn how to use the database plugins, specifically DBIx. I set up my schemas to load from an existing database (hopefully), and now I want to test it out to see if I did that right. So I put the following lines into a page called dbixdemo.pm, in the "default" function:    my $sc

[Catalyst] Apache and mod_perl question

2006-06-15 Thread David Simas
I'm using Catalyst 5.6902, Perl 5.8.5, Apache 1.3.31, and mod_perl 1.29 on Linux. I'm trying get Catalyst working through mod_perl, following the example at http://search.cpan.org/~agrundma/Catalyst-Engine-Apache/lib/Catalyst/Engine/Apache/MP13.pm#SYNOPSIS That more or less works when

[Catalyst] session data not always saved?

2006-06-15 Thread Nathan Kurz
Hello --- I'm having problems setting and saving session data in certain cases. In particular, the session data doesn't seem to be saved if I set a response status and body in the handler. It seems like I can get around this by explicity calling $c->_save_session(), but given the underscore this

Re: [Catalyst] Database schema -- Can't locate object method "new" via package

2006-06-15 Thread Kevin Old
On 6/15/06, Sarah Berry <[EMAIL PROTECTED]> wrote: > I'm trying to learn how to use the database plugins, specifically DBIx. I > set up my schemas to load from an existing database (hopefully), and now I > want to test it out to see if I did that right. So I put the following lines > into a page ca