[Templates-cvs] cvs commit: TT3/misc skeleton.pm
cvs@template-toolkit.org
cvs@template-toolkit.org
Thu, 04 Dec 2003 11:29:49 +0000
cvs 03/12/04 11:29:49
Modified: misc skeleton.pm
Log:
* changed Template::Toolkit to Template::TT3
Revision Changes Path
1.2 +11 -11 TT3/misc/skeleton.pm
Index: skeleton.pm
===================================================================
RCS file: /template-toolkit/TT3/misc/skeleton.pm,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- skeleton.pm 2003/12/03 18:28:38 1.1
+++ skeleton.pm 2003/12/04 11:29:49 1.2
@@ -9,13 +9,13 @@
[% DEFAULT
name = 'YetAnotherModule'
author = 'Andy Wardley <abw@wardley.org>'
- about = 'Yet another Template::Toolkit module'
- description = 'This is yet another Template::Toolkit module with a '
+ about = 'Yet another Template::TT3 module'
+ description = 'This is yet another Template::TT3 module with a '
_ 'slightly longer description saying what it does.'
-%]
#============================================================= -*-perl-*-
#
-# Template::Toolkit::[% name %]
+# Template::TT3::[% name %]
#
# DESCRIPTION
[% USE wrap; wrap(description, 72, '# ', '# ') %]
@@ -31,19 +31,19 @@
# modify it under the same terms as Perl itself.
#
# REVISION
-# $Id: skeleton.pm,v 1.1 2003/12/03 18:28:38 abw Exp $
+# $Id: skeleton.pm,v 1.2 2003/12/04 11:29:49 abw Exp $
#
#========================================================================
-package Template::Toolkit::[% name %];
+package Template::TT3::[% name %];
use strict;
use warnings;
-use Template::Toolkit::Base;
+use Template::TT3::Base;
use vars qw( $VERSION $DEBUG $ERROR $WARNING );
-use base qw( Template::Toolkit::Base );
+use base qw( Template::TT3::Base );
-$VERSION = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/);
+$VERSION = sprintf("%d.%02d", q$Revision: 1.2 $ =~ /(\d+)\.(\d+)/);
$DEBUG = 0 unless defined $DEBUG;
$ERROR = '';
@@ -54,11 +54,11 @@
=head1 NAME
-Template::Toolkit::[% name %] - [% about %]
+Template::TT3::[% name %] - [% about %]
=head1 SYNOPSIS
- use Template::Toolkit::[% name %]
+ use Template::TT3::[% name %]
# TODO
@@ -84,7 +84,7 @@
=head1 VERSION
-$Revision: 1.1 $
+$Revision: 1.2 $
=head1 COPYRIGHT