sapling/hgwebdir.cgi
2005-08-26 13:31:40 +02:00

18 lines
382 B
Python

#!/usr/bin/env python
#
# An example CGI script to export multiple hgweb repos, edit as necessary
import cgitb, sys
cgitb.enable()
# sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
from mercurial import hgweb
# The config file looks like this:
# [paths]
# virtual/path = /real/path
# virtual/path = /real/path
h = hgweb.hgwebdir("hgweb.config")
h.run()