/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: Matthew Revell
  • Date: 2008-03-05 13:29:20 UTC
  • mfrom: (3250 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3263.
  • Revision ID: matthew.revell@canonical.com-20080305132920-nedj6gvy023h2w3a
LatestĀ fromĀ upstreadm

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(
318
322
request_handlers.register_lazy('Repository.gather_stats',
319
323
                               'bzrlib.smart.repository',
320
324
                               'SmartServerRepositoryGatherStats')
 
325
request_handlers.register_lazy('Repository.get_parent_map',
 
326
                               'bzrlib.smart.repository',
 
327
                               'SmartServerRepositoryGetParentMap')
321
328
request_handlers.register_lazy(
322
329
    'Repository.stream_knit_data_for_revisions',
323
330
    'bzrlib.smart.repository',
327
334
    'bzrlib.smart.repository',
328
335
    'SmartServerRepositoryStreamRevisionsChunked')
329
336
request_handlers.register_lazy(
330
 
    'Repository.chunked_stream_knit_data_for_revisions',
331
 
    'bzrlib.smart.repository',
332
 
    'SmartServerRepositoryStreamKnitDataForRevisions')
333
 
request_handlers.register_lazy(
334
337
    'Repository.get_revision_graph', 'bzrlib.smart.repository', 'SmartServerRepositoryGetRevisionGraph')
335
338
request_handlers.register_lazy(
336
339
    'Repository.has_revision', 'bzrlib.smart.repository', 'SmartServerRequestHasRevision')