hgweb.cgi
changeset 6142 50a277e6ceae
parent 6141 90e5c82a3859
parent 6080 4baad19c4801
child 11000 338167735124
equal deleted inserted replaced
6141:90e5c82a3859 6142:50a277e6ceae
     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.