hgweb.cgi
author Volker Kleinfeld <Volker.Kleinfeld@gmx.de>
Thu, 18 May 2006 22:35:41 -0700
changeset 2314 e9b5749e4de3
parent 391 5f65a108a559
child 2506 d0db3462d568
permissions -rw-r--r--
Remove quotes from patch command. When the gpatch fix for solaris was introduced in 67a0a3852024 the patch command was "". For some strange reason windows 2000 is not happy with those quotes when given in os.popen.

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

import cgitb, os, sys
cgitb.enable()

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