view 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
line wrap: on
line source

#!/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()