/usr/share/perl5/Catalyst/View.pm is in libcatalyst-perl 5.90053-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | package Catalyst::View;
use Moose;
extends qw/Catalyst::Component/;
=head1 NAME
Catalyst::View - Catalyst View base class
=head1 SYNOPSIS
package Catalyst::View::Homebrew;
use base qw/Catalyst::View/;
sub process {
# template processing goes here.
}
=head1 DESCRIPTION
This is the Catalyst View base class. It's meant to be used as
a base class by Catalyst views.
As a convention, views are expected to read template names from
$c->stash->{template}, and put the output into $c->res->body.
Some views default to render a template named after the dispatched
action's private name. (See L<Catalyst::Action>.)
=head1 METHODS
Implements the same methods as other Catalyst components, see
L<Catalyst::Component>
=head2 process
gives an error message about direct use.
=cut
sub process {
Catalyst::Exception->throw( message => ( ref $_[0] || $_[0] ).
" directly inherits from Catalyst::View. You need to\n".
" inherit from a subclass like Catalyst::View::TT instead.\n" );
}
=head1 AUTHORS
Catalyst Contributors, see Catalyst.pm
=head1 COPYRIGHT
This library is free software. You can redistribute it and/or modify it under
the same terms as Perl itself.
=cut
no Moose;
__PACKAGE__->meta->make_immutable();
1;
|