Author: dylan
Date: 2005-01-25 18:42:49 -0500 (Tue, 25 Jan 2005)
New Revision: 612
Removed:
trunk/docs/perl-boilerplate
Modified:
trunk/docs/guidelines.txt
Log:
removed perl boilerplate. use vim-automod instead.
Someone can write an emacs-automod too, if they like. :)
Explicitly state the policy on inline vs __END__ POD.
Modified: trunk/docs/guidelines.txt
===================================================================
--- trunk/docs/guidelines.txt 2005-01-25 23:40:42 UTC (rev 611)
+++ trunk/docs/guidelines.txt 2005-01-25 23:42:49 UTC (rev 612)
@@ -69,6 +69,7 @@
* Documentation
* Read perldoc perlmodstyle.
* Read perldoc perlpod
+ * Do NOT use inline POD. Put POD after __END__, inspite of what
perlmodstyle says.
* Please, please, try to document perl modules with POD.
At least, when a module is in a "usable" state,
it should have documentation.
Deleted: trunk/docs/perl-boilerplate
===================================================================
--- trunk/docs/perl-boilerplate 2005-01-25 23:40:42 UTC (rev 611)
+++ trunk/docs/perl-boilerplate 2005-01-25 23:42:49 UTC (rev 612)
@@ -1,25 +0,0 @@
-# vim: set ft=perl ts=4 sw=4 expandtab si ai sta:
-# Module - use
-#
-# Copyright (C) 2005 Bryan Donlan, Dylan William Hardison.
-#
-# This module is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This module is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this module; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-package Module;
-
-our $VERSION = 0.01;
-use base 'Haver::Base';
-
-
-1;