Added some FIXME comments.
authorarensb <arensb>
Thu, 10 Oct 2002 04:48:57 +0000 (04:48 +0000)
committerarensb <arensb>
Thu, 10 Oct 2002 04:48:57 +0000 (04:48 +0000)
marc/File.pm
marc/USMARC.pm
updater/updatedatabase

index 4001b7c..1a33ef9 100644 (file)
@@ -29,6 +29,9 @@ use strict;
 use integer;
 use vars qw( $VERSION $ERROR );
 
+# FIXME - Fix the POD to conform to Perl style. In particular,
+# functions get an =item, not a =head2.
+
 =head1 VERSION
 
 Version 0.93
index eb43245..beb4a76 100644 (file)
@@ -18,6 +18,9 @@ package MARC::File::USMARC;
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
+# FIXME - Fix the POD to conform to Perl style. In particular,
+# functions get an =item, not a =head2.
+
 =head1 NAME
 
 MARC::File::USMARC - USMARC-specific file handling
index a07eb32..1b7d9b0 100755 (executable)
@@ -20,6 +20,11 @@ use DBI;
 
 # Koha modules
 use C4::Context;
+       # FIXME - /etc/koha.conf might not exist, so shouldn't use
+       # C4::Context.
+
+# FIXME - The user might be installing a new database, so can't rely
+# on /etc/koha.conf anyway.
 
 my $debug=0;
 
@@ -407,6 +412,9 @@ $sth->finish;
 exit;
 
 # $Log$
+# Revision 1.20  2002/10/10 04:49:41  arensb
+# Added some FIXME comments.
+#
 # Revision 1.19  2002/10/05 10:17:17  arensb
 # Merged with arensb-context branch: use C4::Context->dbh instead of
 # &C4Connect, and generally prefer C4::Context over C4::Database.