[Catalyst] Retrieve all users belong to a category and all its sub categories

2010-12-09 Thread linuxsupport
I have 3 tables, users, user_cat, and cat, table structure and relationship are setup as follows. User.pm __PACKAGE__-add_columns( id, { data_type = integer, is_nullable = 0 }, username, { data_type = text, is_nullable = 1 }, password, { data_type = text, is_nullable = 1 },

Re: [Catalyst] FormHandler -- pro or con?

2010-12-09 Thread Octavian Rasnita
From: Toby Corkindale t...@dryft.net On 7 December 2010 18:03, Octavian Rasnita orasn...@gmail.com wrote: From: Toby Corkindale t...@dryft.net On 1 December 2010 02:34, will trillich will.trill...@serensoft.com wrote: Anybody else *dissing* FormHandler? We've started developing based on

Re: [Catalyst] Retrieve all users belong to a category and all its sub categories

2010-12-09 Thread David Schmidt
On Thu, Dec 9, 2010 at 9:37 AM, linuxsupport lin.supp...@gmail.com wrote: I have 3 tables, users, user_cat, and cat, table structure and relationship are setup as follows. User.pm __PACKAGE__-add_columns(   id,   { data_type = integer, is_nullable = 0 },   username,   { data_type = text,

[Catalyst] Static MultiViews?

2010-12-09 Thread Lists
Hello, I'm trying to find an a plugin or something that does some rudimentary content negotiation, i.e. multiviews, i.e. serving static files without their extensions. Can't seem to find anything despite having scoured for hours. Clearly my search-fu is not up to snuff. Pointers? --

Re: [Catalyst] FormHandler -- pro or con?

2010-12-09 Thread Sir Robert Burbridge
On 12/09/2010 03:24 AM, Octavian Rasnita wrote: From: Toby Corkindalet...@dryft.net On 7 December 2010 18:03, Octavian Rasnitaorasn...@gmail.com wrote: From: Toby Corkindalet...@dryft.net On 1 December 2010 02:34, will trillichwill.trill...@serensoft.com wrote:

Re: [Catalyst] Transferring control via root/auto

2010-12-09 Thread Thompson
How would you use a chained dispatch to solve a problem like this? Something that needs to be checked before allowing anything else (besides logging in) to happen and if so force them to a specific page? A simple example would help. I'm still have it in my head that this logic should be