view hgweb.cgi @ 181:038e4d8602bd

updated for .hgpaths and http/old-http protocol name change
author jake@edge2.net
date Fri, 27 May 2005 14:09:43 -0700
parents f9d8620ef469
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()