annotate hgweb.py @ 2:dfc6cd448c24

cleaned up example script
author Robert McIntyre <rlm@mit.edu>
date Wed, 19 Oct 2011 23:22:22 -0700
parents be88a0c804e6
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)