159
|
1 |
#!/usr/bin/python
|
|
2 |
#
|
|
3 |
# An example CGI script to use hgweb, edit as necessary
|
|
4 |
|
|
5 |
import cgitb, os, sys
|
|
6 |
# sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
|
|
7 |
from mercurial import hgweb
|
|
8 |
|
|
9 |
h = hgweb.hgweb("/path/to/repo", "repository name")
|
|
10 |
h.run()
|