[Templates-cvs] cvs commit: TT3/lib/Template Compilers.pm
cvs@template-toolkit.org
cvs@template-toolkit.org
Sun, 12 Dec 2004 17:57:16 +0000
cvs 04/12/12 17:57:16
Modified: lib/Template Compilers.pm
Log:
* added bare bones tt compiler
Revision Changes Path
1.6 +4 -3 TT3/lib/Template/Compilers.pm
Index: Compilers.pm
===================================================================
RCS file: /template-toolkit/TT3/lib/Template/Compilers.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Compilers.pm 2004/12/12 10:28:18 1.5
+++ Compilers.pm 2004/12/12 17:57:16 1.6
@@ -15,7 +15,7 @@
# modify it under the same terms as Perl itself.
#
# REVISION
-# $Id: Compilers.pm,v 1.5 2004/12/12 10:28:18 abw Exp $
+# $Id: Compilers.pm,v 1.6 2004/12/12 17:57:16 abw Exp $
#
#========================================================================
@@ -26,7 +26,7 @@
use Template::Factory::Singletons;
use base qw( Template::Factory::Singletons );
-our $VERSION = sprintf("%d.%02d", q$Revision: 1.5 $ =~ /(\d+)\.(\d+)/);
+our $VERSION = sprintf("%d.%02d", q$Revision: 1.6 $ =~ /(\d+)\.(\d+)/);
our $DEBUG = 0 unless defined $DEBUG;
our $ERROR = '';
our $THROW = 'compiler';
@@ -35,6 +35,7 @@
our $LOADED = { } unless defined $LOADED;
our $DEFAULT = 'tt3' unless defined $DEFAULT;
our $MODULES = {
+ tt => 'Template::Compiler',
tt2 => 'Template::TT2::Compiler',
tt3 => 'Template::TT3::Compiler',
};
@@ -143,7 +144,7 @@
=head1 VERSION
-$Revision: 1.5 $
+$Revision: 1.6 $
=head1 COPYRIGHT