mercurial/hgweb/webcommands.py
changeset 5595 b95b2525c6e8
parent 5591 08887121a652
child 5598 d534ba1c4eb4
equal deleted inserted replaced
5594:8623debad845 5595:b95b2525c6e8
     3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
     3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
     4 #
     4 #
     5 # This software may be used and distributed according to the terms
     5 # This software may be used and distributed according to the terms
     6 # of the GNU General Public License, incorporated herein by reference.
     6 # of the GNU General Public License, incorporated herein by reference.
     7 
     7 
     8 import cStringIO, zlib, tempfile, errno, os, sys
     8 import cStringIO, zlib, bz2, tempfile, errno, os, sys
     9 from mercurial import revlog, util, streamclone
     9 from mercurial import revlog, util, streamclone
    10 from mercurial.i18n import gettext as _
    10 from mercurial.i18n import gettext as _
    11 from mercurial.node import *
    11 from mercurial.node import *
    12 from common import staticfile
    12 from common import staticfile
    13 
    13