view hgweb.cgi @ 2403:9b0747207925

Further cleanup of ui.py (changeset 74d569332f8b used one-char variable names).
author Thomas Arendsen Hein <thomas@intevation.de>
date Mon, 05 Jun 2006 12:24:00 +0200
parents 5f65a108a559
children
line wrap: on
line source

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