tinycm view tools/hgweb.py @ rev 66
Added tag 1.1 for changeset 007a950f9808
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat Apr 12 23:45:35 2014 +0200 (2014-04-12) |
parents | fa494a9879e3 |
children |
line source
1 #!/usr/bin/env python
2 #
3 # An example hgweb CGI script, edit as necessary
4 # See also http://mercurial.selenic.com/wiki/PublishingRepositories
6 # Path to repo or hgweb config to serve (see 'hg help hgweb')
7 config = "/var/www/cgi-bin/tinycm/content"
9 # Uncomment and adjust if Mercurial is not installed system-wide
10 # (consult "installed modules" path from 'hg debuginstall'):
11 #import sys; sys.path.insert(0, "/path/to/python/lib")
13 # Uncomment to send python tracebacks to the browser if an error occurs:
14 #import cgitb; cgitb.enable()
16 from mercurial import demandimport; demandimport.enable()
17 from mercurial.hgweb import hgweb, wsgicgi
18 application = hgweb(config)
19 wsgicgi.launch(application)