Upped version numbers, cleaned up code, fixed my name.
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Filter / Names.pm
index 7c4de15..cafa72c 100644 (file)
@@ -1,9 +1,7 @@
 package SQL::Translator::Filter::Names;
 
 # -------------------------------------------------------------------
-# $Id: Names.pm,v 1.1 2005-12-16 10:25:00 grommit Exp $
-# -------------------------------------------------------------------
-# Copyright (C) 2002-4 SQLFairy Authors
+# Copyright (C) 2002-2009 SQLFairy Authors
 #
 # This program is free software; you can redistribute it and/or
 # modify it under the terms of the GNU General Public License as
@@ -49,7 +47,7 @@ SQL::Translator::Filter::Names - Tweak the names of schema objects.
 
 use strict;
 use vars qw/$VERSION/;
-$VERSION=0.1;
+$VERSION = '1.60';
 
 sub filter {
     my $schema = shift;
@@ -101,15 +99,17 @@ sub _getfunc {
 
 
 # The name munging functions
-#=============================================================================
-# Get called with name to munge as first arg and return the new name. Die on
-# errors.
+# -------------------------------------------------------------------------
+# Get called with name to munge as first arg and return the new name. Die 
+# on errors.
 
 sub lc { lc shift; }
 sub uc { uc shift; }
 sub ucfirst { ucfirst shift; }
 
-1; #==========================================================================
+1; 
+
+# -------------------------------------------------------------------------
 
 __END__
 
@@ -119,8 +119,6 @@ __END__
 
 L<perl(1)>, L<SQL::Translator>
 
-=head1 BUGS
-
 =head1 TODO
 
 =over 4
@@ -167,4 +165,6 @@ code it into the filter it's self.
 
 =head1 AUTHOR
 
+Unknown.
+
 =cut