Mercurial > hg
annotate hgwebdir.cgi @ 1105:a906b018eaef
Replaced hg status -p/--strip with -n/--no-status to not confuse with patch.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sat, 27 Aug 2005 23:23:32 +0200 |
parents | 8d791bea49d4 |
children | 8a39df05d2c1 |
rev | line source |
---|---|
941 | 1 #!/usr/bin/env python |
2 # | |
3 # An example CGI script to export multiple hgweb repos, edit as necessary | |
4 | |
1064
8d791bea49d4
Removed obsolete imports from hgwebdir.cgi
Thomas Arendsen Hein <thomas@intevation.de>
parents:
941
diff
changeset
|
5 import cgitb, sys |
941 | 6 cgitb.enable() |
7 | |
8 # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install | |
9 from mercurial import hgweb | |
10 | |
11 # The config file looks like this: | |
12 # [paths] | |
13 # virtual/path = /real/path | |
14 # virtual/path = /real/path | |
15 | |
16 h = hgweb.hgwebdir("hgweb.config") | |
17 h.run() |