Author: dylan
Date: 2005-01-25 18:40:42 -0500 (Tue, 25 Jan 2005)
New Revision: 611
Modified:
trunk/dev-tools/vim-automod/template.pm
Log:
hmm, yes. Actually inline POD is ugly. Yes, I change my mind too often.
Modified: trunk/dev-tools/vim-automod/template.pm
===================================================================
--- trunk/dev-tools/vim-automod/template.pm 2005-01-25 23:18:19 UTC (rev
610)
+++ trunk/dev-tools/vim-automod/template.pm 2005-01-25 23:40:42 UTC (rev
611)
@@ -1,5 +1,29 @@
# vim: set ts=4 sw=4 expandtab si ai sta tw=100:
# This module is copyrighted, see end of file for details.
+package <<PACKAGE>>;
+use strict;
+use warnings;
+
+use base 'Haver::Base'; # Highly recommended for haver stuff.
+
+our $VERSION = 0.01;
+
+sub initialize {
+ my ($me) = @_;
+
+ # <<CURSOR>>
+}
+
+# use this instead of overriding DESTROY, if you extend Haver::Base.
+# sub finalize {
+# my ($me) = @_;
+#
+# }
+
+
+
+1;
+__END__
=head1 NAME
<<PACKAGE>> - description
@@ -13,40 +37,14 @@
FIXME
-=cut
-
-package <<PACKAGE>>;
-use strict;
-use warnings;
-
-our $VERSION = 0.01;
-
=head1 INHERITENCE
<<PACKAGE>> extends L<Haver::Base>.
-=cut
-
-use base 'Haver::Base'; # Highly recommended for haver stuff.
-
=head1 CONSTRUCTOR
List required parameters for new().
-=cut
-
-sub initialize {
- my ($me) = @_;
-
- # <<CURSOR>>
-}
-
-# use this instead of overriding DESTROY, if you extend Haver::Base.
-# sub finalize {
-# my ($me) = @_;
-#
-# }
-
=head1 METHODS
This class implements the following methods:
@@ -55,10 +53,6 @@
...
-=cut
-
-# Methods go here. Make sure to document them.
-
=head1 BUGS
None known. Bug reports are welcome. Please use our bug tracker at