# HG changeset patch # User Gregory Szorc # Date 1520806116 25200 # Node ID 006165d4d7e28826aaabfa38f510652443ee2e04 # Parent 219b23359f4c5117e84de771cd13331b24c25f6d hgweb: construct {url} with req.apppath This is how the hgweb WSGI application does it. Let's make the behavior consistent. Differential Revision: https://phab.mercurial-scm.org/D2823 diff -r 219b23359f4c -r 006165d4d7e2 mercurial/hgweb/hgwebdir_mod.py --- a/mercurial/hgweb/hgwebdir_mod.py Sun Mar 11 15:33:56 2018 -0700 +++ b/mercurial/hgweb/hgwebdir_mod.py Sun Mar 11 15:08:36 2018 -0700 @@ -496,10 +496,6 @@ def config(section, name, default=uimod._unset, untrusted=True): return self.ui.config(section, name, default, untrusted) - url = wsgireq.env.get('SCRIPT_NAME', '') - if not url.endswith('/'): - url += '/' - vars = {} styles, (style, mapfile) = hgweb_mod.getstyle(wsgireq.req, config, self.templatepath) @@ -517,7 +513,7 @@ defaults = { "encoding": encoding.encoding, "motd": motd, - "url": url, + "url": wsgireq.req.apppath + '/', "logourl": logourl, "logoimg": logoimg, "staticurl": staticurl,