~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: John Arbash Meinel
  • Date: 2008-10-28 22:19:31 UTC
  • mto: (3815.2.1 prepare-1.9)
  • mto: This revision was merged to the branch mainline in revision 3816.
  • Revision ID: john@arbash-meinel.com-20081028221931-uk9oan2xkocd0gis
Add repository 1.9 format, and update the documentation.

Help people generating new repository formats find all the locations
they need to update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3047
3047
    branch_format='bzrlib.branch.BzrBranchFormat7',
3048
3048
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3049
3049
    )
 
3050
format_registry.register_metadir('1.9',
 
3051
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
 
3052
    help='A branch and pack based repository that uses btree indexes. ',
 
3053
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3054
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3055
    )
 
3056
format_registry.register_metadir('1.9-rich-root',
 
3057
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
 
3058
    help='A branch and pack based repository that uses btree indexes '
 
3059
         'and rich root data (needed for bzr-svn). ',
 
3060
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3061
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3062
    )
3050
3063
# The following two formats should always just be aliases.
3051
3064
format_registry.register_metadir('development',
3052
3065
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2',