hgweb.cgi
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Tue, 21 Mar 2006 06:03:33 +0100
changeset 1980 dfb796786337
parent 391 5f65a108a559
child 2506 d0db3462d568
permissions -rw-r--r--
use HG10UN header for uncompressed bundle - use HG10UN instead of HG11 for uncompressed bundles header - check HG10BZ for compressed bundle - better error handling for invalid header some notes: - people who created uncompressed bundle will no longer be able to use them (it could be fixed with hand-editing) - older hg cannot detect an uncompressed bundle (bzip2 decompression will fail).

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