Mercurial > hg
annotate hgwebdir.cgi @ 1052:d8279ca39dc7
Adjust display and alignment of command options to match global options.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 26 Aug 2005 09:56:33 +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() |