comparison mercurial/hgweb/webcommands.py @ 5595:b95b2525c6e8

fix some imports; pushing bz2 bundles over http is currently untested
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Mon, 03 Dec 2007 11:58:29 +0100
parents 08887121a652
children d534ba1c4eb4
comparison
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