hgweb.cgi
changeset 6080 4baad19c4801
parent 5995 b913d3aacddc
child 6142 50a277e6ceae
equal deleted inserted replaced
6079:ea34059b89de 6080:4baad19c4801
     7 #sys.path.insert(0, "/path/to/python/lib")
     7 #sys.path.insert(0, "/path/to/python/lib")
     8 
     8 
     9 # enable importing on demand to reduce startup time
     9 # enable importing on demand to reduce startup time
    10 from mercurial import demandimport; demandimport.enable()
    10 from mercurial import demandimport; demandimport.enable()
    11 
    11 
    12 # send python tracebacks to the browser if an error occurs:
    12 # Uncomment to send python tracebacks to the browser if an error occurs:
    13 import cgitb
    13 #import cgitb
    14 cgitb.enable()
    14 #cgitb.enable()
    15 
    15 
    16 # If you'd like to serve pages with UTF-8 instead of your default
    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.
    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
    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.
    19 # UTF-8 and all your repo files to be displayed using UTF-8.