changeset 2103:caccf539c9a4

Use application/octet-stream as the content-type of unknown binary files
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Thu, 20 Apr 2006 15:42:02 +0200
parents c62112815801
children f1085d34d20d
files mercurial/hgweb.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hgweb.py	Wed Apr 19 22:18:03 2006 -0700
+++ b/mercurial/hgweb.py	Thu Apr 20 15:42:02 2006 +0200
@@ -419,7 +419,8 @@
         mt = mimetypes.guess_type(f)[0]
         rawtext = text
         if util.binary(text):
-            text = "(binary:%s)" % (mt or 'data')
+            mt = mt or 'application/octet-stream'
+            text = "(binary:%s)" % mt
         mt = mt or 'text/plain'
 
         def lines():