~weyrick/bzr/54624-warn-on-large-files

« back to all changes in this revision

Viewing changes to bzrlib/controldir.py

  • Committer: Shannon Weyrick
  • Date: 2011-08-19 22:26:03 UTC
  • mfrom: (6046.2.37 +trunk)
  • Revision ID: weyrick@mozek.us-20110819222603-625cb10d0yhtoh1q
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    revision as _mod_revision,
32
32
    transport as _mod_transport,
33
33
    ui,
 
34
    urlutils,
34
35
    )
35
36
from bzrlib.push import (
36
37
    PushResult,
193
194
        """
194
195
        raise NotImplementedError(self.destroy_workingtree_metadata)
195
196
 
 
197
    def find_branch_format(self, name=None):
 
198
        """Find the branch 'format' for this bzrdir.
 
199
 
 
200
        This might be a synthetic object for e.g. RemoteBranch and SVN.
 
201
        """
 
202
        raise NotImplementedError(self.find_branch_format)
 
203
 
196
204
    def get_branch_reference(self, name=None):
197
205
        """Return the referenced URL for the branch in this controldir.
198
206
 
266
274
        except errors.NotBranchError:
267
275
            return False
268
276
 
 
277
    def _get_selected_branch(self):
 
278
        """Return the name of the branch selected by the user.
 
279
 
 
280
        :return: Name of the branch selected by the user, or None.
 
281
        """
 
282
        branch = self.root_transport.get_segment_parameters().get("branch")
 
283
        if branch is not None:
 
284
            branch = urlutils.unescape(branch)
 
285
        return branch
 
286
 
269
287
    def has_workingtree(self):
270
288
        """Tell if this controldir contains a working tree.
271
289