# HG changeset patch # User Gregory Szorc # Date 1440282736 25200 # Node ID 16d54bbdbf8916be5ad065d15b77bedef0f07a1e # Parent 952e0564b46e112bd57d52f7f78575a56089f800 hgweb: remove hgweb.configbool It is redundant with requestcontext.configbool. diff -r 952e0564b46e -r 16d54bbdbf89 mercurial/hgweb/hgweb_mod.py --- a/mercurial/hgweb/hgweb_mod.py Sat Aug 22 15:30:39 2015 -0700 +++ b/mercurial/hgweb/hgweb_mod.py Sat Aug 22 15:32:16 2015 -0700 @@ -171,10 +171,6 @@ return self.repo.ui.config(section, name, default, untrusted=untrusted) - def configbool(self, section, name, default=False, untrusted=True): - return self.repo.ui.configbool(section, name, default, - untrusted=untrusted) - def _getview(self, repo): """The 'web.view' config controls changeset filter to hgweb. Possible values are ``served``, ``visible`` and ``all``. Default is ``served``. @@ -342,7 +338,7 @@ req.form['cmd'] = [tmpl.cache['default']] cmd = req.form['cmd'][0] - if self.configbool('web', 'cache', True): + if rctx.configbool('web', 'cache', True): caching(self, req) # sets ETag header or raises NOT_MODIFIED if cmd not in webcommands.__all__: msg = 'no such method: %s' % cmd