/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: Jelmer Vernooij
  • Date: 2011-11-21 15:05:28 UTC
  • mfrom: (6282 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6316.
  • Revision ID: jelmer@samba.org-20111121150528-qxdcnj8s8z12zkt4
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
555
555
    'BzrDir.get_config_file', 'bzrlib.smart.bzrdir',
556
556
    'SmartServerBzrDirRequestConfigFile')
557
557
request_handlers.register_lazy(
 
558
    'BzrDir.has_workingtree', 'bzrlib.smart.bzrdir',
 
559
    'SmartServerBzrDirRequestHasWorkingTree')
 
560
request_handlers.register_lazy(
 
561
    'BzrDir.destroy_repository', 'bzrlib.smart.bzrdir',
 
562
    'SmartServerBzrDirRequestDestroyRepository')
 
563
request_handlers.register_lazy(
558
564
    'BzrDirFormat.initialize', 'bzrlib.smart.bzrdir',
559
565
    'SmartServerRequestInitializeBzrDir')
560
566
request_handlers.register_lazy(
616
622
request_handlers.register_lazy(
617
623
    'Repository.has_revision', 'bzrlib.smart.repository', 'SmartServerRequestHasRevision')
618
624
request_handlers.register_lazy(
 
625
    'Repository.has_signature_for_revision_id', 'bzrlib.smart.repository',
 
626
    'SmartServerRequestHasSignatureForRevisionId')
 
627
request_handlers.register_lazy(
619
628
    'Repository.insert_stream', 'bzrlib.smart.repository', 'SmartServerRepositoryInsertStream')
620
629
request_handlers.register_lazy(
621
630
    'Repository.insert_stream_1.19', 'bzrlib.smart.repository', 'SmartServerRepositoryInsertStream_1_19')
626
635
request_handlers.register_lazy(
627
636
    'Repository.lock_write', 'bzrlib.smart.repository', 'SmartServerRepositoryLockWrite')
628
637
request_handlers.register_lazy(
 
638
    'Repository.make_working_trees', 'bzrlib.smart.repository', 'SmartServerRepositoryMakeWorkingTrees')
 
639
request_handlers.register_lazy(
629
640
    'Repository.set_make_working_trees', 'bzrlib.smart.repository',
630
641
    'SmartServerRepositorySetMakeWorkingTrees')
631
642
request_handlers.register_lazy(