I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2005-02-15 18:14:59-08 by mreece in response to 115
Re: getting started (cont)
moving the app root out of /Public/mason, to /Public/apache/beerdb, did the trick. indeed the problem was leaking settings from the /Public/mason default MasonCompRoot.

note there is a syntax error (missing close-paren) in maybe_link_view:
% if ( $object->isa( 'Maypole::Model::Base' ) {

and it should probably actually be:
% if ( ref $object && $object->isa( 'Maypole::Model::Base' ) ) {

now the question remains, MasonX::Maypole or Maypole::View::Mason ... thoughts?
Direct Responses: Write a response