ref: c22ebef4e1221a3fb276524a86bc3b25d2662653
dir: /sys/src/cmd/hg/hgweb.cgi/
#!/bin/python # enable importing on demand to reduce startup time from mercurial import demandimport; demandimport.enable() from mercurial.hgweb.hgweb_mod import hgweb import mercurial.hgweb.wsgicgi as wsgicgi import os application = hgweb(os.environ["REPO_ROOT"], os.environ["REPO_NAME"]) wsgicgi.launch(application)