MARC import: part 3 of large file support
[koha.git] / tools / pdfViewer.pl
1 #!/usr/bin/perl
2
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
7
8 # This file is part of Koha.
9 #
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.
14 #
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.
18 #
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
22
23 require Exporter;
24
25 use strict;
26 use C4::Context;
27 use CGI;
28
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;
39 }
40 print $cgi->end_html();