view hgweb.cgi @ 549:92b60cabf808

[PATCH] Catch OSError usefully -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH] Catch OSError usefully From: Bryan O'Sullivan <bos@serpentine.com> This is a rewrite of an earlier clone cleanup patch. Catches OSError properly. manifest hash: b1faf01867195a992a9ada0edb2095f85ab3e68f -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxPSnywK+sNU5EO8RAmX4AJ9KG8MFZc7B79ZW22Qd7aQ4KyxUHwCgnkJz Mj0FkpW+uccoSqKc2pxxv5k= =LW+l -----END PGP SIGNATURE-----
author mpm@selenic.com
date Thu, 30 Jun 2005 23:45:43 -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()