Shitload of ::Manual fixes, add some FIXMEs which I'll get to shortly
[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.8000';
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|Catalyst::Manual::Intro>
41
42 =item *
43
44 L<Catalyst::Manual::Tutorial|Catalyst::Manual::Tutorial>
45
46 =item *
47
48 L<Catalyst::Manual::Actions|Catalyst::Manual::Actions>
49
50 =item *
51
52 L<Catalyst::Manual::Cookbook|Catalyst::Manual::Cookbook>
53
54 =item *
55
56 L<Catalyst::Manual::DevelopmentProcess|Catalyst::Manual::DevelopmentProcess>
57
58 =item *
59
60 L<Catalyst::Manual::ExtendingCatalyst|Catalyst::Manual::ExtendingCatalyst>
61
62 =item *
63
64 L<Catalyst::Manual::Internals|Catalyst::Manual::Internals>
65
66 =item *
67
68 L<Catalyst::Manual::Plugins|Catalyst::Manual::Plugins>
69
70 =back
71
72
73 =head2 Books
74
75 For additional information on Catalyst, there are currently two books available:
76
77
78 =over 4
79
80 =item *
81
82 The Definitive Guide to Catalyst: Writing Extendable, Scalable and 
83 Maintainable Perl–Based Web Applications
84
85 By: Kieren Diment, Matt Trout 
86 Available July 12, 2009
87 ISBN 10: 1-4302-2365-0
88 ISBN 13: 978-1-4302-2365-8
89 http://www.apress.com/book/view/9781430223658
90
91 =item *
92
93 Accelerating Perl Web Application Development
94
95 By: Jonathan Rockway
96 Published December, 2007
97 ISBN 10: 1847190952
98 ISBN 13: 978-1-847190-95-6
99 http://www.packtpub.com/catalyst-perl-web-application/book
100
101 =back
102
103 =cut
104
105 1;