~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/weave_fmt/branch.py

  • Committer: INADA Naoki
  • Date: 2011-05-05 09:15:34 UTC
  • mto: (5830.3.3 i18n-msgfmt)
  • mto: This revision was merged to the branch mainline in revision 5873.
  • Revision ID: songofacandy@gmail.com-20110505091534-7sv835xpofwrmpt4
Add update-pot command to Makefile and tools/bzrgettext script that
extracts help text from bzr commands.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
from bzrlib.branch import (
27
27
    BranchFormat,
28
 
    FullHistoryBzrBranch,
 
28
    BzrBranch,
29
29
    )
30
30
 
31
31
 
32
 
class BzrBranch4(FullHistoryBzrBranch):
33
 
    """Branch format 4."""
 
32
class PreSplitOutBzrBranch(BzrBranch):
34
33
 
35
34
    def _get_checkout_format(self):
36
35
        """Return the most suitable metadir for a checkout of this branch.
41
40
        format.repository_format = RepositoryFormat7()
42
41
        return format
43
42
 
44
 
    def unbind(self):
45
 
        raise errors.UpgradeRequired(self.user_url)
46
 
 
47
 
    def bind(self, other):
48
 
        raise errors.UpgradeRequired(self.user_url)
49
 
 
50
 
    def set_bound_location(self, location):
51
 
        raise NotImplementedError(self.set_bound_location)
52
 
 
53
 
    def get_bound_location(self):
54
 
        return None
55
 
 
56
 
    def update(self):
57
 
        return None
58
 
 
59
 
    def get_master_branch(self, possible_transports=None):
60
 
        return None
61
 
 
62
43
 
63
44
class BzrBranchFormat4(BranchFormat):
64
45
    """Bzr branch format 4.
66
47
    This format has:
67
48
     - a revision-history file.
68
49
     - a branch-lock lock file [ to be shared with the bzrdir ]
69
 
 
70
 
    It does not support binding.
71
50
    """
72
51
 
73
52
    def initialize(self, a_bzrdir, name=None, repository=None):
136
115
            raise NotImplementedError
137
116
        if found_repository is None:
138
117
            found_repository = a_bzrdir.open_repository()
139
 
        return BzrBranch4(_format=self,
 
118
        return PreSplitOutBzrBranch(_format=self,
140
119
                         _control_files=a_bzrdir._control_files,
141
120
                         a_bzrdir=a_bzrdir,
142
121
                         name=name,