java/hg-projekty/web/WEB-INF/cgi/hg
author František Kučera <franta-hg@frantovo.cz>
Mon Feb 16 21:21:34 2009 +0100 (2009-02-16)
changeset 4 5881614cdaef
parent 3 40312bcd7cd2
permissions -rw-r--r--
Validní XHTML
     1 #!/usr/bin/env python
     2 #
     3 # An example CGI script to use hgweb, edit as necessary
     4 
     5 # adjust python path if not a system-wide install:
     6 #import sys
     7 #sys.path.insert(0, "/path/to/python/lib")
     8 
     9 # enable importing on demand to reduce startup time
    10 from mercurial import demandimport; demandimport.enable()
    11 
    12 # Uncomment to send python tracebacks to the browser if an error occurs:
    13 #import cgitb
    14 #cgitb.enable()
    15 
    16 # If you'd like to serve pages with UTF-8 instead of your default
    17 # locale charset, you can do so by uncommenting the following lines.
    18 # Note that this will cause your .hgrc files to be interpreted in
    19 # UTF-8 and all your repo files to be displayed using UTF-8.
    20 #
    21 import os
    22 os.environ["HGENCODING"] = "UTF-8"
    23 
    24 from mercurial.hgweb.hgwebdir_mod import hgwebdir
    25 import mercurial.hgweb.wsgicgi as wsgicgi
    26 
    27 application = hgwebdir("/var/hg/projekty.config")
    28 wsgicgi.launch(application)