Allow list of (virtual, real) or dictionary to be passed to hgwebdir.
authorThomas Arendsen Hein <thomas@intevation.de>
Mon, 29 Aug 2005 07:39:01 +0200
changeset 1143 4fffb3d84b7c
parent 1142 74d184a40a2e
child 1144 8a39df05d2c1
Allow list of (virtual, real) or dictionary to be passed to hgwebdir.
mercurial/hgweb.py
--- a/mercurial/hgweb.py	Mon Aug 29 07:34:35 2005 +0200
+++ b/mercurial/hgweb.py	Mon Aug 29 07:39:01 2005 +0200
@@ -922,10 +922,16 @@
 # This is a stopgap
 class hgwebdir:
     def __init__(self, config):
-        cp = ConfigParser.SafeConfigParser()
-        cp.read(config)
-        self.repos = cp.items("paths")
-        self.repos.sort()
+        if type(config) == type([]):
+            self.repos = config
+        elif type(config) == type({}):
+            self.repos = config.items()
+            self.repos.sort()
+        else:
+            cp = ConfigParser.SafeConfigParser()
+            cp.read(config)
+            self.repos = cp.items("paths")
+            self.repos.sort()
 
     def run(self):
         def header(**map):