/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Ian Clatworthy
  • Date: 2007-10-25 04:57:32 UTC
  • mto: (2940.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 2941.
  • Revision ID: ian.clatworthy@internode.on.net-20071025045732-pa2fqvj0hdjppmxj
review feedback from lifeless

Show diffs side-by-side

added added

removed removed

Lines of Context:
2489
2489
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
2490
2490
    hidden=True,
2491
2491
    )
2492
 
format_registry.register_metadir('knitpack',
 
2492
format_registry.register_metadir('knitpack-experimental',
2493
2493
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
2494
2494
    help='New in 0.92: Pack-based format with data compatible with '
2495
2495
        'dirstate-tags format repositories. Incompatible with bzr < 0.92. '
2496
 
        'WARNING: This format is experimental so data in it may '
2497
 
        'not be upgradable to release formats of bzr.',
 
2496
        'NOTE: This format is experimental. Before using it, please read '
 
2497
        'http://doc.bazaar-vcs.org/latest/developers/knitpack.html.',
2498
2498
    branch_format='bzrlib.branch.BzrBranchFormat6',
2499
2499
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
2500
2500
    experimental=True,
2501
2501
    )
2502
 
format_registry.register_metadir('knitpack-subtree',
 
2502
format_registry.register_metadir('knitpack-subtree-experimental',
2503
2503
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
2504
2504
    help='New in 0.92: Pack-based format with data compatible with '
2505
2505
        'dirstate-with-subtree format repositories. '
2506
2506
        'Incompatible with bzr < 0.92. '
2507
 
        'WARNING: This format is experimental so data in it may '
2508
 
        'not be upgradable to release formats of bzr.',
 
2507
        'NOTE: This format is experimental. Before using it, please read '
 
2508
        'http://doc.bazaar-vcs.org/latest/developers/knitpack.html.',
2509
2509
    branch_format='bzrlib.branch.BzrBranchFormat6',
2510
2510
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
2511
2511
    hidden=True,
 
2512
    experimental=True,
2512
2513
    )
2513
2514
format_registry.set_default('dirstate-tags')