Road to 1.9.1 :
[koha_fer] / updatebiblio.pl
index 8ba684e..b581de6 100755 (executable)
@@ -1,10 +1,32 @@
 #!/usr/bin/perl
 
-use C4::Database;
-use CGI;
+
+# 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;
+use CGI;
 use C4::Acquisitions;
 use C4::Output;
+use HTML::Template;
+
+# FIXME - This script uses a bunch of functions that appear in both
+# C4::Acquisitions and C4::Biblio. But I gather that the latter are
+# preferred. So should this script "use C4::Biblio;" ?
 
 my $input       = new CGI;
 my $bibnum      = checkinp($input->param('biblionumber'));
@@ -45,31 +67,31 @@ for (my $i = 0; $i < $count; $i++) {
 $error = &modsubject($bibnum,$force,@sub);
 
 if ($error ne ''){
-    print $input->header;
-    print startpage();
-    print startmenu();
-    print $error;
-    @subs = split('\n',$error);
-    print "<p> Click submit to force the subject";
-    @names = $input->param;
-    $count = @names;
-    for (my $i = 0; $i < $count; $i++) {
+       my $template = gettemplate("updatebiblio.tmpl");
+
+    my @subs=split('\n',$error);
+    my @names=$input->param;
+    my $count=@names;
+       my @dataloop;
+    for (my $i=0;$i<$count;$i++) {
        if ($names[$i] ne 'Force') {
-           my $value = $input->param("$names[$i]");
-           $data{$names[$i]} = "hidden\t$value\t$i";
+               my %line;
+           $line{'value'}=$input->param("$names[$i]");
+               $line{'name'}=$names[$i];
+               push(@dataloop, \%line);
        } # if
     } # for
-    $data{"Force"} = "hidden\t$subs[0]\t$count";
-    print mkform3('updatebiblio.pl', %data);
-    print endmenu();
-    print endpage();
+    template->param(substring =>$subs[0]);
+    template->param(error =>$error);
+    template->param(dataloop => \@dataloop);
+       print "Content-Type: text/html\n\n", $template->output;
 } else {
     print $input->redirect("detail.pl?type=intra&bib=$bibnum");
 } # else
 
 sub checkinp{
   my ($inp)=@_;
-  $inp =~ s/\'/\\\'/g;
-  $inp =~ s/\"/\\\"/g;
+  $inp=~ s/\'/\\\'/g;
+  $inp=~ s/\"/\\\"/g;
   return($inp);
 }