# HG changeset patch # User mpm@selenic.com # Date 1117067303 28800 # Node ID f9d8620ef4699375f5251a5e49e4faa94543f8a6 # Parent be7103467d2e0051928e8c0e74988632d1e25734 Add example CGI script This gives an example of how to easily use hgweb via CGI diff -r be7103467d2e -r f9d8620ef469 hgweb.cgi --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hgweb.cgi Wed May 25 16:28:23 2005 -0800 @@ -0,0 +1,10 @@ +#!/usr/bin/python +# +# An example CGI script to use hgweb, edit as necessary + +import cgitb, os, sys +# 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()