configitems: register the 'web.collapse' config
authorBoris Feld <boris.feld@octobus.net>
Fri, 30 Jun 2017 03:45:38 +0200
changeset 34234 f6d25ffc8b7f
parent 34233 25b24a3e5a9e
child 34235 147104631eac
configitems: register the 'web.collapse' config
mercurial/configitems.py
mercurial/hgweb/hgwebdir_mod.py
--- a/mercurial/configitems.py	Fri Jun 30 03:45:37 2017 +0200
+++ b/mercurial/configitems.py	Fri Jun 30 03:45:38 2017 +0200
@@ -603,6 +603,9 @@
 coreconfigitem('web', 'certificate',
     default=None,
 )
+coreconfigitem('web', 'collapse',
+    default=False,
+)
 coreconfigitem('worker', 'backgroundclose',
     default=dynamicdefault,
 )
--- a/mercurial/hgweb/hgwebdir_mod.py	Fri Jun 30 03:45:37 2017 +0200
+++ b/mercurial/hgweb/hgwebdir_mod.py	Fri Jun 30 03:45:38 2017 +0200
@@ -325,7 +325,7 @@
         def rawentries(subdir="", **map):
 
             descend = self.ui.configbool('web', 'descend', True)
-            collapse = self.ui.configbool('web', 'collapse', False)
+            collapse = self.ui.configbool('web', 'collapse')
             seenrepos = set()
             seendirs = set()
             for name, path in self.repos: