comparison hgwebdir.cgi @ 941:4cf418c2a013

Add a multi-repository server This merges a bunch of the ideas for a multi-repository CGI script and simplifies things a bit. It uses PATH_INFO so it generally wants paths of the form: http://host/hg.cgi/virtualpath This gets mapped via a simple config file to the real path. All info about the repo is read from the repo's hgrc.
author mpm@selenic.com
date Fri, 19 Aug 2005 16:38:25 -0800
parents
children 8d791bea49d4
comparison
equal deleted inserted replaced
940:1300271ba8de 941:4cf418c2a013
1 #!/usr/bin/env python
2 #
3 # An example CGI script to export multiple hgweb repos, edit as necessary
4
5 import cgi, cgitb, os, sys, ConfigParser
6 cgitb.enable()
7
8 # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
9 from mercurial import hgweb
10
11 # The config file looks like this:
12 # [paths]
13 # virtual/path = /real/path
14 # virtual/path = /real/path
15
16 h = hgweb.hgwebdir("hgweb.config")
17 h.run()