hgweb.cgi
changeset 159 f9d8620ef469
child 202 e875a0cf7f3a
equal deleted inserted replaced
158:be7103467d2e 159:f9d8620ef469
       
     1 #!/usr/bin/python
       
     2 #
       
     3 # An example CGI script to use hgweb, edit as necessary
       
     4 
       
     5 import cgitb, os, sys
       
     6 # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
       
     7 from mercurial import hgweb
       
     8 
       
     9 h = hgweb.hgweb("/path/to/repo", "repository name")
       
    10 h.run()