Mercurial > hg
comparison hgweb.cgi @ 159:f9d8620ef469
Add example CGI script
This gives an example of how to easily use hgweb via CGI
author | mpm@selenic.com |
---|---|
date | Wed, 25 May 2005 16:28:23 -0800 |
parents | |
children | e875a0cf7f3a |
comparison
equal
deleted
inserted
replaced
158:be7103467d2e | 159:f9d8620ef469 |
---|---|
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() |