hgweb.cgi
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Sat, 25 Feb 2006 13:44:40 +0100
changeset 1802 8a7a24b96697
parent 391 5f65a108a559
child 2506 d0db3462d568
permissions -rw-r--r--
speed up hg log --debug hg repo: before: real 0m6.998s user 0m6.952s sys 0m0.046s after: real 0m3.884s user 0m3.839s sys 0m0.042s

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