[Templates-cvs] cvs commit: TT3/lib/Template TT3.pm
cvs@template-toolkit.org
cvs@template-toolkit.org
Thu, 04 Dec 2003 16:18:21 +0000
cvs 03/12/04 16:18:21
Added: lib/Template TT3.pm
Log:
added Template::TT3
Revision Changes Path
1.1 TT3/lib/Template/TT3.pm
Index: TT3.pm
===================================================================
#============================================================= -*-perl-*-
#
# Template::TT3
#
# DESCRIPTION
# Front end module for version 3 of the Template Toolkit.
#
# AUTHOR
# Andy Wardley <abw@wardley.org>
#
# COPYRIGHT
# Copyright (C) 1996-2003 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.
#
# REVISION
# $Id: TT3.pm,v 1.1 2003/12/04 16:18:20 abw Exp $
#
#========================================================================
package Template::TT3;
use strict;
use warnings;
use Template::TT3::Base;
use vars qw( $VERSION $DEBUG $ERROR $WARNING );
use base qw( Template::TT3::Base );
# main version number for the Template Toolkit.
$VERSION = '2.60';
$DEBUG = 0 unless defined $DEBUG;
$ERROR = '';
1;
__END__
=head1 NAME
Template::TT3 - front end for Template Toolkit v3
=head1 SYNOPSIS
use Template::TT3;
# TODO
=head1 DESCRIPTION
# TODO
=head1 METHODS
=head2 new()
# TODO
=head2 process()
# TODO
=head2 error()
# TODO
=head1 AUTHOR
Andy Wardley E<lt>abw@wardley.orgE<gt>
=head1 VERSION
$Revision: 1.1 $
=head1 COPYRIGHT
Copyright (C) 1996-2003 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.
=head1 SEE ALSO
# TODO
=cut
# Local Variables:
# mode: perl
# perl-indent-level: 4
# indent-tabs-mode: nil
# End:
#
# vim: expandtab shiftwidth=4: