mercurial/hgweb/hgweb_mod.py
changeset 37511 356e61e82c2a
parent 37509 cb7b275c0cd0
child 37512 aac97d043e6d
--- a/mercurial/hgweb/hgweb_mod.py	Sun Apr 01 22:20:44 2018 +0900
+++ b/mercurial/hgweb/hgweb_mod.py	Sun Apr 01 22:32:34 2018 +0900
@@ -44,12 +44,6 @@
     wsgicgi,
 )
 
-archivespecs = util.sortdict((
-    ('zip', ('application/zip', 'zip', '.zip', None)),
-    ('gz', ('application/x-gzip', 'tgz', '.tar.gz', None)),
-    ('bz2', ('application/x-bzip2', 'tbz2', '.tar.bz2', None)),
-))
-
 def getstyle(req, configfn, templatepath):
     styles = (
         req.qsparams.get('style', None),
@@ -96,7 +90,7 @@
         self.req = req
         self.res = res
 
-        self.archivespecs = archivespecs
+        self.archivespecs = webutil.archivespecs
 
         self.maxchanges = self.configint('web', 'maxchanges')
         self.stripecount = self.configint('web', 'stripes')