702c262023baeb05ef3812ea10b046828c752f52
[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.9007';
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 =item *
66
67 L<Catalyst::Manual::Plugins|Catalyst::Manual::Plugins>
68
69 =back
70
71 =head2 Books
72
73 For additional information on Catalyst, there are currently two books available:
74
75 =over 4
76
77 =item *
78
79 The Definitive Guide to Catalyst: Writing Extendable, Scalable and 
80 Maintainable Perl-Based Web Applications
81
82 By: Kieren Diment, Matt Trout 
83 Available July 12, 2009
84 ISBN 10: 1-4302-2365-0
85 ISBN 13: 978-1-4302-2365-8
86 http://www.apress.com/book/view/9781430223658
87
88 =item *
89
90 Accelerating Perl Web Application Development
91
92 By: Jonathan Rockway
93 Published December, 2007
94 ISBN 10: 1847190952
95 ISBN 13: 978-1-847190-95-6
96 http://www.packtpub.com/catalyst-perl-web-application/book
97
98 =back
99
100 =head1 AUTHORS
101
102 Catalyst Contributors, see Catalyst.pm
103
104 =head1 COPYRIGHT
105
106 This library is free software. You can redistribute it and/or modify it under
107 the same terms as Perl itself.
108
109 =cut
110
111 1;