]> git.deb.at Git - deb/packages.git/blobdiff - lib/Packages/DoIndex.pm
Packages::DoDownload: Don't try to numerically compare a localized number
[deb/packages.git] / lib / Packages / DoIndex.pm
index 0ed874a24ce31a4dcf5865a3036c0cd25330fe58..8f96fdf8b20ef6f79a4353480bfca06c3ebc3f9d 100644 (file)
@@ -21,17 +21,11 @@ sub do_allpackages {
     return send_file( 'allpackages', @_ );
 }
 
-# no real need for more flexibility here, I think...
-my %mime_types = (
-                 txt => 'text/plain',
-                 'txt.gz' => 'text/plain',
-                 html => 'text/html',
-                 );
 my %encoding = (
                'txt.gz' => 'x-gzip',
                );
 sub send_file {
-    my ($file, $params, $opts, $html_header) = @_;
+    my ($file, $params, $opts) = @_;
 
     if ($params->{errors}{suite}) {
        fatal_error( _g( "suite not valid or not specified" ) );
@@ -59,7 +53,7 @@ sub send_file {
        if (open( INDEX, '<', "$wwwdir/$path" )) {
            my %headers;
            $headers{'-charset'} = get_charset( $opts->{lang} );
-           $headers{'-type'} = $mime_types{$opts->{format}} || 'text/plain';
+           $headers{'-type'} = get_mime( $opts->{format}, 'text/plain' );
            $headers{'-content-encoding'} = $encoding{$opts->{format}} if exists $encoding{$opts->{format}};
            print header( %headers );