blob: 0dc132eced7aae58d7d156fd08836270b6e0e1a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Xerl (c) 2005-2011,2013 Dipl.-Inform. (FH) Paul C. Buetow
#
# E-Mail: xerl@dev.buetow.org WWW: http://xerl.buetow.org
#
# This is free software, you may use it and distribute it under the same
# terms as Perl itself.
package Xerl::Page::Document;
use strict;
use warnings;
use Xerl::Base;
use Xerl::Main::Global;
use Xerl::Page::Configure;
use Xerl::Tools::FileIO;
sub parse($) {
my Xerl::Page::Document $self = $_[0];
my Xerl::Page::Configure $config = $self->get_config();
return undef unless $config->document_exists();
my $document = $config->get_document();
my ($filename) = $document =~ m#([^/]+)$#;
my ($postfix) = $document =~ /\.(.+)$/;
my $path;
print 'Content-Type: ';
print $config->getval( 'ctype.' . lc($postfix) ), "\n";
print "Content-Disposition: attachment; filename=\"$filename\"\n\n";
$path = $config->get_hostpath() . "/htdocs/$document";
unless ( -f $path ) {
$path =
$config->get_hostroot()
. $config->get_defaulthost()
. "/htdocs/$document";
}
my Xerl::Tools::FileIO $io = Xerl::Tools::FileIO->new( path => $path );
if ( -1 == $io->fslurp() ) {
$config->set_finish_request(1);
}
else {
$io->print();
}
return undef;
}
1;
|