clamp the subject line of error emails to be no more than 115 chars
[sgn.git] / lib / SGN / View / BareMason.pm
blob04badc229529e159b37f8f9d66e0bc12ef3791cd
1 package SGN::View::BareMason;
2 use Moose;
3 extends 'SGN::View::Mason';
5 around 'interp_args' => sub {
6 my $orig = shift;
7 my $args = shift->$orig( @_ );
8 $args->{autohandler_name} = '';
9 return $args;
12 =head1 NAME
14 SGN::View::BareMason - like the Mason view, except with no autohandlers
16 =head1 DESCRIPTION
18 Mason View Component for SGN
20 =head1 SEE ALSO
22 L<SGN>, L<HTML::Mason>
24 =head1 AUTHOR
26 Robert Buels,,,
28 =head1 LICENSE
30 This library is free software . You can redistribute it and/or modify it under
31 the same terms as perl itself.
33 =cut