~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/smart/request.py

  • Committer: Vincent Ladeuil
  • Date: 2011-11-24 15:48:29 UTC
  • mfrom: (6289 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6337.
  • Revision ID: v.ladeuil+lp@free.fr-20111124154829-avowjpsxdl8yp2vz
merge trunk resolving conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
498
498
    'Branch.get_config_file', 'bzrlib.smart.branch',
499
499
    'SmartServerBranchGetConfigFile')
500
500
request_handlers.register_lazy(
 
501
    'Branch.put_config_file', 'bzrlib.smart.branch',
 
502
    'SmartServerBranchPutConfigFile')
 
503
request_handlers.register_lazy(
501
504
    'Branch.get_parent', 'bzrlib.smart.branch', 'SmartServerBranchGetParent')
502
505
request_handlers.register_lazy(
503
506
    'Branch.get_tags_bytes', 'bzrlib.smart.branch',
555
558
    'BzrDir.get_config_file', 'bzrlib.smart.bzrdir',
556
559
    'SmartServerBzrDirRequestConfigFile')
557
560
request_handlers.register_lazy(
 
561
    'BzrDir.has_workingtree', 'bzrlib.smart.bzrdir',
 
562
    'SmartServerBzrDirRequestHasWorkingTree')
 
563
request_handlers.register_lazy(
 
564
    'BzrDir.destroy_repository', 'bzrlib.smart.bzrdir',
 
565
    'SmartServerBzrDirRequestDestroyRepository')
 
566
request_handlers.register_lazy(
558
567
    'BzrDirFormat.initialize', 'bzrlib.smart.bzrdir',
559
568
    'SmartServerRequestInitializeBzrDir')
560
569
request_handlers.register_lazy(
613
622
request_handlers.register_lazy(
614
623
    'Repository.has_revision', 'bzrlib.smart.repository', 'SmartServerRequestHasRevision')
615
624
request_handlers.register_lazy(
 
625
    'Repository.has_signature_for_revision_id', 'bzrlib.smart.repository',
 
626
    'SmartServerRequestHasSignatureForRevisionId')
 
627
request_handlers.register_lazy(
616
628
    'Repository.insert_stream', 'bzrlib.smart.repository', 'SmartServerRepositoryInsertStream')
617
629
request_handlers.register_lazy(
618
630
    'Repository.insert_stream_1.19', 'bzrlib.smart.repository', 'SmartServerRepositoryInsertStream_1_19')
623
635
request_handlers.register_lazy(
624
636
    'Repository.lock_write', 'bzrlib.smart.repository', 'SmartServerRepositoryLockWrite')
625
637
request_handlers.register_lazy(
 
638
    'Repository.make_working_trees', 'bzrlib.smart.repository', 'SmartServerRepositoryMakeWorkingTrees')
 
639
request_handlers.register_lazy(
626
640
    'Repository.set_make_working_trees', 'bzrlib.smart.repository',
627
641
    'SmartServerRepositorySetMakeWorkingTrees')
628
642
request_handlers.register_lazy(