mercurial/hgweb.py
changeset 1473 7d66ce9895fa
parent 1445 56281e086f38
child 1498 78590fb4a82b
equal deleted inserted replaced
1472:3c909a747d7f 1473:7d66ce9895fa
   988         def entries(**map):
   988         def entries(**map):
   989             parity = 0
   989             parity = 0
   990             for name, path in self.repos:
   990             for name, path in self.repos:
   991                 u = ui.ui()
   991                 u = ui.ui()
   992                 try:
   992                 try:
   993                     u.readconfig(file(os.path.join(path, '.hg', 'hgrc')))
   993                     u.readconfig(os.path.join(path, '.hg', 'hgrc'))
   994                 except IOError:
   994                 except IOError:
   995                     pass
   995                     pass
   996                 get = u.config
   996                 get = u.config
   997 
   997 
   998                 url = ('/'.join([req.env["REQUEST_URI"].split('?')[0], name])
   998                 url = ('/'.join([req.env["REQUEST_URI"].split('?')[0], name])