/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

  • Committer: Andrew Bennetts
  • Date: 2008-03-27 06:10:18 UTC
  • mfrom: (3309 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3320.
  • Revision ID: andrew.bennetts@canonical.com-20080327061018-dxztpxyv6yoeg3am
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
 
87
87
    def do_body(self, body_bytes):
88
88
        """Called if the client sends a body with the request.
 
89
 
 
90
        The do() method is still called, and must have returned None.
89
91
        
90
92
        Must return a SmartServerResponse.
91
93
        """
340
342
request_handlers.register_lazy(
341
343
    'Branch.unlock', 'bzrlib.smart.branch', 'SmartServerBranchRequestUnlock')
342
344
request_handlers.register_lazy(
343
 
    'BzrDir.find_repository', 'bzrlib.smart.bzrdir', 'SmartServerRequestFindRepository')
 
345
    'BzrDir.find_repository', 'bzrlib.smart.bzrdir', 'SmartServerRequestFindRepositoryV1')
 
346
request_handlers.register_lazy(
 
347
    'BzrDir.find_repositoryV2', 'bzrlib.smart.bzrdir', 'SmartServerRequestFindRepositoryV2')
344
348
request_handlers.register_lazy(
345
349
    'BzrDirFormat.initialize', 'bzrlib.smart.bzrdir', 'SmartServerRequestInitializeBzrDir')
346
350
request_handlers.register_lazy(
374
378
request_handlers.register_lazy('Repository.gather_stats',
375
379
                               'bzrlib.smart.repository',
376
380
                               'SmartServerRepositoryGatherStats')
 
381
request_handlers.register_lazy('Repository.get_parent_map',
 
382
                               'bzrlib.smart.repository',
 
383
                               'SmartServerRepositoryGetParentMap')
377
384
request_handlers.register_lazy(
378
385
    'Repository.stream_knit_data_for_revisions',
379
386
    'bzrlib.smart.repository',
383
390
    'bzrlib.smart.repository',
384
391
    'SmartServerRepositoryStreamRevisionsChunked')
385
392
request_handlers.register_lazy(
386
 
    'Repository.chunked_stream_knit_data_for_revisions',
387
 
    'bzrlib.smart.repository',
388
 
    'SmartServerRepositoryStreamKnitDataForRevisions')
389
 
request_handlers.register_lazy(
390
393
    'Repository.get_revision_graph', 'bzrlib.smart.repository', 'SmartServerRepositoryGetRevisionGraph')
391
394
request_handlers.register_lazy(
392
395
    'Repository.has_revision', 'bzrlib.smart.repository', 'SmartServerRequestHasRevision')