~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

create thread for bbc

Show diffs side-by-side

added added

removed removed

Lines of Context:
3407
3407
    hidden=True,
3408
3408
    experimental=True,
3409
3409
    )
3410
 
# The following format should be an alias for the rich root equivalent 
 
3410
format_registry.register_metadir('development5',
 
3411
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment5',
 
3412
    help='1.9 with CHK inventories with parent_id index. '
 
3413
        'Please read '
 
3414
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3415
        'before use.',
 
3416
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3417
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3418
    hidden=True,
 
3419
    experimental=True,
 
3420
    )
 
3421
format_registry.register_metadir('development5-subtree',
 
3422
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment5Subtree',
 
3423
    help='1.9-subtree with CHK Inventories with parent_id index. '
 
3424
        'Please read '
 
3425
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3426
        'before use.',
 
3427
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3428
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3429
    hidden=True,
 
3430
    experimental=True,
 
3431
    )
 
3432
format_registry.register_metadir('development5-hash16',
 
3433
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment5Hash16',
 
3434
    help='1.9 with CHK inventories with parent_id index and 16-way hash trie. '
 
3435
        'Please read '
 
3436
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3437
        'before use.',
 
3438
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3439
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3440
    hidden=True,
 
3441
    experimental=True,
 
3442
    )
 
3443
format_registry.register_metadir('development5-hash255',
 
3444
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment5Hash255',
 
3445
    help='1.9 with CHK inventories with parent_id index and 255-way hash trie. '
 
3446
        'Please read '
 
3447
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3448
        'before use.',
 
3449
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3450
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3451
    hidden=True,
 
3452
    experimental=True,
 
3453
    )
 
3454
# XXX: This format is scheduled for termination
 
3455
# format_registry.register_metadir('gc-no-rich-root',
 
3456
#     'bzrlib.repofmt.groupcompress_repo.RepositoryFormatPackGCPlain',
 
3457
#     help='pack-1.9 with xml inv, group compress '
 
3458
#         'Please read '
 
3459
#         'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3460
#         'before use.',
 
3461
#     branch_format='bzrlib.branch.BzrBranchFormat7',
 
3462
#     tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3463
#     hidden=False,
 
3464
#     experimental=True,
 
3465
#     )
 
3466
format_registry.register_metadir('gc-chk16',
 
3467
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatPackGCCHK16',
 
3468
    help='pack-1.9 with 16-way hashed CHK inv, group compress, rich roots. '
 
3469
        'Please read '
 
3470
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3471
        'before use.',
 
3472
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3473
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3474
    hidden=False,
 
3475
    experimental=True,
 
3476
    )
 
3477
format_registry.register_metadir('gc-chk255',
 
3478
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatPackGCCHK255',
 
3479
    help='pack-1.9 with 255-way hashed CHK inv, group compress, rich roots '
 
3480
        'Please read '
 
3481
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3482
        'before use.',
 
3483
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3484
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3485
    hidden=False,
 
3486
    experimental=True,
 
3487
    )
 
3488
format_registry.register_metadir('gc-chk255-big',
 
3489
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatPackGCCHK255Big',
 
3490
    help='pack-1.9 with 255-way hashed CHK inv, group compress, rich roots '
 
3491
        'Please read '
 
3492
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3493
        'before use.',
 
3494
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3495
    tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
3496
    hidden=False,
 
3497
    experimental=True,
 
3498
    )
 
3499
 
 
3500
# The following format should be an alias for the rich root equivalent
3411
3501
# of the default format
3412
3502
format_registry.register_metadir('default-rich-root',
3413
3503
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',