Mercurial > hg
annotate hgweb.cgi @ 202:e875a0cf7f3a
Call python via env in hgweb.cgi
author | mpm@selenic.com |
---|---|
date | Tue, 31 May 2005 21:24:14 -0800 |
parents | f9d8620ef469 |
children | 5f65a108a559 |
rev | line source |
---|---|
202 | 1 #!/usr/bin/env python |
159 | 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() |