Mercurial > hg-stable
changeset 8182:b97abc7c1135
showconfig: show source file and line with --debug
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 26 Apr 2009 16:50:43 -0500 |
parents | 03d93882fc93 |
children | 2858ab754995 |
files | mercurial/commands.py mercurial/ui.py |
diffstat | 2 files changed, 9 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Sun Apr 26 16:50:43 2009 -0500 +++ b/mercurial/commands.py Sun Apr 26 16:50:43 2009 -0500 @@ -797,10 +797,16 @@ if values: for v in values: if v == section: + ui.debug('%s: ' % + ui.configsource(section, name, untrusted)) ui.write('%s=%s\n' % (sectname, value)) elif v == sectname: + ui.debug('%s: ' % + ui.configsource(section, name, untrusted)) ui.write(value, '\n') else: + ui.debug('%s: ' % + ui.configsource(section, name, untrusted)) ui.write('%s=%s\n' % (sectname, value)) def debugsetparents(ui, repo, rev1, rev2=None):
--- a/mercurial/ui.py Sun Apr 26 16:50:43 2009 -0500 +++ b/mercurial/ui.py Sun Apr 26 16:50:43 2009 -0500 @@ -151,6 +151,9 @@ return self.ucdata return self.cdata + def configsource(self, section, name, untrusted=False): + return self._get_cdata(untrusted).getsource(section, name) or 'none' + def config(self, section, name, default=None, untrusted=False): value = self._get_cdata(untrusted).get(section, name, default) if self.debugflag and not untrusted: