[PATCH 01 of 10] configitems: register the 'bugzilla.apikey' config

Boris Feld boris.feld at octobus.net
Fri Jul 7 18:57:36 UTC 2017


# HG changeset patch
# User Octobus <contact at octobus.net>
# Date 1499414602 -7200
#      Fri Jul 07 10:03:22 2017 +0200
# Node ID ff78bedcf36af5517172a74a19f2a223c0128c4f
# Parent  89796a25d4bb91fb418ad3e70faad2c586902ffb
# EXP-Topic config.register.bugzilla
configitems: register the 'bugzilla.apikey' config

diff -r 89796a25d4bb -r ff78bedcf36a hgext/bugzilla.py
--- a/hgext/bugzilla.py	Mon Jul 03 11:22:00 2017 +0200
+++ b/hgext/bugzilla.py	Fri Jul 07 10:03:22 2017 +0200
@@ -303,6 +303,7 @@
     cmdutil,
     error,
     mail,
+    registrar,
     url,
     util,
 )
@@ -315,6 +316,13 @@
 # leave the attribute unspecified.
 testedwith = 'ships-with-hg-core'
 
+configtable = {}
+configitem = registrar.configitem(configtable)
+
+configitem('bugzilla', 'apikey',
+    default='',
+)
+
 class bzaccess(object):
     '''Base class for access to Bugzilla.'''
 
@@ -800,7 +808,7 @@
         bz = self.ui.config('bugzilla', 'bzurl',
                             'http://localhost/bugzilla/')
         self.bzroot = '/'.join([bz, 'rest'])
-        self.apikey = self.ui.config('bugzilla', 'apikey', '')
+        self.apikey = self.ui.config('bugzilla', 'apikey')
         self.user = self.ui.config('bugzilla', 'user', 'bugs')
         self.passwd = self.ui.config('bugzilla', 'password')
         self.fixstatus = self.ui.config('bugzilla', 'fixstatus', 'RESOLVED')


More information about the Mercurial-devel mailing list