Mercurial > hg-stable
view hgweb.cgi @ 540:53872e2be33a
TODO tweaks
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
TODO tweaks
manifest hash: 7b4c0443e17f1d848b7b7c9fe62407bf80c0a874
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCxO9gywK+sNU5EO8RAisZAJwJPvdoKuL12u+C0+RLD7A+coQrIgCgsiNQ
+Kml7VZ5cyCaZNCGgFYSemg=
=hIqs
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Thu, 30 Jun 2005 23:23:12 -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()