configitems: register the 'web.descend' config
authorBoris Feld <boris.feld@octobus.net>
Fri, 30 Jun 2017 03:45:42 +0200
changeset 34237 131f8cd2c2b4
parent 34236 9becd05476b8
child 34238 a6c18628dff1
configitems: register the 'web.descend' config
mercurial/configitems.py
mercurial/hgweb/hgwebdir_mod.py
--- a/mercurial/configitems.py	Fri Jun 30 03:45:41 2017 +0200
+++ b/mercurial/configitems.py	Fri Jun 30 03:45:42 2017 +0200
@@ -612,6 +612,9 @@
 coreconfigitem('web', 'deny_read',
     default=list,
 )
+coreconfigitem('web', 'descend',
+    default=True,
+)
 coreconfigitem('worker', 'backgroundclose',
     default=dynamicdefault,
 )
--- a/mercurial/hgweb/hgwebdir_mod.py	Fri Jun 30 03:45:41 2017 +0200
+++ b/mercurial/hgweb/hgwebdir_mod.py	Fri Jun 30 03:45:42 2017 +0200
@@ -324,7 +324,7 @@
 
         def rawentries(subdir="", **map):
 
-            descend = self.ui.configbool('web', 'descend', True)
+            descend = self.ui.configbool('web', 'descend')
             collapse = self.ui.configbool('web', 'collapse')
             seenrepos = set()
             seendirs = set()