Moved C4/Charset.pm to C4/Interface/CGI/Output.pm
[koha-ffzg.git] / acqui.simple / marcimport.pl
index fef6f4c..34930ef 100755 (executable)
 #!/usr/bin/perl
 
+# $Id$
 
-my $lc1='#dddddd';
-my $lc2='#ddaaaa';
+# Script for handling import of MARC data into Koha db
+#   and Z39.50 lookups
+
+# Koha library project  www.koha.org
+
+# Licensed under the GPL
 
 
-use C4::Database;
+# Copyright 2000-2002 Katipo Communications
+#
+# This file is part of Koha.
+#
+# Koha 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.
+#
+# Koha 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
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA  02111-1307 USA
+
+use strict;
+
+# standard or CPAN modules used
 use CGI;
 use DBI;
-#use strict;
-use C4::Acquisitions;
+
+# Koha modules used
+use C4::Context;
 use C4::Output;
-my $dbh=C4Connect;
-my $userid=$ENV{'REMOTE_USER'};
-%tagtext = (
-    '001' => 'Control number',
-    '003' => 'Control number identifier',
-    '005' => 'Date and time of latest transaction',
-    '006' => 'Fixed-length data elements -- additional material characteristics',
-    '007' => 'Physical description fixed field',
-    '008' => 'Fixed length data elements',
-    '010' => 'LCCN',
-    '015' => 'LCCN Cdn',
-    '020' => 'ISBN',
-    '022' => 'ISSN',
-    '037' => 'Source of acquisition',
-    '040' => 'Cataloging source',
-    '041' => 'Language code',
-    '043' => 'Geographic area code',
-    '050' => 'Library of Congress call number',
-    '060' => 'National Library of Medicine call number',
-    '082' => 'Dewey decimal call number',
-    '100' => 'Main entry -- Personal name',
-    '110' => 'Main entry -- Corporate name',
-    '130' => 'Main entry -- Uniform title',
-    '240' => 'Uniform title',
-    '245' => 'Title statement',
-    '246' => 'Varying form of title',
-    '250' => 'Edition statement',
-    '256' => 'Computer file characteristics',
-    '260' => 'Publication, distribution, etc.',
-    '263' => 'Projected publication date',
-    '300' => 'Physical description',
-    '306' => 'Playing time',
-    '440' => 'Series statement / Added entry -- Title',
-    '490' => 'Series statement',
-    '500' => 'General note',
-    '504' => 'Bibliography, etc. note',
-    '505' => 'Formatted contents note',
-    '508' => 'Creation/production credits note',
-    '510' => 'Citation/references note',
-    '511' => 'Participant or performer note',
-    '520' => 'Summary, etc. note',
-    '521' => 'Target audience note (ie age)',
-    '530' => 'Additional physical form available note',
-    '538' => 'System details note',
-    '586' => 'Awards note',
-    '600' => 'Subject added entry -- Personal name',
-    '610' => 'Subject added entry -- Corporate name',
-    '650' => 'Subject added entry -- Topical term',
-    '651' => 'Subject added entry -- Geographic name',
-    '656' => 'Index term -- Occupation',
-    '700' => 'Added entry -- Personal name',
-    '710' => 'Added entry -- Corporate name',
-    '730' => 'Added entry -- Uniform title',
-    '740' => 'Added entry -- Uncontrolled related/analytical title',
-    '800' => 'Series added entry -- Personal name',
-    '830' => 'Series added entry -- Uniform title',
-    '852' => 'Location',
-    '856' => 'Electronic location and access',
-);
+use C4::Interface::CGI::Output;
+use C4::Input;
+use C4::Biblio;
+use MARC::File::USMARC;
+use HTML::Template;
+use C4::Output;
+use C4::Auth;
+
+#------------------
+# Constants
 
+my $includes = C4::Context->config('includes') ||
+       "/usr/local/www/hdl/htdocs/includes";
+
+# HTML colors for alternating lines
+my $lc1='#dddddd';
+my $lc2='#ddaaaa';
+
+#-------------
+#-------------
+# Initialize
+
+my $userid=$ENV{'REMOTE_USER'};
 
 my $input = new CGI;
-my $dbh=C4Connect;
-
-print $input->header;
-print startpage();
-print startmenu('acquisitions');
-my $file=$input->param('file');
-
-if ($input->param('z3950queue')) {
-    my $query=$input->param('query');
-    my $type=$input->param('type');
-    my @serverlist;
-    foreach ($input->param) {
-       if (/S-(.*)/) {
-           my $server=$1;
-           if ($server eq 'LOC') {
-               push @serverlist, "LOC/z3950.loc.gov:7090/voyager//";
-           }
-           if ($server eq 'NLC') {
-               push @serverlist, "NLC/amicus.nlc-bnc.ca:210/AMICUS/bccms1/hawk5fad";
-           }
-           if ($server eq 'MAN') {
-               push @serverlist, "MAN/".$input->param('manualz3950server')."//";
-           }
-       }
-    }
-    my $isbnfailed=0;
-    if ($type eq 'isbn') {
-       my $q=$query;
-       $q=~s/[^X\d]//g;
-       $q=~s/X.//g;
-       if (length($q)==10) {
-           my $checksum=substr($q,9,1);
-           my $isbn=substr($q,0,9);
-           my $i;
-           my $c=0;
-           for ($i=0; $i<9; $i++) {
-               my $digit=substr($q,$i,1);
-               $c+=$digit*(10-$i);
-           }
-           $c=int(11-($c/11-int($c/11))*11+.1);
-           ($c==10) && ($c='X');
-           if ($c eq $checksum) {
-           } else {
-               print "<font color=red size=+1>$query is not a valid ISBN
-               Number</font><p>\n";
-               $isbnfailed=1;
-           }
-       } else {
-           print "<font color=red size=+1>$query is not a valid ISBN
-           Number</font><p>\n";
-           $isbnfailed=1;
+my $dbh = C4::Context->dbh;
+
+my $uploadmarc=$input->param('uploadmarc');
+my $overwrite_biblio = $input->param('overwrite_biblio');
+my $filename = $input->param('filename');
+my ($template, $loggedinuser, $cookie)
+       = get_template_and_user({template_name => "acqui.simple/marcimport.tmpl",
+                                       query => $input,
+                                       type => "intranet",
+                                       authnotrequired => 0,
+                                       flagsrequired => {parameters => 1},
+                                       debug => 1,
+                                       });
+
+$template->param(SCRIPT_NAME => $ENV{'SCRIPT_NAME'},
+                                               uploadmarc => $uploadmarc);
+if ($uploadmarc && length($uploadmarc)>0) {
+       my $marcrecord='';
+       while (<$uploadmarc>) {
+               $marcrecord.=$_;
        }
-    }
-    unless ($isbnfailed) {
-       my $q_term=$dbh->quote($query);
-       my $serverlist='';
-       foreach (@serverlist) {
-           $serverlist.="$_ ";
+       my @marcarray = split /\x1D/, $marcrecord;
+       my $dbh = C4::Context->dbh;
+       my $searchisbn = $dbh->prepare("select biblioitemnumber from biblioitems where isbn=?");
+       my $searchissn = $dbh->prepare("select biblioitemnumber from biblioitems where issn=?");
+       my $searchbreeding = $dbh->prepare("select id from marc_breeding where isbn=?");
+       my $insertsql = $dbh->prepare("insert into marc_breeding (file,isbn,title,author,marc) values(?,?,?,?,?)");
+       my $replacesql = $dbh->prepare("update marc_breeding set file=?,isbn=?,title=?,author=?,marc=? where id=?");
+       # fields used for import results
+       my $imported=0;
+       my $alreadyindb = 0;
+       my $alreadyinfarm = 0;
+       my $notmarcrecord = 0;
+       for (my $i=0;$i<=$#marcarray;$i++) {
+               my $marcrecord = MARC::File::USMARC::decode($marcarray[$i]."\x1D");
+               if (ref($marcrecord) eq undef) {
+                       $notmarcrecord++;
+               } else {
+                       my $oldbiblio = MARCmarc2koha($dbh,$marcrecord);
+                       $oldbiblio->{title} = char_decode($oldbiblio->{title});
+                       $oldbiblio->{author} = char_decode($oldbiblio->{author});
+                       # if isbn found and biblio does not exist, add it. If isbn found and biblio exists, overwrite or ignore depending on user choice
+                       # drop every "special" char : spaces, - ...
+                       $oldbiblio->{isbn} =~ s/ |-|\.//g,
+                       # search if biblio exists
+                       my $biblioitemnumber;
+                       if ($oldbiblio->{isbn}) {
+                               $searchisbn->execute($oldbiblio->{isbn});
+                               ($biblioitemnumber) = $searchisbn->fetchrow;
+                       } else {
+                               $searchissn->execute($oldbiblio->{issn});
+                               ($biblioitemnumber) = $searchissn->fetchrow;
+                       }
+                       if ($biblioitemnumber) {
+                               $alreadyindb++;
+                       } else {
+                               # search in breeding farm
+                               my $breedingid;
+                               if ($oldbiblio->{isbn}) {
+                                       $searchbreeding->execute($oldbiblio->{isbn});
+                                       ($breedingid) = $searchbreeding->fetchrow;
+                               } else {
+                                       $searchbreeding->execute($oldbiblio->{issn});
+                                       ($breedingid) = $searchbreeding->fetchrow;
+                               }
+                               if (!$breedingid || $overwrite_biblio) {
+                                       my $recoded;
+                                       $recoded = $marcrecord->as_usmarc();
+                                               if ($breedingid) {
+                                                       $replacesql ->execute($filename,substr($oldbiblio->{isbn}.$oldbiblio->{issn},0,10),$oldbiblio->{title},$oldbiblio->{author},$recoded,$breedingid);
+                                               } else {
+                                                       $insertsql ->execute($filename,substr($oldbiblio->{isbn}.$oldbiblio->{issn},0,10),$oldbiblio->{title},$oldbiblio->{author},$recoded);
+                                               }
+                                       $imported++;
+                               } else {
+                                       $alreadyinfarm++;
+                               }
+                       }
+               }
        }
-       chop $serverlist;
-       my $q_serverlist=$dbh->quote($serverlist);
-       my $sth=$dbh->prepare("insert into z3950queue (term,type,servers) values ($q_term, '$type', $q_serverlist)");
-       $sth->execute;
-    }
-}
+       $template->param(imported => $imported,
+                                                       alreadyindb => $alreadyindb,
+                                                       alreadyinfarm => $alreadyinfarm,
+                                                       notmarcrecord => $notmarcrecord,
+                                                       total => $imported+$alreadyindb+$alreadyinfarm+$notmarcrecord,
+                                                       );
 
-if (my $data=$input->param('uploadmarc')) {
-    my $name=$input->param('name');
-    ($name) || ($name=$data);
-    my $marcrecord='';
-    if (length($data)>0) {
-       while (<$data>) {
-           $marcrecord.=$_;
-       }
-    }
-    my $q_marcrecord=$dbh->quote($marcrecord);
-    my $q_name=$dbh->quote($name);
-    my $sth=$dbh->prepare("insert into uploadedmarc (marc,name) values ($q_marcrecord, $q_name)");
-    $sth->execute;
 }
 
-
-if ($input->param('insertnewrecord')) {
-    my $isbn=$input->param('isbn');
-    my $issn=$input->param('issn');
-    my $lccn=$input->param('lccn');
-    my $q_origisbn=$dbh->quote($input->param('origisbn'));
-    my $q_origissn=$dbh->quote($input->param('origissn'));
-    my $q_origlccn=$dbh->quote($input->param('origlccn'));
-    my $q_origcontrolnumber=$dbh->quote($input->param('origcontrolnumber'));
-    my $q_isbn=$dbh->quote((($isbn) || ('NIL')));
-    my $q_issn=$dbh->quote((($issn) || ('NIL')));
-    my $q_lccn=$dbh->quote((($lccn) || ('NIL')));
-    $sth=$dbh->prepare("insert into marcrecorddone values ($q_origisbn, $q_origissn, $q_origlccn, $q_origcontrolnumber)");
-    $sth->execute;
-    my $sth=$dbh->prepare("select biblionumber,biblioitemnumber from biblioitems where issn=$q_issn or isbn=$q_isbn or lccn=$q_lccn");
-    $sth->execute;
-    my $biblionumber=0;
-    my $biblioitemnumber=0;
-    print "<center>\n";
-    print "<a href=$ENV{'SCRIPT_NAME'}?file=$file>New Record</a> | <a href=marcimport.pl>New File</a><br>\n";
-    if ($sth->rows) {
-       ($biblionumber, $biblioitemnumber) = $sth->fetchrow;
-       my $title=$input->param('title');
-       print << "EOF";
-       <table border=0 width=50% cellpadding=10 cellspacing=0>
-       <tr><th bgcolor=black><font color=white>Record already in database</font></th></tr>
-       <tr><td bgcolor=#dddddd>$title is already in the database with biblionumber $biblionumber and biblioitemnumber $biblioitemnumber</td></tr>
-       </table>
-       <p>
-EOF
+output_html_with_http_headers $input, $cookie, $template->output;
+my $menu;
+my $file;
+
+# Process a MARC file : show list of records, of 1 record detail, if numrecord exists
+sub ProcessFile {
+    # A MARC file has been specified; process it for review form
+    use strict;
+    # Input params
+    my (
+       $input,
+    )=@_;
+
+    # local vars
+    my (
+       $sth,
+       $record,
+    );
+
+    my $debug=0;
+
+    # See if a particular result item was specified
+    my $numrecord = $input->param('numrecord');
+    if ($numrecord) {
+       ProcessRecord($dbh,$input,$numrecord);
     } else {
-       my $q_title=$dbh->quote($input->param('title'));
-       my $q_subtitle=$dbh->quote($input->param('subtitle'));
-       my $q_author=$dbh->quote($input->param('author'));
-       my $q_copyrightdate=$dbh->quote($input->param('copyrightdate'));
-       my $q_seriestitle=$dbh->quote($input->param('seriestitle'));
-       $sth=$dbh->prepare("select biblionumber from biblio where title=$q_title and author=$q_author and copyrightdate=$q_copyrightdate and seriestitle=$q_seriestitle");
+       # No result item specified, list results
+       ListFileRecords($dbh,$input);
+    } # if
+} # sub ProcessFile
+
+# show 1 record from the MARC file
+sub ProcessRecord {
+    my ($dbh, $input,$numrecord) = @_;
+    # local vars
+    my (
+       $sth,
+       $record,
+       $data,
+    );
+
+    if ($file=~/Z-(\d+)/) {
+       my $id=$1;
+       my $resultsid=$input->param('resultsid');
+       my $sth=$dbh->prepare("select results from z3950results where id=$resultsid");
        $sth->execute;
-       if ($sth->rows) {
-           ($biblionumber) = $sth->fetchrow;
-       } else {
-           $sth=$dbh->prepare("select max(biblionumber) from biblio");
-           $sth->execute;
-           ($biblionumber) = $sth->fetchrow;
-           $biblionumber++;
-           $sth=$dbh->prepare("insert into biblio (biblionumber, title, author, copyrightdate, seriestitle) values ($biblionumber, $q_title, $q_author, $q_copyrightdate, $q_seriestitle)");
-           $sth->execute;
-           $sth=$dbh->prepare("insert into bibliosubtitle (biblionumber,subtitle) values ($biblionumber, $q_subtitle)");
-           $sth->execute;
-       }
-       $sth=$dbh->prepare("select max(biblioitemnumber) from biblioitems");
-       $sth->execute;
-       ($biblioitemnumber) = $sth->fetchrow;
-       $biblioitemnumber++;
-       my $q_isbn=$dbh->quote($isbn);
-       my $q_issn=$dbh->quote($issn);
-       my $q_lccn=$dbh->quote($lccn);
-       my $q_volume=$dbh->quote($input->param('volume'));
-       my $q_number=$dbh->quote($input->param('number'));
-       my $q_itemtype=$dbh->quote($input->param('itemtype'));
-       my $q_dewey=$dbh->quote($input->param('dewey'));
-       my $q_subclass=$dbh->quote($input->param('subclass'));
-       my $q_publicationyear=$dbh->quote($input->param('publicationyear'));
-       my $q_publishercode=$dbh->quote($input->param('publishercode'));
-       my $q_volumedate=$dbh->quote($input->param('volumedate'));
-       my $q_volumeddesc=$dbh->quote($input->param('volumeddesc'));
-       my $q_illus=$dbh->quote($input->param('illustrator'));
-       my $q_pages=$dbh->quote($input->param('pages'));
-       my $q_notes=$dbh->quote($input->param('note'));
-       my $q_size=$dbh->quote($input->param('size'));
-       my $q_place=$dbh->quote($input->param('place'));
-       my $q_marc=$dbh->quote($input->param('marc'));
-
-       $sth=$dbh->prepare("insert into biblioitems (biblioitemnumber, biblionumber, volume, number, itemtype, isbn, issn, dewey, subclass, publicationyear, publishercode, volumedate, volumeddesc, illus, pages, notes, size, place, lccn, marc) values ($biblioitemnumber, $biblionumber, $q_volume, $q_number, $q_itemtype, $q_isbn, $q_issn, $q_dewey, $q_subclass, $q_publicationyear, $q_publishercode, $q_volumedate, $q_volumeddesc, $q_illus, $q_pages, $q_notes, $q_size, $q_place, $q_lccn, $q_marc)");
+       ($data) = $sth->fetchrow;
+    } else {
+       my $sth=$dbh->prepare("select marc from uploadedmarc where id=$file");
        $sth->execute;
-       my $subjectheadings=$input->param('subject');
-       my $additionalauthors=$input->param('additionalauthors');
-       my @subjectheadings=split(/\n/,$subjectheadings);
-       my $subjectheading;
-       foreach $subjectheading (@subjectheadings) {
-           # remove any line ending characters (Ctrl-J or M)
-           $subjectheading=~s/\013//g;
-           $subjectheading=~s/\010//g;
-           # convert to upper case
-           $subjectheading=uc($subjectheading);
-           chomp ($subjectheading);
-           while (ord(substr($subjectheading, length($subjectheading)-1, 1))<14) {
-               chop $subjectheading;
+       ($data) = $sth->fetchrow;
+    }
+
+    my $file=MARC::File::USMARC->indata ($data);
+    my $oldkoha;
+    for (my $i=1;$i<$numrecord;$i++) {
+       $record = $file->next;
+    }
+    if ($record) {
+       $oldkoha=MARCmarc2koha($dbh,$record);
+    }
+    my $template=gettemplate('marcimport/marcimportdetail.tmpl');
+    $oldkoha->{additionalauthors} =~ s/ \| /\n/g;
+    $oldkoha =~ s/\|/\n/g;
+    $template->param($oldkoha);
+#---- build MARC array for template
+    my @loop = ();
+    my $tagmeaning = &MARCgettagslib($dbh,1);
+    my @fields = $record->fields();
+    my $color=0;
+    my $lasttag="";
+    foreach my $field (@fields) {
+       my @subfields=$field->subfields();
+       foreach my $subfieldcount (0..$#subfields) {
+           my %row_data;
+           if ($lasttag== $field->tag()) {
+               $row_data{tagid}   = "";
+           } else {
+               $row_data{tagid}   = $field->tag();
            }
-           # quote value
-           my $q_subjectheading=$dbh->quote($subjectheading);
-           $sth=$dbh->prepare("insert into bibliosubject (biblionumber,subject)
-               values ($biblionumber, $q_subjectheading)");
-           $sth->execute;
-       }
-       my @additionalauthors=split(/\n/,$additionalauthors);
-       my $additionalauthor;
-       foreach $additionalauthor (@additionalauthors) {
-           # remove any line ending characters (Ctrl-L or Ctrl-M)
-           $additionalauthor=~s/\013//g;
-           $additionalauthor=~s/\010//g;
-           # convert to upper case
-           $additionalauthor=uc($additionalauthor);
-           # quote value
-           my $q_additionalauthor=$dbh->quote($additionalauthor);
-           $sth=$dbh->prepare("insert into additionalauthors (biblionumber,author) values ($biblionumber, $q_additionalauthor)");
-           $sth->execute;
+           $row_data{subfield} = $subfields[$subfieldcount][0];
+           $row_data{tagmean} = $tagmeaning->{$field->tag()}->{$subfields[$subfieldcount][0]};
+           $row_data{tagvalue}= $subfields[$subfieldcount][1];
+           if ($color ==0) {
+               $color=1;
+               $row_data{color} = $lc1;
+           } else {
+               $color=0;
+               $row_data{color} = $lc2;
+           }
+           push(@loop,\%row_data);
+           $lasttag=$field->tag();
        }
-
-       my $title=$input->param('title');
-       print << "EOF";
-       <table cellpadding=10 cellspacing=0 border=0 width=50%>
-       <tr><th bgcolor=black><font color=white>Record entered into database</font></th></tr>
-       <tr><td bgcolor=#dddddd>$title has been entered into the database with biblionumber
-       $biblionumber and biblioitemnumber $biblioitemnumber</td></tr>
-       </table>
-EOF
     }
-    my $title=$input->param('title');
-    $sth=$dbh->prepare("select max(barcode) from items");
-    $sth->execute;
-    my ($barcode) = $sth->fetchrow;
-    $barcode++;
-    print << "EOF";
-    <table border=0 cellpadding=10 cellspacing=0>
-    <tr><th bgcolor=black><font color=white>
-Add a New Item for $title
-</font>
-</th></tr>
-<tr><td bgcolor=#dddddd>
-<form>
-<input type=hidden name=newitem value=1>
-<input type=hidden name=biblionumber value=$biblionumber>
-<input type=hidden name=biblioitemnumber value=$biblioitemnumber>
-<input type=hidden name=file value=$file>
-<table border=0>
-<tr><td>BARCODE</td><td><input name=barcode size=10 value=$barcode> Home Branch: <select name=homebranch><option value='STWE'>Stewart Elementary<option value='MEZ'>Meziadin Elementary</select></td></tr>
-</tr><td>Replacement Price:</td><td><input name=replacementprice size=10></td></tr>
-<tr><td>Notes</td><td><textarea name=notes rows=4 cols=40
-wrap=physical></textarea></td></tr>
-</table>
-</td></tr>
-</table>
-<p>
-<input type=submit value="Add Item">
-</form>
-EOF
-print endmenu();
-print endpage();
-
-exit;
+    $template->param(MARC => \@loop);
+    $template->param(numrecord => $numrecord);
+    $template->param(file => $data);
+    print "Content-Type: text/html\n\n", $template->output;
 }
 
-if ($input->param('newitem')) {
-    my $barcode=$input->param('barcode');
-    my $q_barcode=$dbh->quote($barcode);
-    my $q_notes=$dbh->quote($input->param('notes'));
-    my $q_homebranch=$dbh->quote($input->param('homebranch'));
-    my $biblionumber=$input->param('biblionumber');
-    my $biblioitemnumber=$input->param('biblioitemnumber');
-    my $replacementprice=($input->param('replacementprice') || 0);
-    my $sth=$dbh->prepare("select max(itemnumber) from items");
-    $sth->execute;
-    my ($itemnumber) = $sth->fetchrow;
-    $itemnumber++;
-    my @datearr=localtime(time);
-    my $date=(1900+$datearr[5])."-".($datearr[4]+1)."-".$datearr[3];
-    $sth=$dbh->prepare("insert into items (itemnumber, biblionumber, biblioitemnumber, barcode, itemnotes, homebranch, holdingbranch, dateaccessioned, replacementprice) values ($itemnumber, $biblionumber, $biblioitemnumber, $q_barcode, $q_notes, $q_homebranch, 'STWE', '$date', $replacementprice)");
-    $sth->execute;
-}
+# lists all records from the MARC file
+sub ListFileRecords {
+    use strict;
+
+    # Input parameters
+    my (
+       $dbh,           # FIXME - Unused argument
+       $input,
+    )=@_;
+
+    my (
+       $sth, $sti,
+       $field,
+       $data,          # records in MARC file format
+       $name,
+       $srvid,
+       %servernames,
+       $serverdb,
+    );
+
+    my $z3950=0;
+    my $recordsource;
+    my $record;
+    my ($numrecords,$resultsid,$data,$startdate,$enddate);
+               # FIXME - there's already a $data a few lines above.
 
+    $dbh = C4::Context->dbh;
 
-my $menu = $input->param('menu');
-if ($file) {
-    print "<a href=$ENV{'SCRIPT_NAME'}>Main Menu</a><hr>\n";
-    my $qisbn=$input->param('isbn');
-    my $qissn=$input->param('issn');
-    my $qlccn=$input->param('lccn');
-    my $qcontrolnumber=$input->param('controlnumber');
-    if ($qisbn || $qissn || $qlccn || $qcontrolnumber) {
-       print "<a href=$ENV{'SCRIPT_NAME'}>New File</a><hr>\n";
-       #open (F, "$file");
-       #my $data=<F>;
-       my $data;
-       if ($file=~/Z-(\d+)/) {
-           my $id=$1;
-           my $resultsid=$input->param('resultsid');
-           my $sth=$dbh->prepare("select results from z3950results where id=$resultsid");
-           $sth->execute;
-           ($data) = $sth->fetchrow;
-       } else {
-           my $sth=$dbh->prepare("select marc from uploadedmarc where id=$file");
-           $sth->execute;
-           ($data) = $sth->fetchrow;
-       }
+    my $template=gettemplate('marcimport/ListFileRecords.tmpl');
+    # File can be z3950 search query or uploaded MARC data
 
-       $splitchar=chr(29);
-       my @records;
-       foreach $record (split(/$splitchar/, $data)) {
-           my $marctext="<table border=0 cellspacing=0>\n";
-           $marctext.="<tr><th colspan=3 bgcolor=black><font color=white>MARC RECORD</font></th></tr>\n";
-           $leader=substr($record,0,24);
-           $marctext.="<tr><td>Leader:</td><td colspan=2>$leader</td></tr>\n";
-           $record=substr($record,24);
-           $splitchar2=chr(30);
-           my $directory=0;
-           my $tagcounter=0;
-           my %tag;
-           my @record;
-           foreach $field (split(/$splitchar2/, $record)) {
-               my %field;
-               ($color eq $lc1) ? ($color=$lc2) : ($color=$lc1);
-               unless ($directory) {
-                   $directory=$field;
-                   my $itemcounter=1;
-                   $counter=0;
-                   while ($item=substr($directory,0,12)) {
-                       $tag=substr($directory,0,3);
-                       $length=substr($directory,3,4);
-                       $start=substr($directory,7,6);
-                       $directory=substr($directory,12);
-                       $tag{$counter}=$tag;
-                       $counter++;
-                   }
-                   $directory=1;
-                   next;
-               }
-               $tag=$tag{$tagcounter};
-               $tagcounter++;
-               $field{'tag'}=$tag;
-               $marctext.="<tr><td bgcolor=$color valign=top>$tagtext{$tag}</td><td bgcolor=$color valign=top>$tag</td>";
-               $splitchar3=chr(31);
-               my @subfields=split(/$splitchar3/, $field);
-               $indicator=$subfields[0];
-               $field{'indicator'}=$indicator;
-               my $firstline=1;
-               if ($#subfields==0) {
-                   $marctext.="<td bgcolor=$color valign=top>$indicator</td></tr>";
-               } else {
-                   my %subfields;
-                   $marctext.="<td bgcolor=$color valign=top><table border=0 cellspacing=0>\n";
-                   my $color2=$color;
-                   for ($i=1; $i<=$#subfields; $i++) {
-                       ($color2 eq $lc1) ? ($color2=$lc2) : ($color2=$lc1);
-                       my $text=$subfields[$i];
-                       my $subfieldcode=substr($text,0,1);
-                       my $subfield=substr($text,1);
-                       $marctext.="<tr><td colour=$color2><table border=0 cellpadding=0 cellspacing=0><tr><td>$subfieldcode </td></tr></table></td><td colour=$color2>$subfield</td></tr>\n";
-                       if ($subfields{$subfieldcode}) {
-                           my $subfieldlist=$subfields{$subfieldcode};
-                           my @subfieldlist=@$subfieldlist;
-                           if ($#subfieldlist>=0) {
-                               push (@subfieldlist, $subfield);
-                           } else {
-                               @subfieldlist=($subfields{$subfieldcode}, $subfield);
-                           }
-                           $subfields{$subfieldcode}=\@subfieldlist;
-                       } else {
-                           $subfields{$subfieldcode}=$subfield;
-                       }
-                   }
-                   $marctext.="</table></td></tr>\n";
-                   $field{'subfields'}=\%subfields;
-               }
-               push (@record, \%field);
-           }
-           $marctext.="</table>\n";
-           $marctext{\@record}=$marctext;
-           $marc{\@record}=$record;
-           push (@records, \@record);
-           $counter++;
-       }
-RECORD:
-       foreach $record (@records) {
-           my ($lccn, $isbn, $issn, $dewey, $author, $title, $place, $publisher, $publicationyear, $volume, $number, @subjects, $note, $additionalauthors, $illustrator, $copyrightdate, $seriestitle);
-           my $marctext=$marctext{$record};
-           my $marc=$marc{$record};
-           foreach $field (@$record) {
-               if ($field->{'tag'} eq '001') {
-                   $controlnumber=$field->{'indicator'};
-               }
-               if ($field->{'tag'} eq '010') {
-                   $lccn=$field->{'subfields'}->{'a'};
-                   $lccn=~s/^\s*//;
-                   ($lccn) = (split(/\s+/, $lccn))[0];
-               }
-               if ($field->{'tag'} eq '015') {
-                   $lccn=$field->{'subfields'}->{'a'};
-                   $lccn=~s/^\s*//;
-                   $lccn=~s/^C//;
-                   ($lccn) = (split(/\s+/, $lccn))[0];
-               }
-               if ($field->{'tag'} eq '020') {
-                   $isbn=$field->{'subfields'}->{'a'};
-                   ($isbn=~/^ARRAY/) && ($isbn=$$isbn[0]);
-                   $isbn=~s/[^\d]*//g;
-               }
-               if ($field->{'tag'} eq '022') {
-                   $issn=$field->{'subfields'}->{'a'};
-                   $issn=~s/^\s*//;
-                   ($issn) = (split(/\s+/, $issn))[0];
-               }
-               if ($field->{'tag'} eq '082') {
-                   $dewey=$field->{'subfields'}->{'a'};
-                   $dewey=~s/\///g;
-                   if (@$dewey) {
-                       $dewey=$$dewey[0];
-                   }
-                   #$dewey=~s/\///g;
-               }
-               if ($field->{'tag'} eq '100') {
-                   $author=$field->{'subfields'}->{'a'};
-               }
-               if ($field->{'tag'} eq '245') {
-                   $title=$field->{'subfields'}->{'a'};
-                   $title=~s/ \/$//;
-                   $subtitle=$field->{'subfields'}->{'b'};
-                   $subtitle=~s/ \/$//;
-               }
-               if ($field->{'tag'} eq '260') {
-                   $place=$field->{'subfields'}->{'a'};
-                   if (@$place) {
-                       $place=$$place[0];
-                   }
-                   $place=~s/\s*:$//g;
-                   $publisher=$field->{'subfields'}->{'b'};
-                   if (@$publisher) {
-                       $publisher=$$publisher[0];
-                   }
-                   $publisher=~s/\s*:$//g;
-                   $publicationyear=$field->{'subfields'}->{'c'};
-                   if ($publicationyear=~/c(\d\d\d\d)/) {
-                       $copyrightdate=$1;
-                   }
-                   if ($publicationyear=~/[^c](\d\d\d\d)/) {
-                       $publicationyear=$1;
-                   } elsif ($copyrightdate) {
-                       $publicationyear=$copyrightdate;
-                   } else {
-                       $publicationyear=~/(\d\d\d\d)/;
-                       $publicationyear=$1;
-                   }
-               }
-               if ($field->{'tag'} eq '300') {
-                   $pages=$field->{'subfields'}->{'a'};
-                   $pages=~s/ \;$//;
-                   $size=$field->{'subfields'}->{'c'};
-                   $pages=~s/\s*:$//g;
-                   $size=~s/\s*:$//g;
-               }
-               if ($field->{'tag'} eq '362') {
-                   if ($field->{'subfields'}->{'a'}=~/(\d+).*(\d+)/) {
-                       $volume=$1;
-                       $number=$2;
-                   }
+    # if z3950 results
+    if (not $file=~/Z-(\d+)/) {
+       # This is a Marc upload
+       $sth=$dbh->prepare("select marc,name from uploadedmarc where id=$file");
+       $sth->execute;
+       ($data, $name) = $sth->fetchrow;
+       $template->param(IS_MARC => 1);
+       $template->param(recordsource => $name);
+    }
+
+    if ($file=~/Z-(\d+)/) {
+       # This is a z3950 search
+       $template->param(IS_Z3950 =>1);
+       my $id=$1;              # search query id number
+       my $serverstring;
+       my $starttimer=time();
+
+       $sth=$dbh->prepare("
+               select z3950results.numrecords,z3950results.id,z3950results.results,
+                       z3950results.startdate,z3950results.enddate,server
+               from z3950queue left outer join z3950results
+                    on z3950queue.id=z3950results.queryid
+               where z3950queue.id=?
+               order by server
+           ");
+       $sth->execute($id);
+       if ( $sth->rows ) {
+           # loop through all servers in search results
+           while ( ($numrecords,$resultsid,$data,
+                    $startdate,$enddate,$serverstring) = $sth->fetchrow ) {
+               my ($srvid, $server, $database, $auth) = split(/\//, $serverstring, 4);
+               if ( $server ) {
+                       my $srvname=&z3950servername($dbh,$srvid,"$server/$database");
+                       $template->param(srvid => $srvid);
+                       $template->param(srvname => $srvname);
+               } # if $server
+               my $startrecord=$input->param("ST-$srvid");
+               ($startrecord) || ($startrecord='0');
+               my $serverplaceholder='';
+               foreach ($input->param) {
+                   (next) unless (/ST-(.+)/);
+                   my $serverid=$1;
+                   (next) if ($serverid eq $srvid);
+                   my $place=$input->param("ST-$serverid");
+                   $serverplaceholder.="\&ST-$serverid=$place";
                }
-               if ($field->{'tag'} eq '440') {
-                   $seriestitle=$field->{'subfields'}->{'a'};
-                   if ($field->{'subfields'}->{'v'}=~/(\d+).*(\d+)/) {
-                       $volume=$1;
-                       $number=$2;
+               if ($numrecords) {
+                   $template->param(HAS_NUMRECORDS => 1);
+                   my $previous='';
+                   my $next='';
+                   if ($startrecord>0) {
+                       $previous="<a href=".$ENV{'SCRIPT_NAME'}."?file=Z-$id&menu=z3950$serverplaceholder\&ST-$srvid=".($startrecord-10)."#SERVER-$srvid>Previous</a>";
                    }
-               }
-               if ($field->{'tag'} eq '700') {
-                   my $name=$field->{'subfields'}->{'a'};
-                   if ($field->{'subfields'}->{'c'}=~/ill/) {
-                       $additionalauthors.="$name\n";
-                   } else {
-                       $illustrator=$name;
+                   my $highest;
+                   $highest=$startrecord+10;
+                   ($highest>$numrecords) && ($highest=$numrecords);
+                   if ($numrecords>$startrecord+10) {
+                       $next="<a href=".$ENV{'SCRIPT_NAME'}."?file=Z-$id&menu=z3950$serverplaceholder\&ST-$srvid=$highest#SERVER-$srvid>Next</a>";
                    }
+                   $template->param(startrecord => $startrecord+1);
+                   $template->param(highest => $highest);
+                   $template->param(numrecords => $numrecords);
+                   $template->param(previous => $previous);
+                   $template->param(next => $next);
+                   my $stj=$dbh->prepare("update z3950results
+                       set highestseen=? where id=?");
+                   $stj->execute($startrecord+10,$resultsid);
                }
-               if ($field->{'tag'} =~/^5/) {
-                   $note.="$field->{'subfields'}->{'a'}\n";
-               }
-               if ($field->{'tag'} =~/65\d/) {
-                   my $subject=$field->{'subfields'}->{'a'};
-                   $subject=~s/\.$//;
-                   if ($gensubdivision=$field->{'subfields'}->{'x'}) {
-                       my @sub=@$gensubdivision;
-                       if ($#sub>=0) {
-                           foreach $s (@sub) {
-                               $s=~s/\.$//;
-                               $subject.=" -- $s";
-                           }
-                       } else {
-                           $gensubdivision=~s/\.$//;
-                           $subject.=" -- $gensubdivision";
-                       }
-                   }
-                   if ($chronsubdivision=$field->{'subfields'}->{'y'}) {
-                       my @sub=@$chronsubdivision;
-                       if ($#sub>=0) {
-                           foreach $s (@sub) {
-                               $s=~s/\.$//;
-                               $subject.=" -- $s";
-                           }
-                       } else {
-                           $chronsubdivision=~s/\.$//;
-                           $subject.=" -- $chronsubdivision";
-                       }
-                   }
-                   if ($geosubdivision=$field->{'subfields'}->{'z'}) {
-                       my @sub=@$geosubdivision;
-                       if ($#sub>=0) {
-                           foreach $s (@sub) {
-                               $s=~s/\.$//;
-                               $subject.=" -- $s";
-                           }
-                       } else {
-                           $geosubdivision=~s/\.$//;
-                           $subject.=" -- $geosubdivision";
-                       }
-                   }
-                   push @subjects, $subject;
-               }
-           }
-           $titleinput=$input->textfield(-name=>'title', -default=>$title, -size=>40);
-           $marcinput=$input->hidden(-name=>'marc', -default=>$marc);
-           $subtitleinput=$input->textfield(-name=>'subtitle', -default=>$subtitle, -size=>40);
-           $authorinput=$input->textfield(-name=>'author', -default=>$author);
-           $illustratorinput=$input->textfield(-name=>'illustrator', -default=>$illustrator);
-           $additionalauthorsinput=$input->textarea(-name=>'additionalauthors', -default=>$additionalauthors, -rows=>4, -cols=>20);
-           my $subject='';
-           foreach (@subjects) {
-               $subject.="$_\n";
-           }
-           $subjectinput=$input->textarea(-name=>'subject', -default=>$subject, -rows=>4, -cols=>40);
-           $noteinput=$input->textarea(-name=>'note', -default=>$note, -rows=>4, -cols=>40, -wrap=>'physical');
-           $copyrightinput=$input->textfield(-name=>'copyrightdate', -default=>$copyrightdate);
-           $seriestitleinput=$input->textfield(-name=>'seriestitle', -default=>$seriestitle);
-           $volumeinput=$input->textfield(-name=>'volume', -default=>$volume);
-           $volumedateinput=$input->textfield(-name=>'volumedate', -default=>$volumedate);
-           $volumeddescinput=$input->textfield(-name=>'volumeddesc', -default=>$volumeddesc);
-           $numberinput=$input->textfield(-name=>'number', -default=>$number);
-           $isbninput=$input->textfield(-name=>'isbn', -default=>$isbn);
-           $issninput=$input->textfield(-name=>'issn', -default=>$issn);
-           $lccninput=$input->textfield(-name=>'lccn', -default=>$lccn);
-           $isbninput=$input->textfield(-name=>'isbn', -default=>$isbn);
-           $deweyinput=$input->textfield(-name=>'dewey', -default=>$dewey);
-           $cleanauthor=$author;
-           $cleanauthor=~s/[^A-Za-z]//g;
-           $subclassinput=$input->textfield(-name=>'subclass', -default=>uc(substr($cleanauthor,0,3)));
-           $publisherinput=$input->textfield(-name=>'publishercode', -default=>$publisher);
-           $pubyearinput=$input->textfield(-name=>'publicationyear', -default=>$publicationyear);
-           $placeinput=$input->textfield(-name=>'place', -default=>$place);
-           $pagesinput=$input->textfield(-name=>'pages', -default=>$pages);
-           $sizeinput=$input->textfield(-name=>'size', -default=>$size);
-           $fileinput=$input->hidden(-name=>'file', -default=>$file);
-           $origisbn=$input->hidden(-name=>'origisbn', -default=>$isbn);
-           $origissn=$input->hidden(-name=>'origissn', -default=>$issn);
-           $origlccn=$input->hidden(-name=>'origlccn', -default=>$lccn);
-           $origcontrolnumber=$input->hidden(-name=>'origcontrolnumber', -default=>$controlnumber);
-
-           my $itemtypeselect='';
-           $sth=$dbh->prepare("select itemtype,description from itemtypes");
-           $sth->execute;
-           while (my ($itemtype, $description) = $sth->fetchrow) {
-               $itemtypeselect.="<option value=$itemtype>$itemtype - $description\n";
-           }
-           ($qissn) || ($qissn='NIL');
-           ($qlccn) || ($qlccn='NIL');
-           ($qisbn) || ($qisbn='NIL');
-           ($qcontrolnumber) || ($qcontrolnumber='NIL');
-           $controlnumber=~s/\s+//g;
-           unless (($isbn eq $qisbn) || ($issn eq $qissn) || ($lccn eq $qlccn) || ($controlnumber eq $qcontrolnumber)) {
-               next RECORD;
-           }
 
-           print << "EOF";
-           <center>
-           <h1>New Record</h1>
-           Full MARC Record available at bottom
-           <form method=post>
-           <table border=1>
-           <tr><td>Title</td><td>$titleinput</td></tr>
-           <tr><td>Subtitle</td><td>$subtitleinput</td></tr>
-           <tr><td>Author</td><td>$authorinput</td></tr>
-           <tr><td>Additional Authors</td><td>$additionalauthorsinput</td></tr>
-           <tr><td>Illustrator</td><td>$illustratorinput</td></tr>
-           <tr><td>Copyright</td><td>$copyrightinput</td></tr>
-           <tr><td>Series Title</td><td>$seriestitleinput</td></tr>
-           <tr><td>Volume</td><td>$volumeinput</td></tr>
-           <tr><td>Number</td><td>$numberinput</td></tr>
-           <tr><td>Volume Date</td><td>$volumedateinput</td></tr>
-           <tr><td>Volume Description</td><td>$volumeddescinput</td></tr>
-           <tr><td>Subject</td><td>$subjectinput</td></tr>
-           <tr><td>Notes</td><td>$noteinput</td></tr>
-           <tr><td>Item Type</td><td><select name=itemtype>$itemtypeselect</select></td></tr>
-           <tr><td>ISBN</td><td>$isbninput</td></tr>
-           <tr><td>ISSN</td><td>$issninput</td></tr>
-           <tr><td>LCCN</td><td>$lccninput</td></tr>
-           <tr><td>Dewey</td><td>$deweyinput</td></tr>
-           <tr><td>Subclass</td><td>$subclassinput</td></tr>
-           <tr><td>Publication Year</td><td>$pubyearinput</td></tr>
-           <tr><td>Publisher</td><td>$publisherinput</td></tr>
-           <tr><td>Place</td><td>$placeinput</td></tr>
-           <tr><td>Pages</td><td>$pagesinput</td></tr>
-           <tr><td>Size</td><td>$sizeinput</td></tr>
-           </table>
-           <input type=submit>
-           <input type=hidden name=insertnewrecord value=1>
-           $fileinput
-           $marcinput
-           $origisbn
-           $origissn
-           $origlccn
-           $origcontrolnumber
-           </form>
-           $marctext
-EOF
-       }
-    } else {
-       #open (F, "$file");
-       #my $data=<F>;
-       my $data;
-       my $name;
-       my $z3950=0;
-       if ($file=~/Z-(\d+)/) {
-           print << "EOF";
-<center>
-<p>
-<a href=$ENV{'SCRIPT_NAME'}?menu=$menu>Select a New File</a>
-<p>
-<table border=0 cellpadding=10 cellspacing=0>
-<tr><th bgcolor=black><font color=white>Select a Record to Import</font></th></tr>
-<tr><td bgcolor=#dddddd>
-EOF
-           my $id=$1;
-           my $sth=$dbh->prepare("select servers from z3950queue where id=$id");
-           $sth->execute;
-           my ($servers) = $sth->fetchrow;
-           my $serverstring;
-           foreach $serverstring (split(/\s+/, $servers)) {
-               my ($name, $server, $database, $auth) = split(/\//, $serverstring, 4);
-               if ($name eq 'LOC') {
-                   print "Library of Congress<br>\n";
-               } elsif ($name eq 'NLC') {
-                   print "National Library of Canada<br>\n";
-               } else {
-                   print "$server/$database<br>\n";
-               }
-               print "<ul>\n";
-               my $q_server=$dbh->quote($serverstring);
-               my $sti=$dbh->prepare("select numrecords,id,results,startdate,enddate from z3950results where queryid=$id and server=$q_server");
-               $sti->execute;
-               ($numrecords,$resultsid,$data,$startdate,$enddate) = $sti->fetchrow;
-               if ($sti->rows == 0) {
-                   print "pending...";
+               if (! $server ) {
+                   $template->param(PENDING => 1);
                } elsif ($enddate == 0) {
                    my $now=time();
                    my $elapsed=$now-$startdate;
@@ -711,266 +361,124 @@ EOF
                    } else {
                        $elapsedtime=sprintf "%d seconds",$elapsed;
                    }
-                   print "<font color=red>processing... ($elapsedtime)</font>";
+                   $template->param(elapsedtime => $elapsedtime);
                } elsif ($numrecords) {
-                   my @records=parsemarcdata($data);
-                   foreach $record (@records) {
-                       my ($lccn, $isbn, $issn, $dewey, $author, $title, $place, $publisher, $publicationyear, $volume, $number, @subjects, $note, $controlnumber);
-                       foreach $field (@$record) {
-                           if ($field->{'tag'} eq '001') {
-                               $controlnumber=$field->{'indicator'};
-                           }
-                           if ($field->{'tag'} eq '010') {
-                               $lccn=$field->{'subfields'}->{'a'};
-                               $lccn=~s/^\s*//;
-                               ($lccn) = (split(/\s+/, $lccn))[0];
-                           }
-                           if ($field->{'tag'} eq '015') {
-                               $lccn=$field->{'subfields'}->{'a'};
-                               $lccn=~s/^\s*//;
-                               $lccn=~s/^C//;
-                               ($lccn) = (split(/\s+/, $lccn))[0];
-                           }
-                           if ($field->{'tag'} eq '020') {
-                               $isbn=$field->{'subfields'}->{'a'};
-                               ($isbn=~/ARRAY/) && ($isbn=$$isbn[0]);
-                               $isbn=~s/[^\d]*//g;
-                           }
-                           if ($field->{'tag'} eq '022') {
-                               $issn=$field->{'subfields'}->{'a'};
-                               $issn=~s/^\s*//;
-                               ($issn) = (split(/\s+/, $issn))[0];
-                           }
-                           if ($field->{'tag'} eq '100') {
-                               $author=$field->{'subfields'}->{'a'};
-                           }
-                           if ($field->{'tag'} eq '245') {
-                               $title=$field->{'subfields'}->{'a'};
-                               $title=~s/ \/$//;
-                               $subtitle=$field->{'subfields'}->{'b'};
-                               $subtitle=~s/ \/$//;
-                           }
-                       }
-                       my $q_isbn=$dbh->quote((($isbn) || ('NIL')));
-                       my $q_issn=$dbh->quote((($issn) || ('NIL')));
-                       my $q_lccn=$dbh->quote((($lccn) || ('NIL')));
-                       my $q_controlnumber=$dbh->quote((($controlnumber) || ('NIL')));
-                       my $sth=$dbh->prepare("select * from marcrecorddone where isbn=$q_isbn or issn=$q_issn or lccn=$q_lccn or controlnumber=$q_controlnumber");
-                       $sth->execute;
-                       my $donetext='';
-                       if ($sth->rows) {
-                           $donetext="DONE";
-                       }
-                       $sth=$dbh->prepare("select * from biblioitems where isbn=$q_isbn or issn=$q_issn or lccn=$q_lccn");
-                       $sth->execute;
-                       if ($sth->rows) {
-                           $donetext="DONE";
-                       }
-                       ($author) && ($author="by $author");
-                       if ($isbn) {
-                           print "<li><a href=$ENV{'SCRIPT_NAME'}?file=$file&resultsid=$resultsid&isbn=$isbn>$title$subtitle $author</a> $donetext<br>\n";
-                       } elsif ($lccn) {
-                           print "<li><a href=$ENV{'SCRIPT_NAME'}?file=$file&resultsid=$resultsid&lccn=$lccn>$title$subtitle $author</a> $donetext<br>\n";
-                       } elsif ($issn) {
-                           print "<li><a href=$ENV{'SCRIPT_NAME'}?file=$file&resultsid=$resultsid&issn=$issn>$title$subtitle $author</a><br> $donetext\n";
-                       } elsif ($controlnumber) {
-                           print "<li><a href=$ENV{'SCRIPT_NAME'}?file=$file&resultsid=$resultsid&controlnumber=$controlnumber>$title $author</a><br> $donetext\n";
-                       } else {
-                           print "Error: Contact steve regarding $title by $author<br>\n";
-                       }
+                   my @loop = ();
+                   my $z3950file=MARC::File::USMARC->indata ($data);
+                   while (my $record=$z3950file->next) {
+                       my $oldkoha = MARCmarc2koha($dbh,$record);
+                       my %row = ResultRecordLink($dbh,$oldkoha,$resultsid);
+                       push(@loop,\%row);
                    }
-                   print "<p>\n";
+                   $template->param(LINES => \@loop);
                } else {
-                   print "No records returned.<p>\n";
                }
-               print "</ul>\n";
-           }
+#              print "</ul>\n";
+           } # foreach server
+           my $elapsed=time()-$starttimer;
+#          print "<hr>It took $elapsed seconds to process this page.\n";
+           } else {
+               $template->param(NO_RECORDS =>1);
+               $template->param(id => $id);
+           } # if rows
+
        } else {
-           my $sth=$dbh->prepare("select marc,name from uploadedmarc where id=$file");
-           $sth->execute;
-           ($data, $name) = $sth->fetchrow;
-           print << "EOF";
-<center>
-<p>
-<a href=$ENV{'SCRIPT_NAME'}?menu=$menu>Select a New File</a>
-<p>
-<table border=0 cellpadding=10 cellspacing=0>
-<tr><th bgcolor=black><font color=white>Select a Record to Import<br>from $name</font></th></tr>
-<tr><td bgcolor=#dddddd>
-EOF
-           
-           my @records=parsemarcdata($data);
-           foreach $record (@records) {
-               my ($lccn, $isbn, $issn, $dewey, $author, $title, $place, $publisher, $publicationyear, $volume, $number, @subjects, $note, $controlnumber);
-               foreach $field (@$record) {
-                   if ($field->{'tag'} eq '001') {
-                       $controlnumber=$field->{'indicator'};
-                   }
-                   if ($field->{'tag'} eq '010') {
-                       $lccn=$field->{'subfields'}->{'a'};
-                       $lccn=~s/^\s*//;
-                       ($lccn) = (split(/\s+/, $lccn))[0];
-                   }
-                   if ($field->{'tag'} eq '015') {
-                       $lccn=$field->{'subfields'}->{'a'};
-                       $lccn=~s/^\s*//;
-                       $lccn=~s/^C//;
-                       ($lccn) = (split(/\s+/, $lccn))[0];
-                   }
-                   if ($field->{'tag'} eq '020') {
-                       $isbn=$field->{'subfields'}->{'a'};
-                       ($isbn=~/ARRAY/) && ($isbn=$$isbn[0]);
-                       $isbn=~s/[^\d]*//g;
-                   }
-                   if ($field->{'tag'} eq '022') {
-                       $issn=$field->{'subfields'}->{'a'};
-                       $issn=~s/^\s*//;
-                       ($issn) = (split(/\s+/, $issn))[0];
-                   }
-                   if ($field->{'tag'} eq '100') {
-                       $author=$field->{'subfields'}->{'a'};
-                   }
-                   if ($field->{'tag'} eq '245') {
-                       $title=$field->{'subfields'}->{'a'};
-                       $title=~s/ \/$//;
-                       $subtitle=$field->{'subfields'}->{'b'};
-                       $subtitle=~s/ \/$//;
-                   }
-               }
-               my $q_isbn=$dbh->quote((($isbn) || ('NIL')));
-               my $q_issn=$dbh->quote((($issn) || ('NIL')));
-               my $q_lccn=$dbh->quote((($lccn) || ('NIL')));
-               my $q_controlnumber=$dbh->quote((($controlnumber) || ('NIL')));
-               my $sth=$dbh->prepare("select * from marcrecorddone where isbn=$q_isbn or issn=$q_issn or lccn=$q_lccn or controlnumber=$q_controlnumber");
-               $sth->execute;
-               my $donetext='';
-               if ($sth->rows) {
-                   $donetext="DONE";
-               }
-               $sth=$dbh->prepare("select * from biblioitems where isbn=$q_isbn or issn=$q_issn or lccn=$q_lccn");
-               $sth->execute;
-               if ($sth->rows) {
-                   $donetext="DONE";
-               }
-               ($author) && ($author="by $author");
-               if ($isbn) {
-                   print "<a href=$ENV{'SCRIPT_NAME'}?file=$file&isbn=$isbn>$title$subtitle $author</a> $donetext<br>\n";
-               } elsif ($lccn) {
-                   print "<a href=$ENV{'SCRIPT_NAME'}?file=$file&lccn=$lccn>$title$subtitle $author</a> $donetext<br>\n";
-               } elsif ($issn) {
-                   print "<a href=$ENV{'SCRIPT_NAME'}?file=$file&issn=$issn>$title$subtitle $author</a><br> $donetext\n";
-               } elsif ($controlnumber) {
-                   print "<a href=$ENV{'SCRIPT_NAME'}?file=$file&controlnumber=$controlnumber>$title by $author</a><br> $donetext\n";
-               } else {
-                   print "Error: Contact steve regarding $title by $author<br>\n";
-               }
+#
+# This is an uploaded Marc record
+#
+           my @loop = ();
+           my $MARCfile = MARC::File::USMARC->indata($data);
+           my $num = 0;
+           while (my $record=$MARCfile->next) {
+               $num++;
+               my $oldkoha = MARCmarc2koha($dbh,$record);
+               my %row = ResultRecordLink($dbh,$oldkoha,'',$num);
+               push(@loop,\%row);
            }
-       }
-       print "</td></tr></table>\n";
-    }
-} else {
-
-SWITCH:
-    {
-       if ($menu eq 'z3950') { z3950(); last SWITCH; }
-       if ($menu eq 'uploadmarc') { uploadmarc(); last SWITCH; }
-       if ($menu eq 'manual') { manual(); last SWITCH; }
-       mainmenu();
+           $template->param(LINES => \@loop);
+       } # if z3950 or marc upload
+       print "Content-Type: text/html\n\n", $template->output;
+} # sub ListFileRecords
+
+#--------------
+
+sub ResultRecordLink {
+    use strict;
+    my ($dbh,$oldkoha,$resultsid, $num)=@_;    # input
+               # FIXME - $dbh as argument is no longer used
+    my (
+       $sth,
+       $bib,   # hash ref to named fields
+       $searchfield, $searchvalue,
+       $donetext,
+       $fieldname,
+       );
+    my %row = ();
+
+    $dbh = C4::Context->dbh;
+
+#    $bib=extractmarcfields($record);
+
+    $sth=$dbh->prepare("select *
+         from biblioitems
+         where (isbn=? and isbn!='')  or (issn=? and issn!='')  or (lccn=? and lccn!='') ");
+    $sth->execute($oldkoha->{isbn},$oldkoha->{issn},$oldkoha->{lccn});
+    if ($sth->rows) {
+       $donetext="DONE";
+    } else {
+       $donetext="";
     }
+    ($oldkoha->{author}) && ($oldkoha->{author}="by $oldkoha->{author}");
+
+    $searchfield="";
+    foreach $fieldname ( "controlnumber", "lccn", "issn", "isbn") {
+       if ( defined $oldkoha->{$fieldname} && $oldkoha->{$fieldname} ) {
+           $searchfield=$fieldname;
+           $searchvalue=$oldkoha->{$fieldname};
+       } # if defined fieldname
+    } # foreach
+    if ( $searchfield ) {
+       $row{SCRIPT_NAME} = $ENV{'SCRIPT_NAME'};
+       $row{donetext}    = $donetext;
+       $row{file}        = $file;
+#      $row{resultsid}   = $resultsid;
+#      $row{searchfield} = $searchfield;
+#      $row{searchvalue} = $searchvalue;
+       $row{numrecord}   = $num;
+       $row{title}       = $oldkoha->{title};
+       $row{author}      = $oldkoha->{author};
+    } else {
+       $row{title} = "Error: Problem with <br>$bib->{title} $bib->{author}<br>";
+    } # if searchfield
+    return %row;
+} # sub PrintResultRecordLink
 
-}
-
+#---------------------------------
 
-sub z3950 {
-    $sth=$dbh->prepare("select id,term,type,done,numrecords,length(results),startdate,enddate,servers from z3950queue order by id desc limit 20");
-    $sth->execute;
-    print "<a href=$ENV{'SCRIPT_NAME'}>Main Menu</a><hr>\n";
-    print "<table border=0><tr><td valign=top>\n";
-    print "<h2>Results of Z3950 searches</h2>\n";
-    print "<a href=$ENV{'SCRIPT_NAME'}?menu=z3950>Refresh</a><br>\n<ul>\n";
-    while (my ($id, $term, $type, $done, $numrecords, $length, $startdate, $enddate, $servers) = $sth->fetchrow) {
-       $type=uc($type);
-       $term=~s/</&lt;/g;
-       $term=~s/>/&gt;/g;
-       if ($done == 1) {
-           my $elapsed=$enddate-$startdate;
-           my $elapsedtime='';
-           if ($elapsed>60) {
-               $elapsedtime=sprintf "%d minutes",($elapsed/60);
-           } else {
-               $elapsedtime=sprintf "%d seconds",$elapsed;
-           }
-           if ($numrecords) {
-               print "<li><a href=$ENV{'SCRIPT_NAME'}?file=Z-$id&menu=$menu>$type=$term</a> <font size=-1>Done. $numrecords records found in $elapsedtime.</font><br>\n";
-           } else {
-               print "<li><a href=$ENV{'SCRIPT_NAME'}?file=Z-$id&menu=$menu>$type=$term</a> <font size=-1>Done.  No records found.  Search took $elapsedtime.</font><br>\n";
-           }
-       } elsif ($done == -1) {
-           my $elapsed=time()-$startdate;
-           my $elapsedtime='';
-           if ($elapsed>60) {
-               $elapsedtime=sprintf "%d minutes",($elapsed/60);
-           } else {
-               $elapsedtime=sprintf "%d seconds",$elapsed;
-           }
-           print "<li><a href=$ENV{'SCRIPT_NAME'}?file=Z-$id&menu=$menu>$type=$term</a> <font color=red size=-1>Processing ($elapsedtime)</font><br>\n";
-       } else {
-           print "<li><a href=$ENV{'SCRIPT_NAME'}?file=Z-$id&menu=$menu>$type=$term</a> $done <font size=-1>Pending</font><br>\n";
-       }
-    }
-    print "</ul>\n";
-    print "</td><td valign=top width=30%>\n";
-print << "EOF";
-    <form action=$ENV{'SCRIPT_NAME'} method=GET>
-    <input type=hidden name=z3950queue value=1>
-    <input type=hidden name=menu value=$menu>
-    <p>
-    <input type=hidden name=test value=testvalue>
-    <table border=1 bgcolor=#dddddd><tr><th bgcolor=#bbbbbb colspan=2>Search for MARC records<br>LOC and NLC</th></tr>
-    <tr><td>Query Term</td><td><input name=query></td></tr>
-    <tr><td colspan=2 align=center><input type=radio name=type value=isbn checked> ISBN <input type=radio name=type value=lccn> LCCN <input type=radio name=type value=title> Title</td></tr>
-    <tr><td colspan=2>
-    <input type=checkbox name=S-LOC checked> Library of Congress<br>
-    <input type=checkbox name=S-NLC checked> National Library of Canada<br>
-    <input type=checkbox name=S-MAN> <input name=manualz3950server size=25 value=otherserver:210/DATABASE>
-    </td></tr>
-    <tr><td colspan=2 align=center>
-    <input type=submit>
-    </td></tr>
-    </table>
-
-    </form>
-EOF
-print "</td></tr></table>\n";
-}
 
 sub uploadmarc {
-    print "<a href=$ENV{'SCRIPT_NAME'}>Main Menu</a><hr>\n";
+    use strict;
+    my ($dbh)=@_;              # FIXME - Unused argument
+
+    $dbh = C4::Context->dbh;
+
+    my $template=gettemplate('marcimport/uploadmarc.tmpl');
+    $template->param(SCRIPT_NAME => $ENV{'SCRIPT_NAME'});
+#    print "<a href=$ENV{'SCRIPT_NAME'}>Main Menu</a><hr>\n";
     my $sth=$dbh->prepare("select id,name from uploadedmarc");
     $sth->execute;
-    print "<h2>Select a set of MARC records</h2>\n<ul>";
+#    print "<h2>Select a set of MARC records</h2>\n<ul>";
+    my @marc_loop = ();
     while (my ($id, $name) = $sth->fetchrow) {
-       print "<li><a href=$ENV{'SCRIPT_NAME'}?file=$id&menu=$menu>$name</a><br>\n";
+       my %row;
+       $row{id} = $id;
+       $row{name} = $name;
+       push(@marc_loop, \%row);
+#      print "<li><a href=$ENV{'SCRIPT_NAME'}?file=$id&menu=$menu>$name</a><br>\n";
     }
-    print "</ul>\n";
-    print "<p>\n";
-    print "<table border=1 bgcolor=#dddddd><tr><th bgcolor=#bbbbbb
-    colspan=2>Upload a set of MARC records</th></tr>\n";
-    print "<tr><td>Upload a set of MARC records:</td><td>";
-    print $input->start_multipart_form();
-    print $input->filefield('uploadmarc');
-    print << "EOF";
-    </td></tr>
-    <tr><td>
-    <input type=hidden name=menu value=$menu>
-    Name this set of MARC records:</td><td><input type=text
-    name=name></td></tr>
-    <tr><td colspan=2 align=center>
-    <input type=submit>
-    </td></tr>
-    </table>
-    </form>
-EOF
+    $template->param(marc => \@marc_loop);
+    print "Content-Type: text/html\n\n", $template->output;
+
 }
 
 sub manual {
@@ -978,104 +486,392 @@ sub manual {
 
 
 sub mainmenu {
-    print << "EOF";
-<h1>Main Menu</h1>
-<ul>
-<li><a href=$ENV{'SCRIPT_NAME'}?menu=z3950>Z39.50 Search</a>
-<li><a href=$ENV{'SCRIPT_NAME'}?menu=uploadmarc>Upload MARC Records</a>
-</ul>
-EOF
-}
+       my $template=gettemplate('marcimport/mainmenu.tmpl');
+       $template->param(SCRIPT_NAME => $ENV{'SCRIPT_NAME'});
+       print "Content-Type: text/html\n\n", $template->output;
+} # sub mainmenu
+
+#---------------------------------------------
+sub AcceptMarcUpload {
+    use strict;
+    my (
+       $dbh,           # DBI handle
+                       # FIXME - Unused argument
+       $input,         # CGI parms
+    )=@_;
+
+    $dbh = C4::Context->dbh;
+
+    my $name=$input->param('name');
+    my $data=$input->param('uploadmarc');
+    my $marcrecord='';
 
-sub skip {
+    ($name) || ($name=$data);
+    if (length($data)>0) {
+       while (<$data>) {
+           $marcrecord.=$_;
+       }
+    }
+    my $q_marcrecord=$dbh->quote($marcrecord);
+    my $q_name=$dbh->quote($name);
+    my $sth=$dbh->prepare("insert into uploadedmarc
+               (marc,name)
+       values ($q_marcrecord, $q_name)");
+    $sth->execute;
+} # sub AcceptMarcUpload
 
-    #opendir(D, "/home/$userid/");
-    #my @dirlist=readdir D;
-    #foreach $file (@dirlist) {
-#      (next) if ($file=~/^\./);
-#      (next) if ($file=~/^nsmail$/);
-#      (next) if ($file=~/^public_html$/);
-#      ($file=~/\.mrc/) || ($filelist.="$file<br>\n");
-#      (next) unless ($file=~/\.mrc$/);
-#      $file=~s/ /\%20/g;
-#      print "<a href=$ENV{'SCRIPT_NAME'}?file=/home/$userid/$file>$file</a><br>\n";
-#    }
+#-------------------------------------------
+sub AcceptBiblioitem {
+    use strict;
+    my (
+       $dbh,                   # FIXME - Unused argument
+       $input,
+    )=@_;
 
+    my $biblionumber=0;
+    my $biblioitemnumber=0;
+    my $sth;
+    my $record;
 
-    #<form action=$ENV{'SCRIPT_NAME'} method=POST enctype=multipart/form-data>
+    $dbh = C4::Context->dbh;
 
-}
-print endmenu();
-print endpage();
+#    my $isbn=$input->param('isbn');
+#    my $issn=$input->param('issn');
+#    my $lccn=$input->param('lccn');
+#    my $q_origisbn=$dbh->quote($input->param('origisbn'));
+#    my $q_origissn=$dbh->quote($input->param('origissn'));
+#    my $q_origlccn=$dbh->quote($input->param('origlccn'));
+#    my $q_origcontrolnumber=$dbh->quote($input->param('origcontrolnumber'));
+    my $title=$input->param('title');
 
-sub parsemarcdata {
-    my $data=shift;
-    my $splitchar=chr(29);
-    my @records;
-    my $record;
-    foreach $record (split(/$splitchar/, $data)) {
-       my $leader=substr($record,0,24);
-       #print "<tr><td>Leader:</td><td>$leader</td></tr>\n";
-       $record=substr($record,24);
-       my $splitchar2=chr(30);
-       my $directory=0;
-       my $tagcounter=0;
-       my %tag;
-       my @record;
-       my $field;
-       foreach $field (split(/$splitchar2/, $record)) {
-           my %field;
-           ($color eq $lc1) ? ($color=$lc2) : ($color=$lc1);
-           unless ($directory) {
-               $directory=$field;
-               my $itemcounter=1;
-               $counter=0;
-               while ($item=substr($directory,0,12)) {
-                   $tag=substr($directory,0,3);
-                   $length=substr($directory,3,4);
-                   $start=substr($directory,7,6);
-                   $directory=substr($directory,12);
-                   $tag{$counter}=$tag;
-                   $counter++;
-               }
-               $directory=1;
-               next;
-           }
-           $tag=$tag{$tagcounter};
-           $tagcounter++;
-           $field{'tag'}=$tag;
-           $splitchar3=chr(31);
-           my @subfields=split(/$splitchar3/, $field);
-           $indicator=$subfields[0];
-           $field{'indicator'}=$indicator;
-           my $firstline=1;
-           unless ($#subfields==0) {
-               my %subfields;
-               for ($i=1; $i<=$#subfields; $i++) {
-                   my $text=$subfields[$i];
-                   my $subfieldcode=substr($text,0,1);
-                   my $subfield=substr($text,1);
-                   if ($subfields{$subfieldcode}) {
-                       my $subfieldlist=$subfields{$subfieldcode};
-                       my @subfieldlist=@$subfieldlist;
-                       if ($#subfieldlist>=0) {
-#                      print "$tag Adding to array $subfieldcode -- $subfield<br>\n";
-                           push (@subfieldlist, $subfield);
-                       } else {
-#                      print "$tag Arraying $subfieldcode -- $subfield<br>\n";
-                           @subfieldlist=($subfields{$subfieldcode}, $subfield);
-                       }
-                       $subfields{$subfieldcode}=\@subfieldlist;
-                   } else {
-                       $subfields{$subfieldcode}=$subfield;
-                   }
-               }
-               $field{'subfields'}=\%subfields;
-           }
-           push (@record, \%field);
+#    my $q_isbn=$dbh->quote((($isbn) || ('NIL')));
+#    my $q_issn=$dbh->quote((($issn) || ('NIL')));
+#    my $q_lccn=$dbh->quote((($lccn) || ('NIL')));
+    my $file= MARC::File::USMARC->indata($input->param('file'));
+    my $numrecord = $input->param('numrecord');
+    if ($numrecord) {
+       for (my $i=1;$i<$numrecord;$i++) {
+           $record=$file->next;
        }
-       push (@records, \@record);
-       $counter++;
+    } else {
+       print STDERR "Error in marcimport.pl/Acceptbiblioitem : numrecord not defined\n";
+       print "Error in marcimport.pl/Acceptbiblioitem : numrecord not defined : contact administrator\n";
     }
-    return @records;
-}
+    my $template=gettemplate('marcimport/AcceptBiblioitem.tmpl');
+
+    my $oldkoha = MARCmarc2koha($dbh,$record);
+    # See if it already exists
+    # FIXME - There's already a $sth in this context.
+    my $sth=$dbh->prepare("select biblionumber,biblioitemnumber
+       from biblioitems
+       where isbn=? or issn=? or lccn=?");
+    $sth->execute($oldkoha->{isbn},$oldkoha->{issn},$oldkoha->{lccn});
+    if ($sth->rows) {
+       # Already exists
+
+       ($biblionumber, $biblioitemnumber) = $sth->fetchrow;
+       $template->param(title => $title);
+       $template->param(biblionumber => $biblionumber);
+       $template->param(biblioitemnumber => $biblioitemnumber);
+       $template->param(BIBLIO_EXISTS => 1);
+
+    } else {
+       # It doesn't exist; add it.
+
+       my $error;
+       my %biblio;
+       my %biblioitem;
+
+       # convert to upper case and split on lines
+       my $subjectheadings=$input->param('subject');
+       my @subjectheadings=split(/[\r\n]+/,$subjectheadings);
+
+       my $additionalauthors=$input->param('additionalauthors');
+       my @additionalauthors=split(/[\r\n]+|\|/,uc($additionalauthors));
+                       # FIXME - WTF are the additional authors
+                       # converted to upper case?
+
+       # Use individual assignments to hash buckets, in case
+       #  any of the input parameters are empty or don't exist
+       $biblio{title}          =$input->param('title');
+       $biblio{author}         =$input->param('author');
+       $biblio{copyright}      =$input->param('copyrightdate');
+       $biblio{seriestitle}    =$input->param('seriestitle');
+       $biblio{notes}          =$input->param('notes');
+       $biblio{abstract}       =$input->param('abstract');
+       $biblio{subtitle}       =$input->param('subtitle');
+
+       $biblioitem{volume}             =$input->param('volume');
+       $biblioitem{number}             =$input->param('number');
+       $biblioitem{itemtype}           =$input->param('itemtype');
+       $biblioitem{isbn}               =$input->param('isbn');
+       $biblioitem{issn}               =$input->param('issn');
+       $biblioitem{dewey}              =$input->param('dewey');
+       $biblioitem{subclass}           =$input->param('subclass');
+       $biblioitem{publicationyear}    =$input->param('publicationyear');
+       $biblioitem{publishercode}      =$input->param('publishercode');
+       $biblioitem{volumedate}         =$input->param('volumedate');
+       $biblioitem{volumeddesc}        =$input->param('volumeddesc');
+       $biblioitem{illus}              =$input->param('illustrator');
+       $biblioitem{pages}              =$input->param('pages');
+       $biblioitem{notes}              =$input->param('notes');
+       $biblioitem{size}               =$input->param('size');
+       $biblioitem{place}              =$input->param('place');
+       $biblioitem{lccn}               =$input->param('lccn');
+       $biblioitem{marc}               =$input->param('marc');
+#      print STDERR $record->as_formatted();
+#      die;
+       ($biblionumber, $biblioitemnumber, $error)=
+           ALLnewbiblio($dbh,$record,\%biblio,\%biblioitem);
+#          (1,2,0);
+#        newcompletebiblioitem($dbh,
+#              \%biblio,
+#              \%biblioitem,
+#              \@subjectheadings,
+#              \@additionalauthors
+#      );
+
+       if ( $error ) {
+           print "<H2>Error adding biblio item</H2> $error\n";
+       } else {
+           $template->param(title => $title);
+           $template->param(biblionumber => $biblionumber);
+           $template->param(biblioitemnumber => $biblioitemnumber);
+           $template->param(BIBLIO_CREATE => 1);
+       } # if error
+    } # if new record
+    my $barcode;
+
+    # Get next barcode, or pick random one if none exist yet
+    $sth=$dbh->prepare("select max(barcode) from items");
+    $sth->execute;
+    ($barcode) = $sth->fetchrow;
+    $barcode++;
+    if ($barcode==1) {
+       $barcode=int(rand()*1000000);
+    }
+    my $branchselect=getkeytableselectoptions(
+               $dbh, 'branches', 'branchcode', 'branchname', 0);
+    $template->param(barcode => $barcode);
+    $template->param(branchselect => $branchselect);
+    print "Content-Type: text/html\n\n", $template->output;
+
+} # sub ItemCopyForm
+
+#---------------------------------------
+# Accept form data to add an item copy
+sub AcceptItemCopy {
+    use strict;
+    my ( $dbh, $input )=@_;
+                       # FIXME - $dbh argument unused
+
+    my $template=gettemplate('marcimport/AcceptItemCopy.tmpl');
+
+    my $error;
+
+    $dbh = C4::Context->dbh;
+
+    my $barcode=$input->param('barcode');
+    my $replacementprice=($input->param('replacementprice') || 0);
+
+    my $sth=$dbh->prepare("select barcode
+       from items
+       where barcode=?");
+    $sth->execute($barcode);
+    if ($sth->rows) {
+       $template->param(BARCODE_EXISTS => 1);
+       $template->param(barcode => $barcode);
+    } else {
+          # Insert new item into database
+           $error=&ALLnewitem($dbh,
+                              { biblionumber=> $input->param('biblionumber'),
+                                biblioitemnumber=> $input->param('biblioitemnumber'),
+                                itemnotes=> $input->param('notes'),
+                                homebranch=> $input->param('homebranch'),
+                                replacementprice=> $replacementprice,
+                                barcode => $barcode
+                                }
+                              );
+            if ( $error ) {
+               $template->param(ITEM_ERROR => 1);
+               $template->param(error => $error);
+           } else {
+               $template->param(ITEM_CREATED => 1);
+               $template->param(barcode => $barcode);
+            } # if error
+    } # if barcode exists
+    print "Content-Type: text/html\n\n", $template->output;
+} # sub AcceptItemCopy
+
+#---------------------------------------
+sub FormatMarcText {
+    use strict;
+
+    # Input
+    my (
+       $fields,        # list ref to MARC fields
+    )=@_;
+    # Return
+    my $marctext;
+
+    my (
+       $color,
+       $field,
+       $tag,
+       $label,
+       $indicator,
+       $subfieldcode,$subfieldvalue,
+       @values, $value
+    );
+    my $debug=0;
+
+    #-----------------------------------------
+
+    $marctext="<table border=0 cellspacing=1>
+       <tr><th colspan=4 background=/images/background-acq.gif>
+               MARC RECORD
+       </th></tr>\n";
+
+    foreach $field ( @$fields ) {
+
+       # Swap colors on alternating lines
+       ($color eq $lc1) ? ($color=$lc2) : ($color=$lc1);
+
+       $tag=$field->{'tag'};
+       $label=taglabel($tag);
+
+       if ( $tag eq 'LDR' ) {
+               $tag='';
+               $label="Leader:";
+       }
+       print "<pre>Format tag=$tag label=$label</pre>\n" if $debug;
+
+       $marctext.="<tr><td bgcolor=$color valign=top>$label</td> \n" .
+               "<td bgcolor=$color valign=top>$tag</td> \n";
+
+       $indicator=$field->{'indicator'};
+       $indicator=~s/ +$//;    # drop trailing blanks
+
+       # Third table column has indicator if it is short.
+       # Fourth column has embedded table of subfields, and indicator
+       #  if it is long (leader or fixed-position fields)
+
+       print "<pre>Format indicator=$indicator" .
+               " length=" . length( $indicator ) .  "</pre>\n" if $debug;
+       if ( length( $indicator <= 3 ) ) {
+           $marctext.="<td bgcolor=$color valign=top><pre>" .
+               "$indicator</pre></td>" .
+               "<td bgcolor=$color valign=top>" ;
+       } else {
+           $marctext.="<td bgcolor=$color valign=top></td>" .
+               "<td bgcolor=$color valign=top>" .
+               "$indicator ";
+       } # if length
+
+       # Subfields
+       if ( $field->{'subfields'} )  {
+           # start another table for subfields
+           $marctext.= "<table border=0 cellspacing=2>\n";
+           foreach $subfieldcode ( sort( keys %{ $field->{'subfields'} }   )) {
+               $subfieldvalue=$field->{'subfields'}->{$subfieldcode};
+               if (ref($subfieldvalue) eq 'ARRAY' ) {
+                   # if it's a pointer to array, get all the values
+                   @values=@{$subfieldvalue};
+               } else {
+                   # otherwise get the one value
+                   @values=( $subfieldvalue );
+               } # if subfield array
+               foreach $value ( @values ) {
+                 $marctext.="<tr><td><strong>$subfieldcode</strong></td>" .
+                   "<td>$value</td></tr>\n";
+               } # foreach value
+           } # foreach subfield
+           $marctext.="</table>\n";
+       } # if subfields
+       # End of indicator and subfields column
+       $marctext.="</td>\n";
+
+       # End of columns
+       $marctext.="</tr>\n";
+
+    } # foreach field
+
+    $marctext.="</table>\n";
+
+    return $marctext;
+
+} # sub FormatMarcText
+
+
+#---------------
+# log cleared, as marcimport is (almost) rewritten from scratch.
+# $Log$
+# Revision 1.30  2003/02/02 07:18:38  acli
+# Moved C4/Charset.pm to C4/Interface/CGI/Output.pm
+#
+# Create output_html_with_http_headers function to contain the "print $query
+# ->header(-type => guesstype...),..." call. This is in preparation for
+# non-HTML output (e.g., text/xml) and charset conversion before output in
+# the future.
+#
+# Created C4/Interface/CGI/Template.pm to hold convenience functions specific
+# to the CGI interface using HTML::Template
+#
+# Modified moremembers.pl to make the "sex" field localizable for languages
+# where M and F doesn't make sense
+#
+# Revision 1.29  2003/01/28 15:28:31  tipaul
+# removing use MARC::Charset
+# Was a buggy test
+#
+# Revision 1.28  2003/01/28 15:00:31  tipaul
+# user can now search in breeding farm with isbn/issn or title. Title/name are stored in breeding farm and showed when a search is done
+#
+# Revision 1.27  2003/01/26 23:21:49  acli
+# Handle non-latin1 charsets
+#
+# Revision 1.26  2003/01/23 12:26:41  tipaul
+# upgrading import in breeding farm (you can now search on ISBN or on title) AND character encoding.
+#
+# Revision 1.25  2003/01/21 08:13:50  tipaul
+# character encoding ISO646 => 8859-1, first draft
+#
+# Revision 1.24  2003/01/14 16:41:17  tipaul
+# bugfix : use gettemplate_and_user instead of gettemplate.
+# fix a blank screen in 1.3.3 in "import in breeding farm"
+#
+# Revision 1.23  2003/01/06 13:06:28  tipaul
+# removing trailing #
+#
+# Revision 1.22  2002/11/12 15:58:43  tipaul
+# road to 1.3.2 :
+# * many bugfixes
+# * adding value_builder : you can map a subfield in the marc_subfield_structure to a sub stored in "value_builder" directory. In this directory you can create screen used to build values with any method. In this commit is a 1st draft of the builder for 100$a unimarc french subfield, which is composed of 35 digits, with 12 differents values (only the 4th first are provided for instance)
+#
+# Revision 1.21  2002/10/22 15:50:23  tipaul
+# road to 1.3.2 : adding a biblio in MARC format.
+# seems to work a few.
+# still to do :
+# * manage html checks (mandatory subfields...)
+# * add list of acceptable values (authorities)
+# * manage ## in MARC format
+# * manage correctly repeatable fields
+# and probably a LOT of bugfixes
+#
+# Revision 1.20  2002/10/16 12:46:19  arensb
+# Added a FIXME comment.
+#
+# Revision 1.19  2002/10/15 10:14:44  tipaul
+# road to 1.3.2. Full rewrite of marcimport.pl.
+# The acquisition system in MARC version will work like this :
+# * marcimport will put marc records into a "breeding farm" table.
+# * when the user want to add a biblio, he enters first the ISBN/ISSN of the biblio. koha searches into breeding farm and if the record exists, it is shown to the user to help him adding the biblio. When the biblio is added, it's deleted from the breeding farm.
+#
+# This commit :
+# * modify acqui.simple home page  (addbooks.pl)
+# * adds import into breeding farm
+#
+# Please note that :
+# * z3950 functionnality is dropped from "marcimport" will be added somewhere else.
+# * templates are in a new acqui.simple sub directory, and the marcimport template directory will become obsolete soon.I think this is more logic
+#