# HG changeset patch # User Alexis S. L. Carvalho # Date 1161883545 -7200 # Node ID c3043ebe40a02af30db7fdebaa7513b96f39ce11 # Parent 881064004fd07a6a4957c73a4ab9037ffc96c112 use untrusted settings in hgwebdir diff -r 881064004fd0 -r c3043ebe40a0 mercurial/hgweb/hgwebdir_mod.py --- a/mercurial/hgweb/hgwebdir_mod.py Thu Oct 26 19:25:45 2006 +0200 +++ b/mercurial/hgweb/hgwebdir_mod.py Thu Oct 26 19:25:45 2006 +0200 @@ -87,9 +87,10 @@ "url": url}) def archivelist(ui, nodeid, url): - allowed = ui.configlist("web", "allow_archive") + allowed = ui.configlist("web", "allow_archive", untrusted=True) for i in [('zip', '.zip'), ('gz', '.tar.gz'), ('bz2', '.tar.bz2')]: - if i[0] in allowed or ui.configbool("web", "allow" + i[0]): + if i[0] in allowed or ui.configbool("web", "allow" + i[0], + untrusted=True): yield {"type" : i[0], "extension": i[1], "node": nodeid, "url": url} @@ -114,7 +115,8 @@ u.readconfig(os.path.join(path, '.hg', 'hgrc')) except IOError: pass - get = u.config + def get(section, name, default=None): + return u.config(section, name, default, untrusted=True) url = ('/'.join([req.env["REQUEST_URI"].split('?')[0], name]) .replace("//", "/")) + '/'