Mercurial > bortreb
view 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 |
line wrap: on
line source
1 #!/usr/bin/env python3 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, wsgicgi10 application = hgweb(config)11 wsgicgi.launch(application)