~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-25 08:29:08 UTC
  • mfrom: (2940.1.2 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20071025082908-abn3kunrb2ivdvth
renaming of experimental pack formats to include knitpack in their name (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1660
1660
class RepositoryFormatKnitPack1(RepositoryFormatPack):
1661
1661
    """A no-subtrees parameterised Pack repository.
1662
1662
 
1663
 
    This format was introduced in bzr.dev.
 
1663
    This format was introduced in 0.92.
1664
1664
    """
1665
1665
 
1666
1666
    repository_class = KnitPackRepository
1668
1668
    _serializer = xml5.serializer_v5
1669
1669
 
1670
1670
    def _get_matching_bzrdir(self):
1671
 
        return bzrdir.format_registry.make_bzrdir('experimental')
 
1671
        return bzrdir.format_registry.make_bzrdir('knitpack-experimental')
1672
1672
 
1673
1673
    def _ignore_setting_bzrdir(self, format):
1674
1674
        pass
1677
1677
 
1678
1678
    def get_format_string(self):
1679
1679
        """See RepositoryFormat.get_format_string()."""
1680
 
        return "Bazaar Experimental no-subtrees\n"
 
1680
        return "Bazaar pack repository format 1 (needs bzr 0.92)\n"
1681
1681
 
1682
1682
    def get_format_description(self):
1683
1683
        """See RepositoryFormat.get_format_description()."""
1684
 
        return "Experimental no-subtrees"
 
1684
        return "Packs containing knits without subtree support"
1685
1685
 
1686
1686
    def check_conversion_target(self, target_format):
1687
1687
        pass
1694
1694
     - support for recording full info about the tree root
1695
1695
     - support for recording tree-references
1696
1696
 
1697
 
    This format was introduced in bzr.dev.
 
1697
    This format was introduced in 0.92.
1698
1698
    """
1699
1699
 
1700
1700
    repository_class = KnitPackRepository
1704
1704
    _serializer = xml7.serializer_v7
1705
1705
 
1706
1706
    def _get_matching_bzrdir(self):
1707
 
        return bzrdir.format_registry.make_bzrdir('experimental-subtree')
 
1707
        return bzrdir.format_registry.make_bzrdir(
 
1708
            'knitpack-subtree-experimental')
1708
1709
 
1709
1710
    def _ignore_setting_bzrdir(self, format):
1710
1711
        pass
1721
1722
            
1722
1723
    def get_format_string(self):
1723
1724
        """See RepositoryFormat.get_format_string()."""
1724
 
        return "Bazaar Experimental subtrees\n"
 
1725
        return "Bazaar pack repository format 1 with subtree support (needs bzr 0.92)\n"
1725
1726
 
1726
1727
    def get_format_description(self):
1727
1728
        """See RepositoryFormat.get_format_description()."""
1728
 
        return "Experimental subtrees\n"
 
1729
        return "Packs containing knits with subtree support\n"