summaryrefslogtreecommitdiff
path: root/httemplate/search/elements
diff options
context:
space:
mode:
authorivan <ivan>2007-12-05 00:45:44 +0000
committerivan <ivan>2007-12-05 00:45:44 +0000
commit686be6f8b154829a44c325ea8ee5fba19aef9902 (patch)
tree981045afdc882f637fe9c3e060981f7300a26310 /httemplate/search/elements
parent86b1b489a4ed2f9bc0cba6cafeab0d6eca5584dc (diff)
i hope this allows IE to download excel over https?
Diffstat (limited to 'httemplate/search/elements')
-rw-r--r--httemplate/search/elements/search.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/httemplate/search/elements/search.html b/httemplate/search/elements/search.html
index 5649c8579..f3103886b 100644
--- a/httemplate/search/elements/search.html
+++ b/httemplate/search/elements/search.html
@@ -156,9 +156,16 @@ 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;
% my $workbook = Spreadsheet::WriteExcel->new($XLS)