[PATCH 1 of 2] config: rename allowpull to allow-pull

David Demelier markand at malikania.fr
Fri Nov 10 14:09:21 UTC 2017


# HG changeset patch
# User David Demelier <markand at malikania.fr>
# Date 1508406199 -7200
#      Thu Oct 19 11:43:19 2017 +0200
# Node ID 4157480049dabdf7bd54160c909baf13ea8d5107
# Parent  407ec7f3ff02ae357074104fe892adc2b12b42a7
config: rename allowpull to allow-pull

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

diff -r 407ec7f3ff02 -r 4157480049da mercurial/configitems.py
--- a/mercurial/configitems.py	Tue Nov 07 13:48:33 2017 -0800
+++ b/mercurial/configitems.py	Thu Oct 19 11:43:19 2017 +0200
@@ -1006,7 +1006,8 @@
 coreconfigitem('web', 'allowgz',
     default=False,
 )
-coreconfigitem('web', 'allowpull',
+coreconfigitem('web', 'allow-pull',
+    alias=[('web', 'allowpull')],
     default=True,
 )
 coreconfigitem('web', 'allow_push',
diff -r 407ec7f3ff02 -r 4157480049da mercurial/help/config.txt
--- a/mercurial/help/config.txt	Tue Nov 07 13:48:33 2017 -0800
+++ b/mercurial/help/config.txt	Thu Oct 19 11:43:19 2017 +0200
@@ -2287,7 +2287,7 @@
     revisions.
     (default: False)
 
-``allowpull``
+``allow-pull``
     Whether to allow pulling from the repository. (default: True)
 
 ``allow_push``
diff -r 407ec7f3ff02 -r 4157480049da mercurial/hgweb/hgweb_mod.py
--- a/mercurial/hgweb/hgweb_mod.py	Tue Nov 07 13:48:33 2017 -0800
+++ b/mercurial/hgweb/hgweb_mod.py	Thu Oct 19 11:43:19 2017 +0200
@@ -114,7 +114,7 @@
         self.stripecount = self.configint('web', 'stripes')
         self.maxshortchanges = self.configint('web', 'maxshortchanges')
         self.maxfiles = self.configint('web', 'maxfiles')
-        self.allowpull = self.configbool('web', 'allowpull')
+        self.allowpull = self.configbool('web', 'allow-pull')
 
         # we use untrusted=False to prevent a repo owner from using
         # web.templates in .hg/hgrc to get access to any file readable


More information about the Mercurial-devel mailing list