/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/__init__.py

Split up more smart server code, this time into bzrlib/transport/smart/protocol.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
    )
49
49
from bzrlib.transport.http.response import (HttpMultipartRangeResponse,
50
50
                                            HttpRangeResponse)
51
 
from bzrlib.transport.smart import medium
 
51
from bzrlib.transport.smart import medium, protocol
52
52
from bzrlib.ui import ui_factory
53
53
 
54
54
 
656
656
        # we have to stop early due to error, but we would also have to use the
657
657
        # HTTP trailer facility which may not be widely available.
658
658
        out_buffer = StringIO()
659
 
        smart_protocol_request = smart.SmartServerRequestProtocolOne(
 
659
        smart_protocol_request = protocol.SmartServerRequestProtocolOne(
660
660
                transport, out_buffer.write)
661
661
        # if this fails, we should return 400 bad request, but failure is
662
662
        # failure for now - RBC 20060919