view hgweb.cgi @ 572:cb7cd12e00f1

[PATCH 5/5]: cleaning the template parent management in hgweb -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH 5/5]: cleaning the template parent management in hgweb From: Goffredo Baroncelli <kreijack@libero.it> remove the unused function hgweb.parent() manifest hash: cd5a8812bc0ecbefb2e9e007f6e2bad12cd9e485 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCxv0BywK+sNU5EO8RAtw8AJ4ttjQzg2ZT+17r054Uaidvn34ruwCgtTDt Gcr7hR1VvMyFC70IWBdXIpE= =oKEL -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sat, 02 Jul 2005 12:45:53 -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()