hgweb.cgi
author Vadim Gelfer <vadim.gelfer@gmail.com>
Tue, 14 Mar 2006 22:58:14 -0800
changeset 1959 d53a18f592be
parent 391 5f65a108a559
child 2506 d0db3462d568
permissions -rw-r--r--
add -f/--force to pull, incoming, outgoing, to work on unrelated repo. before this, push would not push from e.g. "hg" repo to "kernel" repo but other commands worked. this was bad idea, could merge unrelated projects by accident. i did this tonight. now, all commands still work with unrelated repo but need --force/-f. abort is default. this is safer.

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