Mercurial > bortreb
view hgweb.py @ 5:96dc69a8cf91
added judy-face-art repository
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Thu, 05 Jul 2012 23:26:34 +0100 |
parents | dfc6cd448c24 |
children |
line wrap: on
line source
1 #!/usr/bin/env python23 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)