# HG changeset patch # User Boris Feld # Date 1498787135 -7200 # Node ID 4a192d70502e2417226fffc258633730605aa123 # Parent b0a567017647755c4b85d194d0665b67ca601680 configitems: register the 'web.baseurl' config diff -r b0a567017647 -r 4a192d70502e mercurial/configitems.py --- a/mercurial/configitems.py Fri Jun 30 03:45:34 2017 +0200 +++ b/mercurial/configitems.py Fri Jun 30 03:45:35 2017 +0200 @@ -594,6 +594,9 @@ coreconfigitem('web', 'allow_read', default=list, ) +coreconfigitem('web', 'baseurl', + default=None, +) coreconfigitem('worker', 'backgroundclose', default=dynamicdefault, )