Mercurial > hg-stable
comparison contrib/hgwebdir.fcgi @ 5244:79279b5583c6
cgi: sys.path.insert should be before importing mercurial
thanks to R. Burke
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sat, 25 Aug 2007 16:31:37 +0200 |
parents | 55860a45bbf2 |
children | b913d3aacddc |
comparison
equal
deleted
inserted
replaced
5243:423f4e8be115 | 5244:79279b5583c6 |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # An example CGI script to export multiple hgweb repos, edit as necessary | 3 # An example CGI script to export multiple hgweb repos, edit as necessary |
4 | |
5 # adjust python path if not a system-wide install: | |
6 #import sys | |
7 #sys.path.insert(0, "/path/to/python/lib") | |
4 | 8 |
5 # enable demandloading to reduce startup time | 9 # enable demandloading to reduce startup time |
6 from mercurial import demandimport; demandimport.enable() | 10 from mercurial import demandimport; demandimport.enable() |
7 | 11 |
8 # send python tracebacks to the browser if an error occurs: | 12 # send python tracebacks to the browser if an error occurs: |
9 import cgitb | 13 import cgitb |
10 cgitb.enable() | 14 cgitb.enable() |
11 | |
12 # adjust python path if not a system-wide install: | |
13 #import sys | |
14 #sys.path.insert(0, "/path/to/python/lib") | |
15 | 15 |
16 # If you'd like to serve pages with UTF-8 instead of your default | 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. | 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 | 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. | 19 # UTF-8 and all your repo files to be displayed using UTF-8. |