[Catalyst] Can't detect C::V::TT VERSION

2010-05-07 Thread Octavian Rasnita
Hi, I am trying to install the prerequisites for a Catalyst app using `make installdeps` and although I have the required version of C::V::TT, it reports that it is not installed: $ perl Makefile.PL ... - Catalyst::View::TT ...missing. (would need 0.34) ==

Re: [Catalyst] Bareword catalyst not allowed while strict subs inuse at Makefile.PL line 90.

2010-05-07 Thread Octavian Rasnita
From: Matt S Trout m...@shadowcat.co.uk On Mon, May 03, 2010 at 02:57:10PM +0300, Octavian Rasnita wrote: Hi, I am trying to install a Catalyst-based app under Debian which has Perl 5.10.0 installed. I've installed the latest versions of CPAN, CPANPLUS, ExtUtils::MakeMaker, Module::Install,

[Catalyst] Catalyst::Plugin::Session: Duplicate entry errors

2010-05-07 Thread Tobias Kremer
Hey folks, we're still getting a couple of duplicate entry errors every day (about 10-15 on a site with 20 million page impressions/month) caused by Catalyst::Plugin::Session (0.25) used with the DBIx::Class storage backend (0.10) and a MySQL 5 with an InnoDB session table which was created

[Catalyst] Chained actions with can't terminate with :PathPart('') ?

2010-05-07 Thread Evan Carroll
I have two destinations in my Catalyst app /auth/company/5/lot /auth/company/5/lot/5 This works and is often seen in Catalyst apps to achive this effect. sub lot :Chained('/auth/company') :CaptureArgs(1) { sub view_lot :Chained('/auth/company') :PathPart('') :Args(1) { However, I would also

Re: [Catalyst] Chained actions with can't terminate with :PathPart('') ?

2010-05-07 Thread J. Shirley
On May 7, 2010, at 10:12 AM, Evan Carroll wrote: I have two destinations in my Catalyst app /auth/company/5/lot /auth/company/5/lot/5 This works and is often seen in Catalyst apps to achive this effect. sub lot :Chained('/auth/company') :CaptureArgs(1) { sub view_lot

Re: [Catalyst] Chained actions with can't terminate with :PathPart('') ?

2010-05-07 Thread Trevor Leffler
Evan, Here's an example of chaining that breaks out a lot of your path parts into discreet methods. Watch the server debug output while hitting these in your browser to see how each piece is executed. Notice how middle man methods use :CaptureArgs while endpoints use :Args. Also, each

Re: [Catalyst] Chained actions with can't terminate with :PathPart('') ?

2010-05-07 Thread Ram Dobson
it seems to me that you have companies that have lots. something like this: sub company :Chained('/auth') :CaptureArgs(1) { ... } sub lot :Chained('company') :Args(0) { ... } sub view_lot :Chained('lot') PathPart('') :Args(1) { ... } would suffice, perhaps? On 5/7/2010 1:12 PM, Evan Carroll

Re: [Catalyst] Chained actions with can't terminate with :PathPart('') ?

2010-05-07 Thread Trevor Leffler
Oh, and to be clear about the example controllers, they'd be named: ::Root, ::Company, and ::Company::Lot. --Trevor Trevor Leffler wrote: Evan, Here's an example of chaining that breaks out a lot of your path parts into discreet methods. Watch the server debug output while hitting these

[Catalyst] Catalyst 5.80023 Release Announcement

2010-05-07 Thread Devin Austin
Last login: Fri May 7 14:11:38 on ttys001 It is my pleasure (and first time!) to announce the release of Catalyst version 5.80023. Thanks to all those who put forth, as always, a good effort to get this up and about, including rafl, t0m, edenc, marcus, ajgb and mst (for convincing me to write

Re: [Catalyst] Catalyst 5.80023 Release Announcement

2010-05-07 Thread J. Shirley
On May 7, 2010, at 3:30 PM, Devin Austin wrote: Last login: Fri May 7 14:11:38 on ttys001 It is my pleasure (and first time!) to announce the release of Catalyst version 5.80023. That means everyone should skip this one ;) Congrats! ___ List: