~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Ian Clatworthy
  • Date: 2009-03-28 01:27:54 UTC
  • mto: (4229.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4230.
  • Revision ID: ian.clatworthy@canonical.com-20090328012754-et08kurwwapknnbz
replace experimental development-wt5 formats with 1.14 formats

Show diffs side-by-side

added added

removed removed

Lines of Context:
3342
3342
    branch_format='bzrlib.branch.BzrBranchFormat7',
3343
3343
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3344
3344
    )
3345
 
format_registry.register_metadir('development-wt5',
 
3345
format_registry.register_metadir('1.14',
3346
3346
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3347
3347
    help='A working-tree format that supports views and content filtering.',
3348
3348
    branch_format='bzrlib.branch.BzrBranchFormat7',
3349
3349
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
3350
 
    experimental=True,
3351
3350
    )
3352
 
format_registry.register_metadir('development-wt5-rich-root',
 
3351
format_registry.register_metadir('1.14-rich-root',
3353
3352
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3354
 
    help='A variant of development-wt5 that supports rich-root data '
 
3353
    help='A variant of 1.14 that supports rich-root data '
3355
3354
         '(needed for bzr-svn and bzr-git).',
3356
3355
    branch_format='bzrlib.branch.BzrBranchFormat7',
3357
3356
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
3358
 
    experimental=True,
3359
3357
    )
3360
3358
# The following two formats should always just be aliases.
3361
3359
format_registry.register_metadir('development',