~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Jelmer Vernooij
  • Date: 2011-09-07 11:51:20 UTC
  • mfrom: (6123.1.9 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6130.
  • Revision ID: jelmer@samba.org-20110907115120-ugiagn73ovvd7ylb
Merge bzr.dev.

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.