/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/smart/request.py

Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
 
67
67
    def do_body(self, body_bytes):
68
68
        """Called if the client sends a body with the request.
 
69
 
 
70
        The do() method is still called, and must have returned None.
69
71
        
70
72
        Must return a SmartServerResponse.
71
73
        """
284
286
request_handlers.register_lazy(
285
287
    'Branch.unlock', 'bzrlib.smart.branch', 'SmartServerBranchRequestUnlock')
286
288
request_handlers.register_lazy(
287
 
    'BzrDir.find_repository', 'bzrlib.smart.bzrdir', 'SmartServerRequestFindRepository')
 
289
    'BzrDir.find_repository', 'bzrlib.smart.bzrdir', 'SmartServerRequestFindRepositoryV1')
 
290
request_handlers.register_lazy(
 
291
    'BzrDir.find_repositoryV2', 'bzrlib.smart.bzrdir', 'SmartServerRequestFindRepositoryV2')
288
292
request_handlers.register_lazy(
289
293
    'BzrDirFormat.initialize', 'bzrlib.smart.bzrdir', 'SmartServerRequestInitializeBzrDir')
290
294
request_handlers.register_lazy(
330
334
    'bzrlib.smart.repository',
331
335
    'SmartServerRepositoryStreamRevisionsChunked')
332
336
request_handlers.register_lazy(
333
 
    'Repository.chunked_stream_knit_data_for_revisions',
334
 
    'bzrlib.smart.repository',
335
 
    'SmartServerRepositoryStreamKnitDataForRevisions')
336
 
request_handlers.register_lazy(
337
337
    'Repository.get_revision_graph', 'bzrlib.smart.repository', 'SmartServerRepositoryGetRevisionGraph')
338
338
request_handlers.register_lazy(
339
339
    'Repository.has_revision', 'bzrlib.smart.repository', 'SmartServerRequestHasRevision')