author | mpm@selenic.com |
Tue, 23 Aug 2005 20:21:52 -0700 | |
changeset 1016 | 836667830fee |
parent 941 | 4cf418c2a013 |
child 1064 | 8d791bea49d4 |
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 |
||
5 |
import cgi, cgitb, os, sys, ConfigParser |
|
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() |