Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/hgweb_mod.py @ 2361:d3adb454c5a9
Fix automatic decompression of tarballs with Firefox.
The encoding was set to gzip/bzip2, so Firefox (correctly) assumed, that this
has to be "decoded" (i.e. decompressed).
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Thu, 01 Jun 2006 18:36:32 +0200 |
parents | a392eaa81f29 |
children | d351a3be3371 |
line wrap: on
line diff
--- a/mercurial/hgweb/hgweb_mod.py Thu Jun 01 09:14:27 2006 -0500 +++ b/mercurial/hgweb/hgweb_mod.py Thu Jun 01 18:36:32 2006 +0200 @@ -624,8 +624,8 @@ diff=diff) archive_specs = { - 'bz2': ('application/x-tar', 'tbz2', '.tar.bz2', 'x-bzip2'), - 'gz': ('application/x-tar', 'tgz', '.tar.gz', 'x-gzip'), + 'bz2': ('application/x-tar', 'tbz2', '.tar.bz2', None), + 'gz': ('application/x-tar', 'tgz', '.tar.gz', None), 'zip': ('application/zip', 'zip', '.zip', None), }