hgweb.cgi
author Thomas Arendsen Hein <thomas@intevation.de>
Wed, 17 May 2006 19:38:41 +0200
changeset 2301 7c2623aedeb4
parent 391 5f65a108a559
child 2506 d0db3462d568
permissions -rw-r--r--
Strip empty lines and trailing spaces around commit messages. Fixes issue213 and part of issue249 (trying to keep node id on import)

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