/usr/share/perl5/Catalyst/Manual.pm is in libcatalyst-manual-perl 5.9007-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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | # Manual.pm
# Copyright (c) 2006 Jonathan Rockway <jrockway@cpan.org>
package Catalyst::Manual;
use strict;
use warnings;
our $VERSION = '5.9007';
=head1 NAME
Catalyst::Manual - The Catalyst developer's manual
=head1 SYNOPSIS
perldoc Catalyst::Manual::Intro
perldoc Catalyst::Manual::Tutorial
=head1 SEE ALSO
Install L<Task::Catalyst::Tutorial|Task::Catalyst::Tutorial> to
install all the dependencies you need to follow along with the
Tutorial. You can also refer to
L<Catalyst::Manual::Tutorial::Intro|Catalyst::Manual::Tutorial::01_Intro>
for more information on installation options.
Some "Getting Started" Links:
=over 4
=item *
L<Catalyst::Manual::About|Catalyst::Manual::About>
=item *
L<Catalyst::Manual::Intro>
=item *
L<Catalyst::Manual::Tutorial>
=item *
L<Catalyst::Manual::Actions>
=item *
L<Catalyst::Manual::Cookbook>
=item *
L<Catalyst::Manual::DevelopmentProcess>
=item *
L<Catalyst::Manual::ExtendingCatalyst>
=item *
L<Catalyst::Manual::Internals>
=item *
L<Catalyst::Manual::Plugins|Catalyst::Manual::Plugins>
=back
=head2 Books
For additional information on Catalyst, there are currently two books available:
=over 4
=item *
The Definitive Guide to Catalyst: Writing Extendable, Scalable and
Maintainable Perl-Based Web Applications
By: Kieren Diment, Matt Trout
Available July 12, 2009
ISBN 10: 1-4302-2365-0
ISBN 13: 978-1-4302-2365-8
http://www.apress.com/book/view/9781430223658
=item *
Accelerating Perl Web Application Development
By: Jonathan Rockway
Published December, 2007
ISBN 10: 1847190952
ISBN 13: 978-1-847190-95-6
http://www.packtpub.com/catalyst-perl-web-application/book
=back
=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
1;
|