Bug 3746 - add to OPACViewOthersSuggestions description
[koha.git] / tools / pdfViewer.pl
blob3ca61a815f25566061686ca89bfcffa7bd662ded
1 #!/usr/bin/perl
3 # script to show a PDF file.
4 # written 07/04
5 # by Veleda Matias - matias_veleda@hotmail.com - Physics Library UNLP Argentina and
6 # CastaƱeda Sebastian - seba3c@yahoo.com.ar - Physics Library UNLP Argentina and
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License along with
20 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
21 # Suite 330, Boston, MA 02111-1307 USA
25 use strict;
26 use C4::Context;
27 use CGI;
29 # This script take a pdf filename as a parameter and output it to the browser.
30 my $cgi = new CGI;
31 my $filename = "barcodes.pdf";
32 my $tmpFileName = $cgi->param('tmpFileName');
33 print "Content-Disposition: attachment; filename = $filename\n\n";
34 print $cgi->header(-type => 'application/pdf'),
35 $cgi->start_html(-title=>"Codify to PDF");
36 open FH, "<$tmpFileName";
37 while (<FH>) {
38 print;
40 close FH;
41 print $cgi->end_html();