view hgweb.cgi @ 294:f8d56da6ac8f

hg patch: fix to actually take a list of patches
author mpm@selenic.com
date Wed, 08 Jun 2005 21:22:38 -0800
parents e875a0cf7f3a
children 5f65a108a559
line wrap: on
line source

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