Mercurial > hg > pyhgsh
annotate hgweb.cgi @ 177:91055f795d88
adding doc directory and files
author | jake@edge2.net |
---|---|
date | Fri, 27 May 2005 07:16:58 -0700 |
parents | f9d8620ef469 |
children | e875a0cf7f3a |
rev | line source |
---|---|
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() |