mercurial/hgweb.py
changeset 1217 f1895785c79e
parent 1213 db9639b8594c
child 1219 56582bb2b869
equal deleted inserted replaced
1216:1639fc7c2ccf 1217:f1895785c79e
     6 # This software may be used and distributed according to the terms
     6 # This software may be used and distributed according to the terms
     7 # of the GNU General Public License, incorporated herein by reference.
     7 # of the GNU General Public License, incorporated herein by reference.
     8 
     8 
     9 import os, cgi, sys
     9 import os, cgi, sys
    10 from demandload import demandload
    10 from demandload import demandload
    11 demandload(globals(), "mdiff time re socket zlib errno ui hg")
    11 demandload(globals(), "mdiff time re socket zlib errno ui hg ConfigParser")
    12 demandload(globals(), "zipfile tempfile StringIO tarfile BaseHTTPServer")
    12 demandload(globals(), "zipfile tempfile StringIO tarfile BaseHTTPServer")
    13 from node import *
    13 from node import *
    14 
    14 
    15 def templatepath():
    15 def templatepath():
    16     for f in "templates", "../templates":
    16     for f in "templates", "../templates":