File: Manual.pod

package info (click to toggle)
libmason-perl 2.24-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 748 kB
  • sloc: perl: 4,882; makefile: 7
file content (95 lines) | stat: -rw-r--r-- 1,854 bytes parent folder | download | duplicates (4)
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


__END__

=pod

=head1 NAME

Mason::Manual - Index of Mason documentation

=head1 MANUALS

=over

=item L<Mason::Manual::Intro>

A quick introduction to get your feet wet.

=item L<Mason::Manual::Setup>

How to set up Mason in a web environment and a non-web environment.

=item L<Mason::Manual::Components>

All about components, the building blocks of Mason.

=item L<Mason::Manual::Syntax>

A full reference of syntax that can be used in components.

=item L<Mason::Manual::RequestDispatch>

How request paths get mapped to page components.

=item L<Mason::Manual::Cookbook>

Recipes for common Mason tasks.

=item L<Mason::Manual::FAQ>

Frequently asked questions.

=item L<Mason::Manual::Filters>

Using and creating filters that can be applied to portions of content in a
component.

=item L<Mason::Manual::Plugins>

Using and creating plugins to modify Mason behavior.

=item L<Mason::Manual::UpgradingFromMason1>

Summary of differences between Mason 1 and Mason 2.

=back

=head1 OBJECT DOCUMENTATION

=over

=item L<Mason::Interp>

Mason::Interp is the central Mason object, returned from C<< Mason->new >>. It
is responsible for creating new requests, compiling components, and maintaining
the cache of loaded components.

=item L<Mason::Request>

Mason::Request represents a single request for a page, and is the access point
for most Mason features not provided by syntactic tags.

=item L<Mason::Component>

Mason::Component is the base class from which all generated component classes
inherit, directly or indirectly.

=back

=head1 SEE ALSO

L<Mason|Mason>

=head1 AUTHOR

Jonathan Swartz <swartz@pobox.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Jonathan Swartz.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut