~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
2504
2504
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
2505
2505
    hidden=True,
2506
2506
    )
2507
 
format_registry.register_metadir('knitpack-experimental',
 
2507
format_registry.register_metadir('pack-0.92',
2508
2508
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
2509
2509
    help='New in 0.92: Pack-based format with data compatible with '
2510
2510
        'dirstate-tags format repositories. Interoperates with '
2511
2511
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
2512
 
        'NOTE: This format is experimental. Before using it, please read '
2513
 
        'http://doc.bazaar-vcs.org/latest/developers/knitpack.html.',
 
2512
        'Previously called knitpack-experimental.  '
 
2513
        'For more information, see '
 
2514
        'http://doc.bazaar-vcs.org/latest/developers/packrepo.html.',
2514
2515
    branch_format='bzrlib.branch.BzrBranchFormat6',
2515
2516
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
2516
2517
    experimental=True,
2517
2518
    )
2518
 
format_registry.register_metadir('knitpack-subtree-experimental',
 
2519
format_registry.register_metadir('pack-0.92-subtree',
2519
2520
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
2520
2521
    help='New in 0.92: Pack-based format with data compatible with '
2521
2522
        'dirstate-with-subtree format repositories. Interoperates with '
2522
2523
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
 
2524
        'Previously called knitpack-experimental.  '
 
2525
        'For more information, see '
 
2526
        'http://doc.bazaar-vcs.org/latest/developers/packrepo.html.',
 
2527
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2528
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2529
    hidden=True,
 
2530
    experimental=True,
 
2531
    )
 
2532
format_registry.register_metadir('rich-root-pack',
 
2533
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
 
2534
    help='New in 1.0: Pack-based format with data compatible with '
 
2535
        'rich-root format repositories. Interoperates with '
 
2536
        'bzr repositories before 0.92 but cannot be read by bzr < 1.0. '
2523
2537
        'NOTE: This format is experimental. Before using it, please read '
2524
2538
        'http://doc.bazaar-vcs.org/latest/developers/knitpack.html.',
2525
2539
    branch_format='bzrlib.branch.BzrBranchFormat6',
2526
2540
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
2527
 
    hidden=True,
 
2541
    hidden=False,
2528
2542
    experimental=True,
2529
2543
    )
2530
2544
format_registry.set_default('dirstate-tags')