annotate hgweb.cgi @ 379:c8bd9793446d
Updated TODO
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Updated TODO
manifest hash:
ee511d64271017729839799c4ea066b2046579d9
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCsQyGW7P1GVgWeRoRAifOAJ9hUcsM2+OPfjichr083EAhKfMSSACeIhtK
d3QXNNmPpmk6lLFFFujImEU=
=kCMx
-----END PGP SIGNATURE-----
author |
Thomas Arendsen Hein <thomas@intevation.de> |
date |
Thu, 16 Jun 2005 06:22:14 +0100 |
parents |
e875a0cf7f3a |
children |
5f65a108a559 |
rev |
line source |
202
|
1 #!/usr/bin/env python
|
159
|
2 #
|
|
3 # An example CGI script to use hgweb, edit as necessary
|
|
4
|
|
5 import cgitb, os, sys
|
|
6 # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
|
|
7 from mercurial import hgweb
|
|
8
|
|
9 h = hgweb.hgweb("/path/to/repo", "repository name")
|
|
10 h.run()
|