mercurial/hgweb/protocol.py
changeset 7281 f96c20e9b56a
parent 7180 a42d27bc809d
child 8109 496ae1ea4698
equal deleted inserted replaced
7280:810ca383da9c 7281:f96c20e9b56a
     7 
     7 
     8 import cStringIO, zlib, tempfile, errno, os, sys
     8 import cStringIO, zlib, tempfile, errno, os, sys
     9 from mercurial import util, streamclone
     9 from mercurial import util, streamclone
    10 from mercurial.node import bin, hex
    10 from mercurial.node import bin, hex
    11 from mercurial import changegroup as changegroupmod
    11 from mercurial import changegroup as changegroupmod
    12 from common import HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR
    12 from common import ErrorResponse, HTTP_OK, HTTP_NOT_FOUND, HTTP_SERVER_ERROR
    13 
    13 
    14 # __all__ is populated with the allowed commands. Be sure to add to it if
    14 # __all__ is populated with the allowed commands. Be sure to add to it if
    15 # you're adding a new command, or the new command won't work.
    15 # you're adding a new command, or the new command won't work.
    16 
    16 
    17 __all__ = [
    17 __all__ = [