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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
|
#============================================================= -*-perl-*-
#
# Template::Modules
#
# DESCRIPTION
# This section contains the documentation for the modules that
# comprise the Template Toolkit.
#
# AUTHOR
# Andy Wardley <abw@andywardley.com>
#
# COPYRIGHT
# Copyright (C) 1996-2001 Andy Wardley. All Rights Reserved.
# Copyright (C) 1998-2001 Canon Research Centre Europe Ltd.
#
# 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
This section contains the documentation for the modules that comprise
the Template Toolkit.
=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>
Experimetal high-speed stash written in XS
=item L<Template::Test|Template::Test>
Module for automating TT2 test scripts
=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::DBI|Template::Plugin::DBI>
Template interface to the DBI 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::GD::Image|Template::Plugin::GD::Image>
Interface to GD Graphics Library
=item L<Template::Plugin::GD::Polygon|Template::Plugin::GD::Polygon>
Interface to GD module Polygon class
=item L<Template::Plugin::GD::Constants|Template::Plugin::GD::Constants>
Interface to GD module constants
=item L<Template::Plugin::GD::Text|Template::Plugin::GD::Text>
Text utilities for use with GD
=item L<Template::Plugin::GD::Text::Align|Template::Plugin::GD::Text::Align>
Draw aligned strings in GD images
=item L<Template::Plugin::GD::Text::Wrap|Template::Plugin::GD::Text::Wrap>
Break and wrap strings in GD images
=item L<Template::Plugin::GD::Graph::lines|Template::Plugin::GD::Graph::lines>
Create line graphs with axes and legends
=item L<Template::Plugin::GD::Graph::lines3d|Template::Plugin::GD::Graph::lines3d>
Create 3D line graphs with axes and legends
=item L<Template::Plugin::GD::Graph::bars|Template::Plugin::GD::Graph::bars>
Create bar graphs with axes and legends
=item L<Template::Plugin::GD::Graph::bars3d|Template::Plugin::GD::Graph::bars3d>
Create 3D bar graphs with axes and legends
=item L<Template::Plugin::GD::Graph::points|Template::Plugin::GD::Graph::points>
Create point graphs with axes and legends
=item L<Template::Plugin::GD::Graph::linespoints|Template::Plugin::GD::Graph::linespoints>
Create line/point graphs with axes and legends
=item L<Template::Plugin::GD::Graph::area|Template::Plugin::GD::Graph::area>
Create area graphs with axes and legends
=item L<Template::Plugin::GD::Graph::mixed|Template::Plugin::GD::Graph::mixed>
Create mixed graphs with axes and legends
=item L<Template::Plugin::GD::Graph::pie|Template::Plugin::GD::Graph::pie>
Create pie charts with legends
=item L<Template::Plugin::GD::Graph::pie3d|Template::Plugin::GD::Graph::pie3d>
Create 3D pie charts with legends
=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
=item L<Template::Plugin::XML::DOM|Template::Plugin::XML::DOM>
Plugin interface to XML::DOM
=item L<Template::Plugin::XML::RSS|Template::Plugin::XML::RSS>
Plugin interface to XML::RSS
=item L<Template::Plugin::XML::Simple|Template::Plugin::XML::Simple>
Plugin interface to XML::Simple
=item L<Template::Plugin::XML::Style|Template::Plugin::XML::Style>
Simple XML stylesheet transfomations
=item L<Template::Plugin::XML::XPath|Template::Plugin::XML::XPath>
Plugin interface to XML::XPath
=back
=head1 AUTHOR
Andy Wardley E<lt>abw@andywardley.comE<gt>
L<http://www.andywardley.com/|http://www.andywardley.com/>
=head1 VERSION
Template Toolkit version 2.14, released on 04 October 2004.
=head1 COPYRIGHT
Copyright (C) 1996-2004 Andy Wardley. All Rights Reserved.
Copyright (C) 1998-2002 Canon Research Centre Europe Ltd.
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:
|