From 6e1a54c654d31f7686358882a10ad12b0a26e76c Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 5 Dec 2007 00:52:16 +0000 Subject: [PATCH] i hope this allows IE to download excel over https? --- httemplate/search/elements/search.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/httemplate/search/elements/search.html b/httemplate/search/elements/search.html index 7b1a515df..919125ece 100644 --- a/httemplate/search/elements/search.html +++ b/httemplate/search/elements/search.html @@ -156,8 +156,15 @@ Example: % } elsif ( $type =~ /\.xls$/ ) { % % #http_header('Content-Type' => 'application/excel' ); #eww -% http_header('Content-Type' => 'application/vnd.ms-excel' ); % #http_header('Content-Type' => 'application/msexcel' ); #alas +% #http_header('Content-Type' => 'application/x-msexcel' ); #? +% +% #http://support.microsoft.com/kb/199841 +% http_header('Content-Type' => 'application/vnd.ms-excel' ); +% +% #http://support.microsoft.com/kb/812935 +% #http://support.microsoft.com/kb/323308 +% $HTML::Mason::Commands::r->headers_out->{'Cache-control'} = 'max-age=0'; % % my $data = ''; % my $XLS = new IO::Scalar \$data; -- 2.20.1