~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

Merge in real stacked repository work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2696
2696
    )
2697
2697
# The following two formats should always just be aliases.
2698
2698
format_registry.register_metadir('development',
2699
 
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
 
2699
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment1',
2700
2700
    help='Current development format. Can convert data to and from pack-0.92 '
2701
2701
        '(and anything compatible with pack-0.92) format repositories. '
2702
2702
        'Repositories and branches in this format can only be read by bzr.dev. '
2709
2709
    alias=True,
2710
2710
    )
2711
2711
format_registry.register_metadir('development-subtree',
2712
 
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
 
2712
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment1Subtree',
2713
2713
    help='Current development format, subtree variant. Can convert data to and '
2714
 
        'from pack-0.92 (and anything compatible with pack-0.92) format '
2715
 
        'repositories. Repositories and branches in this format can only be '
2716
 
        'read by bzr.dev. Please read '
 
2714
        'from pack-0.92-subtree (and anything compatible with '
 
2715
        'pack-0.92-subtree) format repositories. Repositories and branches in '
 
2716
        'this format can only be read by bzr.dev. Please read '
2717
2717
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
2718
2718
        'before use.',
2719
2719
    branch_format='bzrlib.branch.BzrBranchFormat7',
2745
2745
    experimental=True,
2746
2746
    )
2747
2747
format_registry.register_metadir('development1',
2748
 
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack1',
2749
 
    help='pack-0.92 with a branch that supports stacking. '
 
2748
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment1',
 
2749
    help='A branch and pack based repository that support stacking. '
2750
2750
        'Please read '
2751
2751
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
2752
2752
        'before use.',
2756
2756
    experimental=True,
2757
2757
    )
2758
2758
format_registry.register_metadir('development1-subtree',
2759
 
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack3',
2760
 
    help='pack-0.92-subtree with a branch that supports stacking. '
 
2759
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment1Subtree',
 
2760
    help='A branch and pack based repository that support stacking. '
2761
2761
        'Please read '
2762
2762
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
2763
2763
        'before use.',