f4f49bd3dfcb88580b016ac9768a3c4143b02763
[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.8003';
10
11 =head1 NAME
12
13 Catalyst::Manual - The Catalyst developer's manual
14
15
16 =head1 SYNOPSIS
17
18     perldoc Catalyst::Manual::Intro
19     perldoc Catalyst::Manual::Tutorial
20
21
22 =head1 SEE ALSO
23
24 Install L<Task::Catalyst::Tutorial|Task::Catalyst::Tutorial> to
25 install all the dependencies you need to follow along with the
26 Tutorial.  You can also refer to 
27 L<Catalyst::Manual::Tutorial::Intro|Catalyst::Manual::Tutorial::Intro>
28 for more information on installation options.
29
30 Some "Getting Started" Links:
31
32 =over 4
33
34 =item *
35
36 L<Catalyst::Manual::About|Catalyst::Manual::About>
37
38 =item *
39
40 L<Catalyst::Manual::Intro>
41
42 =item *
43
44 L<Catalyst::Manual::Tutorial>
45
46 =item *
47
48 L<Catalyst::Manual::Actions>
49
50 =item *
51
52 L<Catalyst::Manual::Cookbook>
53
54 =item *
55
56 L<Catalyst::Manual::DevelopmentProcess>
57
58 =item *
59
60 L<Catalyst::Manual::ExtendingCatalyst>
61
62 =item *
63
64 L<Catalyst::Manual::Internals>
65
66 =item *
67
68 L<Catalyst::Manual::Plugins|Catalyst::Manual::Plugins>
69
70 =back
71
72 =head2 Books
73
74 For additional information on Catalyst, there are currently two books available:
75
76 =over 4
77
78 =item *
79
80 The Definitive Guide to Catalyst: Writing Extendable, Scalable and 
81 Maintainable Perl–Based Web Applications
82
83 By: Kieren Diment, Matt Trout 
84 Available July 12, 2009
85 ISBN 10: 1-4302-2365-0
86 ISBN 13: 978-1-4302-2365-8
87 http://www.apress.com/book/view/9781430223658
88
89 =item *
90
91 Accelerating Perl Web Application Development
92
93 By: Jonathan Rockway
94 Published December, 2007
95 ISBN 10: 1847190952
96 ISBN 13: 978-1-847190-95-6
97 http://www.packtpub.com/catalyst-perl-web-application/book
98
99 =back
100
101 =head1 AUTHORS
102
103 Catalyst Contributors, see Catalyst.pm
104
105 =head1 COPYRIGHT
106
107 This library is free software. You can redistribute it and/or modify it under
108 the same terms as Perl itself.
109
110 =cut
111
112 1;