annotate hgwebdir.cgi @ 1046:772507daaa17
Sort global options by topic: directories, ui, timing, other
(and changed indentation to match command table)
author |
Thomas Arendsen Hein <thomas@intevation.de> |
date |
Thu, 25 Aug 2005 18:35:35 +0200 |
parents |
4cf418c2a013 |
children |
8d791bea49d4 |
rev |
line source |
941
|
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()
|