Mercurial > hg
annotate hgwebdir.cgi @ 1682:ca1cda9220d5
fix an exception in gpg.py with multiples sigs for the same cset
- silly error, do not overwrite the variable we use for iterating
- correct 'hg help sign'
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Wed, 01 Feb 2006 20:20:27 +0100 |
parents | 8a39df05d2c1 |
children | b0f6af327fd4 |
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 | |
1144
8a39df05d2c1
Documented passing list or dict instead of config file in hgwebdir.cgi
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1064
diff
changeset
|
16 # Alternatively you can pass a list of ('virtual/path', '/real/path') tuples |
8a39df05d2c1
Documented passing list or dict instead of config file in hgwebdir.cgi
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1064
diff
changeset
|
17 # or use a dictionary with entries like 'virtual/path': '/real/path' |
8a39df05d2c1
Documented passing list or dict instead of config file in hgwebdir.cgi
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1064
diff
changeset
|
18 |
941 | 19 h = hgweb.hgwebdir("hgweb.config") |
20 h.run() |