hgwebdir.cgi
changeset 941 4cf418c2a013
child 1064 8d791bea49d4
equal deleted inserted replaced
940:1300271ba8de 941:4cf418c2a013
       
     1 #!/usr/bin/env python
       
     2 #
       
     3 # An example CGI script to export multiple hgweb repos, edit as necessary
       
     4 
       
     5 import cgi, cgitb, os, sys, ConfigParser
       
     6 cgitb.enable()
       
     7 
       
     8 # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
       
     9 from mercurial import hgweb
       
    10 
       
    11 # The config file looks like this:
       
    12 # [paths]
       
    13 # virtual/path = /real/path
       
    14 # virtual/path = /real/path
       
    15 
       
    16 h = hgweb.hgwebdir("hgweb.config")
       
    17 h.run()