hgweb.cgi
author mpm@selenic.com
Sat, 02 Jul 2005 15:34:23 -0800
changeset 577 5291a16324c0
parent 391 5f65a108a559
child 2506 d0db3462d568
permissions -rw-r--r--
Remove -p global switch in preparation for combining namespaces -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Remove -p global switch in preparation for combining namespaces manifest hash: 88b5d17097aababa5c2c9242deba51598b207e3c -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxyR/ywK+sNU5EO8RAvPbAJ0XtMA5E1y71hrx9ahBxU3sys98LwCghnz/ xks9tYPTnG8aizwEmg68EGw= =5MkD -----END PGP SIGNATURE-----

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