Mercurial > hg
annotate hgwebdir.cgi @ 1705:4b5725a4a0a6
add changenav at bottom of page
if one reads through the changelog and wants to go to the
previous or next page one needs the navigation links at
the bottom, not at the top of the page
author | Johannes Stezenbach <js@linuxtv.org> |
---|---|
date | Tue, 07 Feb 2006 23:01:11 -0600 |
parents | 8a39df05d2c1 |
children | b0f6af327fd4 |
rev | line source |
---|---|
941 | 1 #!/usr/bin/env python |
2 # | |
3 # An example CGI script to export multiple hgweb repos, edit as necessary | |
4 | |
1064
8d791bea49d4
Removed obsolete imports from hgwebdir.cgi
Thomas Arendsen Hein <thomas@intevation.de>
parents:
941
diff
changeset
|
5 import cgitb, sys |
941 | 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 | |
1144
8a39df05d2c1
Documented passing list or dict instead of config file in hgwebdir.cgi
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1064
diff
changeset
|
16 # Alternatively you can pass a list of ('virtual/path', '/real/path') tuples |
8a39df05d2c1
Documented passing list or dict instead of config file in hgwebdir.cgi
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1064
diff
changeset
|
17 # or use a dictionary with entries like 'virtual/path': '/real/path' |
8a39df05d2c1
Documented passing list or dict instead of config file in hgwebdir.cgi
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1064
diff
changeset
|
18 |
941 | 19 h = hgweb.hgwebdir("hgweb.config") |
20 h.run() |