view hgweb.cgi @ 234:3427806d5ab9

ui.warn can use more than one argument like the other ui methods.
author Thomas Arendsen Hein <thomas@intevation.de>
date Thu, 02 Jun 2005 07:06:29 +0100
parents e875a0cf7f3a
children 5f65a108a559
line wrap: on
line source

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