configitems: register the 'convert.cvsps.cache' config
The convert extensions has code a bit all around, but it seems simpler to use a
central declaration of options at the root first.
--- a/hgext/convert/__init__.py Wed Sep 13 20:39:01 2017 -0700
+++ b/hgext/convert/__init__.py Fri Jun 30 03:32:53 2017 +0200
@@ -28,6 +28,13 @@
# leave the attribute unspecified.
testedwith = 'ships-with-hg-core'
+configtable = {}
+configitem = registrar.configitem(configtable)
+
+configitem('convert', 'cvsps.cache',
+ default=True,
+)
+
# Commands definition was moved elsewhere to ease demandload job.
@command('convert',
--- a/hgext/convert/cvs.py Wed Sep 13 20:39:01 2017 -0700
+++ b/hgext/convert/cvs.py Fri Jun 30 03:32:53 2017 +0200
@@ -76,7 +76,7 @@
id = None
cache = 'update'
- if not self.ui.configbool('convert', 'cvsps.cache', True):
+ if not self.ui.configbool('convert', 'cvsps.cache'):
cache = None
db = cvsps.createlog(self.ui, cache=cache)
db = cvsps.createchangeset(self.ui, db,