# HG changeset patch # User Thomas Arendsen Hein # Date 1125244515 -7200 # Node ID a67982e64109087eb728b5cb7a45a37c5785639b # Parent 1ad52c7679e14abd40f6f3e319f707df63bc6daa Create repository objects instead of using own ConfigParser in hgwebdir. diff -r 1ad52c7679e1 -r a67982e64109 mercurial/hgweb.py --- a/mercurial/hgweb.py Sun Aug 28 17:53:37 2005 +0200 +++ b/mercurial/hgweb.py Sun Aug 28 17:55:15 2005 +0200 @@ -942,14 +942,8 @@ repos = self.cp.items("paths") repos.sort() for name, path in repos: - cp2 = ConfigParser.SafeConfigParser() - cp2.read(os.path.join(path, ".hg", "hgrc")) - - def get(sec, val, default): - try: - return cp2.get(sec, val) - except: - return default + repo = repository(ui(), path) + get = repo.ui.config url = os.environ["REQUEST_URI"] + "/" + name url = url.replace("//", "/")