bugfix 214 : can enter stopwords separated by space or ,
[koha.git] / modbib.pl
index 1baf558..06212e9 100755 (executable)
--- a/modbib.pl
+++ b/modbib.pl
@@ -1,47 +1,68 @@
 #!/usr/bin/perl
 
+# $Id$
+
 #script to modify/delete biblios
 #written 8/11/99
 # modified 11/11/99 by chris@katipo.co.nz
+# modified 12/16/2002 by hdl@ifrance.com : templating
+
+
+# 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 C4::Search;
 use CGI;
 use C4::Output;
+use HTML::Template;
+use C4::Auth;
+use C4::Context;
+use C4::Interface::CGI::Output;
 
 my $input = new CGI;
 
-my $submit = $input->param('submit.x');
-my $bibnum = $input->param('bibnum');
-my $data   = &bibdata($bibnum);
-my ($subjectcount, $subject)     = &subject($data->{'biblionumber'});
-my ($subtitlecount, $subtitle)   = &subtitle($data->{'biblionumber'});
-my ($addauthorcount, $addauthor) = &addauthor($data->{'biblionumber'});
+my $bibnum=$input->param('bibnum');
+my $data=&bibdata($bibnum);
+my ($subjectcount, $subject)     = &subject($bibnum);
+my ($subtitlecount, $subtitle)   = &subtitle($bibnum);
+my ($addauthorcount, $addauthor) = &addauthor($bibnum);
 my $sub        = $subject->[0]->{'subject'};
 my $additional = $addauthor->[0]->{'author'};
-my %inputs;
 my $dewey;
-
+my $submit=$input->param('submit.x');
 if ($submit eq '') {
   print $input->redirect("/cgi-bin/koha/delbiblio.pl?biblio=$bibnum");
 } # if
 
-print $input->header;
-# my ($analytictitle)  = &analytic($biblionumber,'t');
-# my ($analyticauthor) = &analytic($biblionumber,'a');
-print startpage();
-print startmenu();
+my ($template, $loggedinuser, $cookie)
+    = get_template_and_user({template_name => "modbib.tmpl",
+                            query => $input,
+                            type => "intranet",
+                            authnotrequired => 0,
+                            flagsrequired => {acquisition => 1},
+                            debug => 1,
+                            });
 
 # have to get all subtitles, subjects and additional authors
-for (my $i = 1; $i < $subjectcount; $i++) {
-  $sub = $sub . "|" . $subject->[$i]->{'subject'};
-} # for
-
-for (my $i = 1; $i < $addauthorcount; $i++) {
-  $additional = $additional . "|" . $addauthor->[$i]->{'author'};
-} # for
+$sub = join("|", map { $_->{'subject'} } @{$subject});
 
+$additional = join("|", map { $_->{'author'} } @{$addauthor});
 
 $dewey = $data->{'dewey'};
 $dewey =~ s/0+$//;
@@ -61,72 +82,21 @@ $dewey = ~ s/\.$//;
 
 $data->{'title'} = &tidyhtml($data->{'title'});
 
-print << "EOF";
-<a href="modwebsites.pl?biblionumber=$data->{'biblionumber'}">Modify Website Links</a>
-<form action="updatebiblio.pl" method="post">
-<input type="hidden" name="biblionumber" value="$data->{'biblionumber'}">
-<input type="hidden" name="biblioitemnumber" value="$data=>{'biblioitemnumber'}">
-<table border="0" cellspacing="0" cellpadding="5">
-<tr valign="top">
-<td>Author</td>
-<td><input type="text" name="author" value="$data->{'author'}"></td>
-</tr>
-<tr valign="top">
-<td>Title</td>
-<td><input type="text" name="title" value="$data->{'title'}"></td>
-</tr>
-<tr valign="top">
-<td>Abstract</td>
-<td><textarea name="abstract" cols="40" rows="4">$data->{'abstract'}</textarea></td>
-</tr>
-<tr valign="top">
-<td>Subject</td>
-<td><textarea name="subject" cols="40" rows="4">$sub</textarea></td>
-</tr>
-<tr valign="top">
-<td>Copyright Date</td>
-<td><input type="text" name="copyrightdate" value="$data->{'copyrightdate'}"></td>
-</tr>
-<tr valign="top">
-<td>Series Title</td>
-<td><input type="text" name="seriestitle" value="$data->{'seriestitle'}"></td>
-</tr>
-<tr valign="top">
-<td>Additional Author</td>
-<td><input type="text" name="additionalauthor" value="$additional"></td>
-</tr>
-<tr valign="top">
-<td>Subtitle</td>
-<td><input type="text" name="subtitle" value="$data->{'subtitle'}"></td>
-</tr>
-<tr valign="top">
-<td>Unititle</td>
-<td><input type="text" name="unititle" value="$data->{'untitle'}"></td>
-</tr>
-<tr valign="top">
-<td>Notes</td>
-<td><textarea name="notes" cols="40" rows="4">$data->{'notes'}</textarea></td>
-</tr>
-<tr valign="top">
-<td>Serial</td>
-<td><input type="text" name="serial" value="$data->{'serial'}"></td>
-</tr>
-<tr valign="top">
-<td>Analytic Author</td>
-<td><input type="text" name="analyticauthor"></td>
-</tr>
-<tr valign="top">
-<td>Analytic Title</td>
-<td><input type="text" name="analytictitle"></td>
-</tr>
-</table>
-<br>
-<input type="submit" name="submit" value="Save Changes">
-</form>
-EOF
-
-print endmenu();
-print endpage();
+$template->param ( biblionumber => $bibnum,
+                                               biblioitemnumber => $data->{'biblioitemnumber'},
+                                               author => $data->{'author'},
+                                               title => $data->{'title'},
+                                               abstract => $data->{'abstract'},
+                                               subject => $sub,
+                                               copyrightdate => $data->{'copyrightdate'},
+                                               seriestitle => $data->{'seriestitle'},
+                                               additionalauthor => $additional,
+                                               subtitle => $data->{'subtitle'},
+                                               untitle => $data->{'untitle'},
+                                               notes => $data->{'notes'},
+                                               serial => $data->{'serial'});
+
+output_html_with_http_headers $input, $cookie, $template->output;
 
 sub tidyhtml {
   my ($inp)=@_;