~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Jonathan Riddell
  • Date: 2011-09-07 14:38:26 UTC
  • mfrom: (6123.1.10 +trunk)
  • mto: (6123.1.14 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6124.
  • Revision ID: jriddell@canonical.com-20110907143826-aewhasbrhsq8khyp
mergeĀ inĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1739
1739
        """True if this format supports tags stored in the branch"""
1740
1740
        return False  # by default
1741
1741
 
 
1742
    def tags_are_versioned(self):
 
1743
        """Whether the tag container for this branch versions tags."""
 
1744
        return False
 
1745
 
 
1746
    def supports_tags_referencing_ghosts(self):
 
1747
        """True if tags can reference ghost revisions."""
 
1748
        return True
 
1749
 
1742
1750
 
1743
1751
class MetaDirBranchFormatFactory(registry._LazyObjectGetter):
1744
1752
    """A factory for a BranchFormat object, permitting simple lazy registration.