author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
Sun, 19 Feb 2006 19:43:03 +0100 | |
changeset 1749 | d457fec76ab0 |
parent 1144 | 8a39df05d2c1 |
child 1829 | b0f6af327fd4 |
permissions | -rw-r--r-- |
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() |