hgweb.cgi
author mpm@selenic.com
Mon, 30 May 2005 08:28:02 -0800
changeset 194 4ec26766be83
parent 159 f9d8620ef469
child 202 e875a0cf7f3a
permissions -rw-r--r--
Update tags

#!/usr/bin/python
#
# An example CGI script to use hgweb, edit as necessary

import cgitb, os, sys
# sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
from mercurial import hgweb

h = hgweb.hgweb("/path/to/repo", "repository name")
h.run()