/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: Robert Collins
  • Date: 2009-04-14 04:33:41 UTC
  • mto: This revision was merged to the branch mainline in revision 4291.
  • Revision ID: robertc@robertcollins.net-20090414043341-wirhw8dgd28nmcq1
Create a server verb for doing BzrDir.get_config()

Show diffs side-by-side

added added

removed removed

Lines of Context:
481
481
    'BzrDir.find_repositoryV3', 'bzrlib.smart.bzrdir',
482
482
    'SmartServerRequestFindRepositoryV3')
483
483
request_handlers.register_lazy(
 
484
    'BzrDir.get_config_file', 'bzrlib.smart.bzrdir',
 
485
    'SmartServerBzrDirRequestConfigFile')
 
486
request_handlers.register_lazy(
484
487
    'BzrDirFormat.initialize', 'bzrlib.smart.bzrdir',
485
488
    'SmartServerRequestInitializeBzrDir')
486
489
request_handlers.register_lazy(
 
490
    'BzrDir.open', 'bzrlib.smart.bzrdir', 'SmartServerRequestOpenBzrDir')
 
491
request_handlers.register_lazy(
487
492
    'BzrDir.open_branch', 'bzrlib.smart.bzrdir',
488
493
    'SmartServerRequestOpenBranch')
489
494
request_handlers.register_lazy(
553
558
    'stat', 'bzrlib.smart.vfs', 'StatRequest')
554
559
request_handlers.register_lazy(
555
560
    'Transport.is_readonly', 'bzrlib.smart.request', 'SmartServerIsReadonly')
556
 
request_handlers.register_lazy(
557
 
    'BzrDir.open', 'bzrlib.smart.bzrdir', 'SmartServerRequestOpenBzrDir')