hgweb.cgi
author mpm@selenic.com
Thu, 26 May 2005 12:24:01 -0800
changeset 168 65cf1b0cfe86
parent 159 f9d8620ef469
child 202 e875a0cf7f3a
permissions -rw-r--r--
hgweb: add tags links and manifest links This adds a simple new tags page to browse by tag, adds the tag link everywhere, and adds manifest links to the tags and changelog pages.

#!/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()