rel_3_0 moved to HEAD (introducing new files)
[koha.git] / cataloguing / savebiblio.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use CGI;
21 use strict;
22 use C4::Biblio;
23
24 my $input  = new CGI;
25 my $biblio = {
26     title    => $input->param('title'),
27     subtitle => $input->param('subtitle') ? $input->param('subtitle') : "",
28     author   => $input->param('author') ? $input->param('author') : "",
29     seriestitle => $input->param('seriestitle') ? $input->param('seriestitle')
30     : "",
31     copyrightdate => $input->param('copyrightdate')
32     ? $input->param('copyrightdate')
33     : "",
34     abstract => $input->param('abstract') ? $input->param('abstract') : "",
35     notes    => $input->param('notes')    ? $input->param('notes')    : ""
36 };    # my $biblio
37
38 my $subjectheadings = $input->param('subjectheadings');
39 # Different O.S.es use different codes to end lines. This ensures that all cases
40 # are allowed for.
41 my @subjects = split ( /\n|\r|\n\r|\r\n/, $subjectheadings );
42 my $biblionumber;
43 my $aauthors = $input->param('additionalauthors');
44 my @authors  = split ( /\n|\r|\n\r|\r\n/, $aauthors );
45 my $force    = $input->param('force');
46
47 if ( !$biblio->{'title'} ) {
48     print $input->redirect('addbiblio-nomarc.pl?error=notitle');
49 }
50 else {
51     $biblionumber = &newbiblio($biblio);
52     print $input->redirect("additem-nomarc.pl?biblionumber=$biblionumber");
53 }    # else