[Templates-cvs] cvs commit: TT3/lib/Template/Tagset Interpolate.pm
cvs@template-toolkit.org
cvs@template-toolkit.org
Wed, 01 Dec 2004 11:15:09 +0000
cvs 04/12/01 11:15:09
Added: lib/Template/Tagset Interpolate.pm
Log:
* moved Template::Tagset::TT::Interpolate to Template::Tagset::Interpolate
Revision Changes Path
1.1 TT3/lib/Template/Tagset/Interpolate.pm
Index: Interpolate.pm
===================================================================
#========================================================================
#
# Template::Tagset::Interpolate
#
# DESCRIPTION
# Tagset defining the set of TT tags that are used for interpolating
# variables in plain text: Template::Tag::Variable ($foo), Embedded
# (${foo.bar}) and Escape (\$).
#
# AUTHOR
# Andy Wardley <abw@wardley.org>
#
# COPYRIGHT
# Copyright (C) 1996-2004 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
# $Id: Interpolate.pm,v 1.1 2004/12/01 11:15:09 abw Exp $
#
#========================================================================
package Template::Tagset::Interpolate;
use strict;
use warnings;
use Template::Tag::Escape;
use Template::Tag::Embedded;
use Template::Tag::Variable;
use Template::Tagset;
use base qw( Template::Tagset );
our $VERSION = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/);
our $DEBUG = 0 unless defined $DEBUG;
our $ERROR = '';
our $TAGS = [
escape => 'Template::Tag::Escape',
embedded => 'Template::Tag::Embedded',
variable => 'Template::Tag::Variable',
];
1;
__END__
=head1 NAME
Template::Tagset::Interpolate - tagset implementing variable interpolation
=head1 SYNOPSIS
TODO
=head1 DESCRIPTION
# TODO
=head1 METHODS
=head2 new()
# TODO
=head1 AUTHOR
Andy Wardley E<lt>abw@wardley.orgE<gt>
=head1 VERSION
$Revision: 1.1 $
=head1 COPYRIGHT
Copyright (C) 1996-2004 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: