/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Jelmer Vernooij
  • Date: 2011-09-05 14:16:12 UTC
  • mto: (6123.1.5 +trunk)
  • mto: This revision was merged to the branch mainline in revision 6124.
  • Revision ID: jelmer@samba.org-20110905141612-o8t6zu2tjezh2vk3
Move flags to BranchFormat.

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.