~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Aaron Bentley
  • Date: 2007-11-25 17:54:55 UTC
  • mto: This revision was merged to the branch mainline in revision 3026.
  • Revision ID: aaron.bentley@utoronto.ca-20071125175455-3zoctrg96t1hmt1s
Implement rich-root-pack format ( #164639)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2527
2527
    hidden=True,
2528
2528
    experimental=True,
2529
2529
    )
 
2530
format_registry.register_metadir('rich-root-pack',
 
2531
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack4',
 
2532
    help='New in 1.0: Pack-based format with data compatible with '
 
2533
        'rich-root format repositories. Interoperates with '
 
2534
        'bzr repositories before 0.92 but cannot be read by bzr < 1.0. '
 
2535
        'NOTE: This format is experimental. Before using it, please read '
 
2536
        'http://doc.bazaar-vcs.org/latest/developers/knitpack.html.',
 
2537
    branch_format='bzrlib.branch.BzrBranchFormat6',
 
2538
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
2539
    hidden=False,
 
2540
    experimental=True,
 
2541
    )
2530
2542
format_registry.set_default('dirstate-tags')