view hgweb.cgi @ 594:0a2ffc5c906b

Update CONTRIBUTORS -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Update CONTRIBUTORS manifest hash: 71ba14cae4b50532d09de7ca49bc67375a69161d -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCyD9kywK+sNU5EO8RAqbuAKCeP12TfqkADk+xAKy04U78TmHJKgCfeZIg qPwEtFA8Qd0l96fjJmL+peM= =f6lv -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sun, 03 Jul 2005 11:41:24 -0800
parents 5f65a108a559
children d0db3462d568
line wrap: on
line source

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