view hgweb.py @ 7:9dea0b589e58 tip

add server repo.
author Robert McIntyre <rlm@mit.edu>
date Sat, 16 Mar 2013 03:40:45 +0000
parents 96dc69a8cf91
children
line wrap: on
line source
1 #!/usr/bin/env python2
3 config = "/home/r/proj/bortreb/hgweb.config"
5 # Uncomment to send python tracebacks to the browser if an error occurs:
6 #import cgitb; cgitb.enable()
8 from mercurial import demandimport; demandimport.enable()
9 from mercurial.hgweb import hgweb, wsgicgi
10 application = hgweb(config)
11 wsgicgi.launch(application)