[Catalyst] Bug in Catalyst::View::Mason on CPAN but not SVN

Matt S Trout dbix-class at trout.me.uk
Thu Dec 22 01:55:56 CET 2005


On Wed, Dec 21, 2005 at 06:08:45PM +0000, Alex Kavanagh wrote:
> Hi
> 
> I'm not too sure who to send this to, but there is a bug on he CPAN
> version of Catalyst::View::Mason at line 121:
> 
>     121         $c->errors($error);
> 
> (should be $c->error($error); )
> 
> It IS fixed on SVN and is showing as 4 months old.
> 
> I wondering:
> 
> 1. Should I be using the SVN modules to do development (and how do I get it)?
> 2. How often does the CPAN get updated?
> 3. Are these stupid questions?
> 
> I guess things are in a state of flux, but this is such a simple bug
> (and its being fixed) that I wonder how it gets out on to CPAN?

The latest CPAN version of this module (0.08) does

    if ( my $error = $@ ) {
        chomp $error;
        $error = qq/Couldn't render component "$component_path" - error was "$error"/;
        $c->log->error($error);
        $c->error($error);
        return 0;
    }

I'm not sure what you're problem is ...

-- 
     Matt S Trout       Offering custom development, consultancy and support
  Technical Director    contracts for Catalyst, DBIx::Class and BAST. Contact
Shadowcat Systems Ltd.  mst (at) shadowcatsystems.co.uk for more information

 + Help us build a better perl ORM: http://dbix-class.shadowcatsystems.co.uk/ +



More information about the Catalyst mailing list