annotate hgweb.py @ 3:1bfce31b98ea

added vba-linux
author Robert McIntyre <rlm@mit.edu>
date Tue, 06 Mar 2012 14:50:49 -0600
parents dfc6cd448c24
children 96dc69a8cf91
rev   line source
rlm@0 1 #!/usr/bin/env python
rlm@0 2
rlm@0 3 config = "/home/r/proj/bortreb/hgweb.config"
rlm@0 4
rlm@0 5 # Uncomment to send python tracebacks to the browser if an error occurs:
rlm@0 6 #import cgitb; cgitb.enable()
rlm@0 7
rlm@0 8 from mercurial import demandimport; demandimport.enable()
rlm@0 9 from mercurial.hgweb import hgweb, wsgicgi
rlm@0 10 application = hgweb(config)
rlm@0 11 wsgicgi.launch(application)