File: Modules.pod

package info (click to toggle)
libtemplate-perl 2.19-1.1lenny1.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 5,012 kB
  • ctags: 606
  • sloc: perl: 14,372; makefile: 60; sh: 5
file content (319 lines) | stat: -rw-r--r-- 5,441 bytes parent folder | download
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
#============================================================= -*-perl-*-
#
# Template::Modules
#
# DESCRIPTION

#
# AUTHOR
#   Andy Wardley  <abw@wardley.org>
#
# COPYRIGHT
#   Copyright (C) 1996-2007 Andy Wardley.  All Rights Reserved.
#
#   This module is free software; you can redistribute it and/or
#   modify it under the same terms as Perl itself.
#
# REVISION
#   
#
#========================================================================


#------------------------------------------------------------------------
# IMPORTANT NOTE
#   This documentation is generated automatically from source
#   templates.  Any changes you make here may be lost.
# 
#   The 'docsrc' documentation source bundle is available for download
#   from http://www.template-toolkit.org/docs.html and contains all
#   the source templates, XML files, scripts, etc., from which the
#   documentation for the Template Toolkit is built.
#------------------------------------------------------------------------

=head1 NAME

Template::Modules - Core modules comprising the Template Toolkit

=head1 DESCRIPTION



=over 4

=item L<Template|Template>

Front-end module to the Template Toolkit



=item L<Template::Base|Template::Base>

Base class module implementing common functionality



=item L<Template::Config|Template::Config>

Factory module for instantiating other TT2 modules



=item L<Template::Constants|Template::Constants>

Defines constants for the Template Toolkit



=item L<Template::Context|Template::Context>

Runtime context in which templates are processed



=item L<Template::Document|Template::Document>

Compiled template document object



=item L<Template::Exception|Template::Exception>

Exception handling class module



=item L<Template::Filters|Template::Filters>

Post-processing filters for template blocks



=item L<Template::Iterator|Template::Iterator>

Data iterator used by the FOREACH directive



=item L<Template::Namespace::Constants|Template::Namespace::Constants>

Compile time constant folding



=item L<Template::Parser|Template::Parser>

LALR(1) parser for compiling template documents



=item L<Template::Plugin|Template::Plugin>

Base class for Template Toolkit plugins



=item L<Template::Plugins|Template::Plugins>

Plugin provider module



=item L<Template::Provider|Template::Provider>

Provider module for loading/compiling templates



=item L<Template::Service|Template::Service>

General purpose template processing service



=item L<Template::Stash|Template::Stash>

Magical storage for template variables



=item L<Template::Stash::Context|Template::Stash::Context>

Experimetal stash allowing list/scalar context definition



=item L<Template::Stash::XS|Template::Stash::XS>

High-speed variable stash written in C



=item L<Template::Test|Template::Test>

Module for automating TT2 test scripts



=item L<Template::Toolkit|Template::Toolkit>

Template processing system



=item L<Template::Plugin::Autoformat|Template::Plugin::Autoformat>

Interface to Text::Autoformat module



=item L<Template::Plugin::CGI|Template::Plugin::CGI>

Interface to the CGI module



=item L<Template::Plugin::Datafile|Template::Plugin::Datafile>

Plugin to construct records from a simple data file



=item L<Template::Plugin::Date|Template::Plugin::Date>

Plugin to generate formatted date strings



=item L<Template::Plugin::Directory|Template::Plugin::Directory>

Plugin for generating directory listings



=item L<Template::Plugin::Dumper|Template::Plugin::Dumper>

Plugin interface to Data::Dumper



=item L<Template::Plugin::File|Template::Plugin::File>

Plugin providing information about files



=item L<Template::Plugin::Filter|Template::Plugin::Filter>

Base class for plugin filters



=item L<Template::Plugin::Format|Template::Plugin::Format>

Plugin to create formatting functions



=item L<Template::Plugin::HTML|Template::Plugin::HTML>

Plugin to create HTML elements



=item L<Template::Plugin::Image|Template::Plugin::Image>

Plugin access to image sizes



=item L<Template::Plugin::Iterator|Template::Plugin::Iterator>

Plugin to create iterators (Template::Iterator)



=item L<Template::Plugin::Math|Template::Plugin::Math>

Plugin interface to mathematical functions



=item L<Template::Plugin::Pod|Template::Plugin::Pod>

Plugin interface to Pod::POM (Pod Object Model)



=item L<Template::Plugin::Procedural|Template::Plugin::Procedural>

Base class for procedural plugins



=item L<Template::Plugin::String|Template::Plugin::String>

Object oriented interface for string manipulation



=item L<Template::Plugin::Table|Template::Plugin::Table>

Plugin to present data in a table



=item L<Template::Plugin::URL|Template::Plugin::URL>

Plugin to construct complex URLs



=item L<Template::Plugin::View|Template::Plugin::View>

Plugin to create views (Template::View)



=item L<Template::Plugin::Wrap|Template::Plugin::Wrap>

Plugin interface to Text::Wrap





=back

=head1 AUTHOR

Andy Wardley E<lt>abw@wardley.orgE<gt>

L<http://wardley.org/|http://wardley.org/>




=head1 VERSION

Template Toolkit version 2.19, released on 27 April 2007.

=head1 COPYRIGHT

  Copyright (C) 1996-2007 Andy Wardley.  All Rights Reserved.


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



=cut

# Local Variables:
# mode: perl
# perl-indent-level: 4
# indent-tabs-mode: nil
# End:
#
# vim: expandtab shiftwidth=4: