hgwebdir.cgi
author Thomas Arendsen Hein <thomas@intevation.de>
Thu, 25 Aug 2005 18:35:35 +0200
changeset 1046 772507daaa17
parent 941 4cf418c2a013
child 1064 8d791bea49d4
permissions -rw-r--r--
Sort global options by topic: directories, ui, timing, other (and changed indentation to match command table)

#!/usr/bin/env python
#
# An example CGI script to export multiple hgweb repos, edit as necessary

import cgi, cgitb, os, sys, ConfigParser
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()