Handle meta tags for non-latin1 charsets
[koha.git] / acqui.simple / isbnsearch.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 strict;
22 use CGI;
23 use C4::Auth;
24 use C4::Catalogue;
25 use C4::Biblio;
26 use C4::Search;
27 use C4::Output;
28 use C4::Charset;
29 use HTML::Template;
30
31 my $input      = new CGI;
32 my $isbn       = $input->param('isbn');
33 my $offset     = $input->param('offset');
34 my $num        = $input->param('num');
35 my $showoffset = $offset + 1;
36 my $total;
37 my $count;
38 my @results;
39 my ($template, $loggedinuser, $cookie)
40     = get_template_and_user({template_name => "acqui.simple/isbnsearch.tmpl",
41                              query => $input,
42                              type => "intranet",
43                              authnotrequired => 0,
44                              flagsrequired => {catalogue => 1},
45                              debug => 1,
46                              });
47 if (! $isbn) {
48         print $input->redirect('addbooks.pl');
49 } else {
50         if (! $offset) {
51                 $offset     = 0;
52                 $showoffset = 1;
53         };
54         if (! $num) { $num = 10 };
55         ($count, @results) = isbnsearch($isbn);
56
57         if ($count < ($offset + $num)) {
58                 $total = $count;
59         } else {
60                 $total = $offset + $num;
61         } # else
62
63         my @loop_data = ();
64         my $toggle;
65         for (my $i = $offset; $i < $total; $i++) {
66                 if ($i % 2) {
67                         $toggle="#ffffcc";
68                 } else {
69                         $toggle="white";
70                 }
71                 my %row_data;  # get a fresh hash for the row data
72                 $row_data{toggle} = $toggle;
73                 $row_data{biblionumber} =$results[$i]->{'biblionumber'};
74                 $row_data{title} = $results[$i]->{'title'};
75                 $row_data{author} = $results[$i]->{'author'};
76                 $row_data{copyrightdate} = $results[$i]->{'copyrightdate'};
77                 push(@loop_data, \%row_data);
78         }
79         my @loop_links = ();
80         for (my $i = 0; ($i * $num) < $count; $i++) {
81                 my %row_data;
82                 $row_data{newoffset} = $i * $num;
83                 $row_data{shownumber} = $i + 1;
84                 $row_data{num} = $num;
85                 push (@loop_links,\%row_data);
86         } # for
87         $template->param(isbn => $isbn,
88                                                         showoffset => $showoffset,
89                                                         total => $total,
90                                                         offset => $offset,
91                                                         loop => \@loop_data,
92                                                         loop_links => \@loop_links);
93
94         print $input->header(
95             -type => guesstype($template->output),
96             -cookie => $cookie
97         ),$template->output;
98 } # else