D2828: hgweb: pass modern request type into templater()
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Mon Mar 12 21:16:52 UTC 2018
indygreg created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.
REVISION SUMMARY
Only a handful of consumers of wsgirequest remaining in this
file...
REPOSITORY
rHG Mercurial
REVISION DETAIL
https://phab.mercurial-scm.org/D2828
AFFECTED FILES
mercurial/hgweb/hgwebdir_mod.py
CHANGE DETAILS
diff --git a/mercurial/hgweb/hgwebdir_mod.py b/mercurial/hgweb/hgwebdir_mod.py
--- a/mercurial/hgweb/hgwebdir_mod.py
+++ b/mercurial/hgweb/hgwebdir_mod.py
@@ -369,7 +369,7 @@
wsgireq.headers.append(('Content-Security-Policy', csp))
virtual = req.dispatchpath.strip('/')
- tmpl = self.templater(wsgireq, nonce)
+ tmpl = self.templater(req, nonce)
ctype = tmpl('mimetype', encoding=encoding.encoding)
ctype = templater.stringify(ctype)
@@ -485,7 +485,7 @@
return res.sendresponse()
- def templater(self, wsgireq, nonce):
+ def templater(self, req, nonce):
def motd(**map):
if self.motd is not None:
@@ -497,23 +497,23 @@
return self.ui.config(section, name, default, untrusted)
vars = {}
- styles, (style, mapfile) = hgweb_mod.getstyle(wsgireq.req, config,
+ styles, (style, mapfile) = hgweb_mod.getstyle(req, config,
self.templatepath)
if style == styles[0]:
vars['style'] = style
sessionvars = webutil.sessionvars(vars, r'?')
logourl = config('web', 'logourl')
logoimg = config('web', 'logoimg')
staticurl = (config('web', 'staticurl')
- or wsgireq.req.apppath + '/static/')
+ or req.apppath + '/static/')
if not staticurl.endswith('/'):
staticurl += '/'
defaults = {
"encoding": encoding.encoding,
"motd": motd,
- "url": wsgireq.req.apppath + '/',
+ "url": req.apppath + '/',
"logourl": logourl,
"logoimg": logoimg,
"staticurl": staticurl,
To: indygreg, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list