##// END OF EJS Templates
hgweb: add link to wiki
Martin Geisler -
r11503:227b9f13 stable
parent child Browse files
Show More
@@ -1,17 +1,18 b''
1 #!/usr/bin/env python
1 #!/usr/bin/env python
2 #
2 #
3 # An example hgweb CGI script, edit as necessary
3 # An example hgweb CGI script, edit as necessary
4 # See also http://mercurial.selenic.com/wiki/PublishingRepositories
4
5
5 # Path to repo or hgweb config to serve (see 'hg help hgweb')
6 # Path to repo or hgweb config to serve (see 'hg help hgweb')
6 config = "/path/to/repo/or/config"
7 config = "/path/to/repo/or/config"
7
8
8 # Uncomment and adjust if Mercurial is not installed system-wide:
9 # Uncomment and adjust if Mercurial is not installed system-wide:
9 #import sys; sys.path.insert(0, "/path/to/python/lib")
10 #import sys; sys.path.insert(0, "/path/to/python/lib")
10
11
11 # Uncomment to send python tracebacks to the browser if an error occurs:
12 # Uncomment to send python tracebacks to the browser if an error occurs:
12 #import cgitb; cgitb.enable()
13 #import cgitb; cgitb.enable()
13
14
14 from mercurial import demandimport; demandimport.enable()
15 from mercurial import demandimport; demandimport.enable()
15 from mercurial.hgweb import hgweb, wsgicgi
16 from mercurial.hgweb import hgweb, wsgicgi
16 application = hgweb(config)
17 application = hgweb(config)
17 wsgicgi.launch(application)
18 wsgicgi.launch(application)
General Comments 0
You need to be logged in to leave comments. Login now