~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-21 05:55:17 UTC
  • mfrom: (4977.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100121055517-y5ngh2uifz7ua7we
(igc) Hide most storage formats

Show diffs side-by-side

added added

removed removed

Lines of Context:
3714
3714
format_registry.register('weave', BzrDirFormat6,
3715
3715
    'Pre-0.8 format.  Slower than knit and does not'
3716
3716
    ' support checkouts or shared repositories.',
 
3717
    hidden=True,
3717
3718
    deprecated=True)
3718
3719
format_registry.register_metadir('metaweave',
3719
3720
    'bzrlib.repofmt.weaverepo.RepositoryFormat7',
3720
3721
    'Transitional format in 0.8.  Slower than knit.',
3721
3722
    branch_format='bzrlib.branch.BzrBranchFormat5',
3722
3723
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
 
3724
    hidden=True,
3723
3725
    deprecated=True)
3724
3726
format_registry.register_metadir('knit',
3725
3727
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3726
3728
    'Format using knits.  Recommended for interoperation with bzr <= 0.14.',
3727
3729
    branch_format='bzrlib.branch.BzrBranchFormat5',
3728
3730
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
 
3731
    hidden=True,
3729
3732
    deprecated=True)
3730
3733
format_registry.register_metadir('dirstate',
3731
3734
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3735
3738
    # this uses bzrlib.workingtree.WorkingTreeFormat4 because importing
3736
3739
    # directly from workingtree_4 triggers a circular import.
3737
3740
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3741
    hidden=True,
3738
3742
    deprecated=True)
3739
3743
format_registry.register_metadir('dirstate-tags',
3740
3744
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3743
3747
        ' Incompatible with bzr < 0.15.',
3744
3748
    branch_format='bzrlib.branch.BzrBranchFormat6',
3745
3749
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3750
    hidden=True,
3746
3751
    deprecated=True)
3747
3752
format_registry.register_metadir('rich-root',
3748
3753
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit4',
3750
3755
        ' bzr < 1.0.',
3751
3756
    branch_format='bzrlib.branch.BzrBranchFormat6',
3752
3757
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3758
    hidden=True,
3753
3759
    deprecated=True)
3754
3760
format_registry.register_metadir('dirstate-with-subtree',
3755
3761
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit3',
3791
3797
         '(needed for bzr-svn and bzr-git).',
3792
3798
    branch_format='bzrlib.branch.BzrBranchFormat6',
3793
3799
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3800
    hidden=True,
3794
3801
    )
3795
3802
format_registry.register_metadir('1.6',
3796
3803
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5',
3799
3806
         'not present locally.',
3800
3807
    branch_format='bzrlib.branch.BzrBranchFormat7',
3801
3808
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3809
    hidden=True,
3802
3810
    )
3803
3811
format_registry.register_metadir('1.6.1-rich-root',
3804
3812
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5RichRoot',
3806
3814
         '(needed for bzr-svn and bzr-git).',
3807
3815
    branch_format='bzrlib.branch.BzrBranchFormat7',
3808
3816
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3817
    hidden=True,
3809
3818
    )
3810
3819
format_registry.register_metadir('1.9',
3811
3820
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3814
3823
         'performance for most operations.',
3815
3824
    branch_format='bzrlib.branch.BzrBranchFormat7',
3816
3825
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3826
    hidden=True,
3817
3827
    )
3818
3828
format_registry.register_metadir('1.9-rich-root',
3819
3829
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3821
3831
         '(needed for bzr-svn and bzr-git).',
3822
3832
    branch_format='bzrlib.branch.BzrBranchFormat7',
3823
3833
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3834
    hidden=True,
3824
3835
    )
3825
3836
format_registry.register_metadir('1.14',
3826
3837
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3848
3859
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3849
3860
    experimental=True,
3850
3861
    alias=True,
 
3862
    hidden=True,
3851
3863
    )
3852
3864
format_registry.register_metadir('development-subtree',
3853
3865
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2Subtree',
3860
3872
    branch_format='bzrlib.branch.BzrBranchFormat7',
3861
3873
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3862
3874
    experimental=True,
 
3875
    hidden=True,
3863
3876
    alias=False, # Restore to being an alias when an actual development subtree format is added
3864
3877
                 # This current non-alias status is simply because we did not introduce a
3865
3878
                 # chk based subtree format.
3909
3922
    branch_format='bzrlib.branch.BzrBranchFormat7',
3910
3923
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3911
3924
    alias=True,
 
3925
    hidden=True,
3912
3926
    help='Same as 2a.')
3913
3927
 
3914
3928
# The current format that is made on 'bzr init'.