~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Aaron Bentley
  • Date: 2007-01-15 13:10:20 UTC
  • mto: (2255.6.1 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: aaron.bentley@utoronto.ca-20070115131020-wr397y8izr6i2epm
Work on checking out by-reference trees

Show diffs side-by-side

added added

removed removed

Lines of Context:
1832
1832
    repository_class = KnitRepository3
1833
1833
    support_tree_reference = True
1834
1834
 
 
1835
    def _get_matching_bzrdir(self):
 
1836
        return bzrdir.format_registry.make_bzrdir('experimental-knit3')
 
1837
 
 
1838
    def _ignore_setting_bzrdir(self, format):
 
1839
        pass
 
1840
 
 
1841
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
 
1842
 
1835
1843
    def check_conversion_target(self, target_format):
1836
1844
        RepositoryFormatKnit2.check_conversion_target(self, target_format)
1837
1845
        if not getattr(target_format, 'support_tree_reference', False):