hgweb.cgi
author Vadim Gelfer <vadim.gelfer@gmail.com>
Fri, 04 Nov 2005 11:51:01 -0800
changeset 1583 32a4e6802864
parent 391 5f65a108a559
child 2506 d0db3462d568
permissions -rw-r--r--
make mercurial look in more places for config files. now it searches <install dir>/etc/mercurial, /etc/mercurial, and user hgrc. this allows site-wide configuration to be shared over automounted nfs partition, instead of chenging on every system. option of having local configuration on every system remains. old code for searching /etc/mercurial/hgrc.d never worked, this code is tested and works.

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