add mailing list to metadata
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual.pm
1 # Manual.pm 
2 # Copyright (c) 2006 Jonathan Rockway <jrockway@cpan.org>
3
4 package Catalyst::Manual;
5
6 use strict;
7 use warnings;
8
9 our $VERSION = '5.9009';
10
11 =head1 NAME
12
13 Catalyst::Manual - The Catalyst developer's manual
14
15 =head1 SYNOPSIS
16
17     perldoc Catalyst::Manual::Intro
18     perldoc Catalyst::Manual::Tutorial
19
20
21 =head1 SEE ALSO
22
23 Install L<Task::Catalyst::Tutorial|Task::Catalyst::Tutorial> to
24 install all the dependencies you need to follow along with the
25 Tutorial.  You can also refer to 
26 L<Catalyst::Manual::Tutorial::Intro|Catalyst::Manual::Tutorial::01_Intro>
27 for more information on installation options.
28
29 Some "Getting Started" Links:
30
31 =over 4
32
33 =item *
34
35 L<Catalyst::Manual::About|Catalyst::Manual::About>
36
37 =item *
38
39 L<Catalyst::Manual::Intro>
40
41 =item *
42
43 L<Catalyst::Manual::Tutorial>
44
45 =item *
46
47 L<Catalyst::Manual::Actions>
48
49 =item *
50
51 L<Catalyst::Manual::Cookbook>
52
53 =item *
54
55 L<Catalyst::Manual::DevelopmentProcess>
56
57 =item *
58
59 L<Catalyst::Manual::ExtendingCatalyst>
60
61 =item *
62
63 L<Catalyst::Manual::Internals>
64
65 =back
66
67 =head2 Books
68
69 For additional information on Catalyst, there are currently two books available:
70
71 =over 4
72
73 =item *
74
75 The Definitive Guide to Catalyst: Writing Extendable, Scalable and 
76 Maintainable Perl-Based Web Applications
77
78 By: Kieren Diment, Matt Trout 
79 Available July 12, 2009
80 ISBN 10: 1-4302-2365-0
81 ISBN 13: 978-1-4302-2365-8
82 http://www.apress.com/book/view/9781430223658
83
84 =item *
85
86 Accelerating Perl Web Application Development
87
88 By: Jonathan Rockway
89 Published December, 2007
90 ISBN 10: 1847190952
91 ISBN 13: 978-1-847190-95-6
92 http://www.packtpub.com/catalyst-perl-web-application/book
93
94 =back
95
96 =head1 SUPPORT
97
98 Corrections or amendments may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Catalyst-Manual>
99 (or L<bug-Catalyst-Manual@rt.cpan.org|mailto:Catalyst-Manual@rt.cpan.org>).
100
101 There is also a mailing list available for users of this distribution, at
102 L<http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst>.
103
104 There is also an irc channel available for users of this distribution, at
105 L<irc://irc.perl.org/#catalyst>.
106
107 =head1 AUTHORS
108
109 Catalyst Contributors, see Catalyst.pm
110
111 =head1 COPYRIGHT
112
113 This library is free software. You can redistribute it and/or modify it under
114 the same terms as Perl itself.
115
116 =cut
117
118 1;