Re: [Catalyst] Role problem

2007-02-26 Thread Jason Kohles
On Feb 25, 2007, at 9:32 PM, Ivan Wills wrote: Hi, I'm trying to use Roles with DBIC user storage. When I try to use $c-assert_user_roles('Admin'); I get the following error message: Caught exception in App::JumboRewards::Controller::MyAccount-test DBIx::Class::ResultSet::all(): Error

[Catalyst] Announce: Catalyst::Plugin::Authentication update

2007-02-26 Thread Jay K
Hello All, As some of you know I've been working on an update to Catalyst's Authentication system for some time. Well, finally, there is a new Catalyst::Plugin::Authentication module available for general testing. The biggest new feature in this release is support for the concept of realms,

Re: [Catalyst] Announce: Catalyst::Plugin::Authentication update

2007-02-26 Thread Yuval Kogman
I'd just like to thank Jay for taking the time to take care of this plugin and give it the love it needs. /me goes back to being a neglectful father from the comfort of the nearest bar. -- Yuval Kogman [EMAIL PROTECTED] http://nothingmuch.woobling.org 0xEBD27418

[Catalyst] insecure deps with Module::Pluggable::Fast

2007-02-26 Thread Daniel McBrearty
bit of a head scratcher ... : trying to boot my app under apache2/mod_perl. 2 boxes, each have the same codebase, exactly, including apache config files. One boots OK, the other says : [Mon Feb 26 20:28:50 2007] [error] Couldn't load Catalyst::Plugin::ConfigLoader::YAML, Insecure dependency in

Re: [Catalyst] insecure deps with Module::Pluggable::Fast

2007-02-26 Thread Brian Cassidy
Daniel McBrearty wrote: [Mon Feb 26 20:28:50 2007] [error] Couldn't load Catalyst::Plugin::ConfigLoader::YAML, Insecure dependency in require while running with -T switch at /usr/local/lib/perl5/site_perl/5.8.8/Module/Pluggable/Fast.pm line 82.\n at

Re: [Catalyst] insecure deps with Module::Pluggable::Fast

2007-02-26 Thread Daniel McBrearty
one without a version string - but when I to cpan C::P::C::Y: it says its up to date ... that explains why it didn't even get on the one box. still not sure why the taint error though - guess I can remove M::P::F though, see if that fixes things thanks Brian On 2/26/07, Brian Cassidy [EMAIL

Re: [Catalyst] insecure deps with Module::Pluggable::Fast

2007-02-26 Thread Brian Cassidy
Daniel McBrearty wrote: one without a version string - but when I to cpan C::P::C::Y: it says its up to date ... that explains why it didn't even get on the one box. still not sure why the taint error though - guess I can remove M::P::F though, see if that fixes things You're looking at the

Re: [Catalyst] insecure deps with Module::Pluggable::Fast

2007-02-26 Thread Daniel McBrearty
you're right, sorry, my bad ... It was 0.06 - I just updated to 0.13, and that's fixed. Now I have a similar error in my schema ... anyone know the cpan command to globally update my libraries ... !? thanks again. On 2/26/07, Brian Cassidy [EMAIL PROTECTED] wrote: Daniel McBrearty wrote:

Re: [Catalyst] insecure deps with Module::Pluggable::Fast

2007-02-26 Thread Daniel McBrearty
sorted. just needed to update DBIx::Class. thanks again. On 2/26/07, Daniel McBrearty [EMAIL PROTECTED] wrote: you're right, sorry, my bad ... It was 0.06 - I just updated to 0.13, and that's fixed. Now I have a similar error in my schema ... anyone know the cpan command to globally update my

Re: [Catalyst] insecure deps with Module::Pluggable::Fast

2007-02-26 Thread Jonathan Rockway
Daniel McBrearty wrote: you're right, sorry, my bad ... It was 0.06 - I just updated to 0.13, and that's fixed. Now I have a similar error in my schema ... anyone know the cpan command to globally update my libraries ... !? perl -MCPAN -e 'shell upgrade' -- package JAPH;use Catalyst

Re: [Catalyst] Role problem

2007-02-26 Thread Ivan Wills
Thanks for that Jason, got confused at the meaning of user_role_user_field I thought it meant the user name filed but it must actually mean the user id filed which is not obvious if you are using a more verbose naming conventions where id columns are postfixed with _id. Ivan Jason Kohles wrote: