hgweb.cgi
author Thomas Arendsen Hein <thomas@intevation.de>
Fri, 10 Jun 2005 07:50:20 +0100
changeset 303 15a9e55e7ea5
parent 202 e875a0cf7f3a
child 391 5f65a108a559
permissions -rw-r--r--
Check if $DISPLAY is set before using tkdiff or kdiff3.

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