Mercurial > hg-stable
changeset 38316:519b46a8f4d2
hgweb: propagate http headers from ErrorResponse for web interface commands
This makes it possible for e.g. authorization hooks to provide appropriate
headers to make the web browser ask for credentials.
It's done in the same way as the existing code in wireprotoserver.py.
author | Sune Foldager <cryo@cyanite.org> |
---|---|
date | Thu, 14 Jun 2018 13:44:42 +0200 |
parents | 523f64466a05 |
children | 068e774ae29e |
files | mercurial/hgweb/hgweb_mod.py |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hgweb/hgweb_mod.py Thu Jun 14 20:29:27 2018 +0900 +++ b/mercurial/hgweb/hgweb_mod.py Thu Jun 14 13:44:42 2018 +0200 @@ -441,6 +441,8 @@ res.headers['Content-Type'] = ctype return rctx.sendtemplate('error', error=pycompat.bytestr(e)) except ErrorResponse as e: + for k, v in e.headers: + res.headers[k] = v res.status = statusmessage(e.code, pycompat.bytestr(e)) res.headers['Content-Type'] = ctype return rctx.sendtemplate('error', error=pycompat.bytestr(e))