Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/common.py @ 35061:6ef744a7df65
config: rename allow_push to allow-push
As part of ConfigConsolidationPlan [1], rename the option according to
the new UI guidelines [2] and add an alias for backward compatibility.
[1]: https://www.mercurial-scm.org/wiki/ConfigConsolidationPlan
[2]: https://www.mercurial-scm.org/wiki/UIGuideline#adding_new_options
author | David Demelier <markand@malikania.fr> |
---|---|
date | Thu, 19 Oct 2017 11:46:41 +0200 |
parents | baee5512f262 |
children | d18c0cf5f3ab |
line wrap: on
line diff
--- a/mercurial/hgweb/common.py Thu Oct 19 11:43:19 2017 +0200 +++ b/mercurial/hgweb/common.py Thu Oct 19 11:46:41 2017 +0200 @@ -75,7 +75,7 @@ if deny and (not user or ismember(hgweb.repo.ui, user, deny)): raise ErrorResponse(HTTP_UNAUTHORIZED, 'push not authorized') - allow = hgweb.configlist('web', 'allow_push') + allow = hgweb.configlist('web', 'allow-push') if not (allow and ismember(hgweb.repo.ui, user, allow)): raise ErrorResponse(HTTP_UNAUTHORIZED, 'push not authorized')