~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Ian Clatworthy
  • Date: 2008-07-31 12:08:45 UTC
  • mto: (3586.1.15 views-ui)
  • mto: This revision was merged to the branch mainline in revision 4030.
  • Revision ID: ian.clatworthy@canonical.com-20080731120845-n6fdr61i16o16a0u
add 1.7 and 1.7-rich-root formats

Show diffs side-by-side

added added

removed removed

Lines of Context:
3041
3041
    branch_format='bzrlib.branch.BzrBranchFormat7',
3042
3042
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3043
3043
    )
 
3044
format_registry.register_metadir('1.7',
 
3045
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5',
 
3046
    help='A format that supports stacking, views and content filtering',
 
3047
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3048
    tree_format='bzrlib.workingtree_5.WorkingTreeFormat5',
 
3049
    )
 
3050
format_registry.register_metadir('1.7-rich-root',
 
3051
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5RichRoot',
 
3052
    help='A format that supports stacking, views, content filtering '
 
3053
         'and rich root data (needed for bzr-svn). ',
 
3054
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3055
    tree_format='bzrlib.workingtree_5.WorkingTreeFormat5',
 
3056
    )
3044
3057
# The following two formats should always just be aliases.
3045
3058
format_registry.register_metadir('development',
3046
3059
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment1',