Added POD.
[koha.git] / updatebiblio.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use C4::Database;
22 use CGI;
23 use strict;
24 use C4::Acquisitions;
25 use C4::Output;
26
27 my $input       = new CGI;
28 my $bibnum      = checkinp($input->param('biblionumber'));
29 my $biblio = {
30     biblionumber => $bibnum,
31     title        => $input->param('title')?$input->param('title'):"",
32     author       => $input->param('author')?$input->param('author'):"",
33     abstract     => $input->param('abstract')?$input->param('abstract'):"",
34     copyright    => $input->param('copyrightdate')?$input->param('copyrightdate'):"",
35     seriestitle  => $input->param('seriestitle')?$input->param('seriestitle'):"",
36     serial       => $input->param('serial')?$input->param('serial'):"",
37     unititle     => $input->param('unititle')?$input->param('unititle'):"",
38     notes        => $input->param('notes')?$input->param('notes'):"",
39 }; # my $biblio
40 my $subtitle    = checkinp($input->param('subtitle'));
41 my $subject     = checkinp($input->param('subject'));
42 my $addauthor   = checkinp($input->param('additionalauthor'));
43 my $force       = $input->param('Force');
44 my %data;
45 my @sub;
46 my @subs;
47 my @names;
48 my $count;
49 my $error;
50
51 &modbiblio($biblio);
52 &modsubtitle($bibnum, $subtitle);
53 &modaddauthor($bibnum, $addauthor);
54
55 $subject = uc($subject);
56 @sub     = split(/\|/, $subject);
57 $count   = @sub;
58
59 for (my $i = 0; $i < $count; $i++) {
60     $sub[$i] =~ s/ +$//;
61 } # for
62
63 $error = &modsubject($bibnum,$force,@sub);
64
65 if ($error ne ''){
66     print $input->header;
67     print startpage();
68     print startmenu('catalogue');
69     print $error;
70     my @subs=split('\n',$error);
71     print "<p> Click submit to force the subject";
72     my @names=$input->param;
73     my %data;
74     my $count=@names;
75     for (my $i=0;$i<$count;$i++) {
76         if ($names[$i] ne 'Force') {
77             my $value=$input->param("$names[$i]");
78             $data{$names[$i]}="hidden\t$value\t$i";
79         } # if
80     } # for
81     $data{"Force"}="hidden\t$subs[0]\t$count";
82     print mkform3('updatebiblio.pl',%data);
83     print endmenu();
84     print endpage();
85 } else {
86     print $input->redirect("detail.pl?type=intra&bib=$bibnum");
87 } # else
88
89 sub checkinp{
90   my ($inp)=@_;
91   $inp=~ s/\'/\\\'/g;
92   $inp=~ s/\"/\\\"/g;
93   return($inp);
94 }