##// END OF EJS Templates
hgweb: simplify hgweb.cgi, add help pointer...
Matt Mackall -
r11000:33816773 default
parent child Browse files
Show More
@@ -1,28 +1,17 b''
1 1 #!/usr/bin/env python
2 2 #
3 # An example CGI script to use hgweb, edit as necessary
3 # An example hgweb CGI script, edit as necessary
4 4
5 # adjust python path if not a system-wide install:
6 #import sys
7 #sys.path.insert(0, "/path/to/python/lib")
5 # Path to repo or hgweb config to serve (see 'hg help hgweb')
6 config = "/path/to/repo/or/config"
8 7
9 # enable importing on demand to reduce startup time
10 from mercurial import demandimport; demandimport.enable()
8 # Uncomment and adjust if Mercurial is not installed system-wide:
9 #import sys; sys.path.insert(0, "/path/to/python/lib")
11 10
12 11 # Uncomment to send python tracebacks to the browser if an error occurs:
13 #import cgitb
14 #cgitb.enable()
12 #import cgitb; cgitb.enable()
15 13
16 # If you'd like to serve pages with UTF-8 instead of your default
17 # locale charset, you can do so by uncommenting the following lines.
18 # Note that this will cause your .hgrc files to be interpreted in
19 # UTF-8 and all your repo files to be displayed using UTF-8.
20 #
21 #import os
22 #os.environ["HGENCODING"] = "UTF-8"
23
24 from mercurial.hgweb.hgweb_mod import hgweb
25 import mercurial.hgweb.wsgicgi as wsgicgi
26
27 application = hgweb("/path/to/repo", "repository name")
14 from mercurial import demandimport; demandimport.enable()
15 from mercurial.hgweb import hgweb, wsgicgi
16 application = hgweb(config)
28 17 wsgicgi.launch(application)
General Comments 0
You need to be logged in to leave comments. Login now