/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: Martin Pool
  • Date: 2010-02-09 19:04:02 UTC
  • mfrom: (5010 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5019.
  • Revision ID: mbp@canonical.com-20100209190402-2xbzrchmb4dfi2j7
Resolve conflicts with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
3725
3725
format_registry.register('weave', BzrDirFormat6,
3726
3726
    'Pre-0.8 format.  Slower than knit and does not'
3727
3727
    ' support checkouts or shared repositories.',
 
3728
    hidden=True,
3728
3729
    deprecated=True)
3729
3730
format_registry.register_metadir('metaweave',
3730
3731
    'bzrlib.repofmt.weaverepo.RepositoryFormat7',
3731
3732
    'Transitional format in 0.8.  Slower than knit.',
3732
3733
    branch_format='bzrlib.branch.BzrBranchFormat5',
3733
3734
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
 
3735
    hidden=True,
3734
3736
    deprecated=True)
3735
3737
format_registry.register_metadir('knit',
3736
3738
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3737
3739
    'Format using knits.  Recommended for interoperation with bzr <= 0.14.',
3738
3740
    branch_format='bzrlib.branch.BzrBranchFormat5',
3739
3741
    tree_format='bzrlib.workingtree.WorkingTreeFormat3',
 
3742
    hidden=True,
3740
3743
    deprecated=True)
3741
3744
format_registry.register_metadir('dirstate',
3742
3745
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3746
3749
    # this uses bzrlib.workingtree.WorkingTreeFormat4 because importing
3747
3750
    # directly from workingtree_4 triggers a circular import.
3748
3751
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3752
    hidden=True,
3749
3753
    deprecated=True)
3750
3754
format_registry.register_metadir('dirstate-tags',
3751
3755
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit1',
3754
3758
        ' Incompatible with bzr < 0.15.',
3755
3759
    branch_format='bzrlib.branch.BzrBranchFormat6',
3756
3760
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3761
    hidden=True,
3757
3762
    deprecated=True)
3758
3763
format_registry.register_metadir('rich-root',
3759
3764
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit4',
3761
3766
        ' bzr < 1.0.',
3762
3767
    branch_format='bzrlib.branch.BzrBranchFormat6',
3763
3768
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3769
    hidden=True,
3764
3770
    deprecated=True)
3765
3771
format_registry.register_metadir('dirstate-with-subtree',
3766
3772
    'bzrlib.repofmt.knitrepo.RepositoryFormatKnit3',
3777
3783
    help='New in 0.92: Pack-based format with data compatible with '
3778
3784
        'dirstate-tags format repositories. Interoperates with '
3779
3785
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
3780
 
        'Previously called knitpack-experimental.  '
3781
 
        'For more information, see '
3782
 
        'http://doc.bazaar-vcs.org/latest/developers/packrepo.html.',
 
3786
        ,
3783
3787
    branch_format='bzrlib.branch.BzrBranchFormat6',
3784
3788
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3785
3789
    )
3788
3792
    help='New in 0.92: Pack-based format with data compatible with '
3789
3793
        'dirstate-with-subtree format repositories. Interoperates with '
3790
3794
        'bzr repositories before 0.92 but cannot be read by bzr < 0.92. '
3791
 
        'Previously called knitpack-experimental.  '
3792
 
        'For more information, see '
3793
 
        'http://doc.bazaar-vcs.org/latest/developers/packrepo.html.',
 
3795
        ,
3794
3796
    branch_format='bzrlib.branch.BzrBranchFormat6',
3795
3797
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3796
3798
    hidden=True,
3802
3804
         '(needed for bzr-svn and bzr-git).',
3803
3805
    branch_format='bzrlib.branch.BzrBranchFormat6',
3804
3806
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3807
    hidden=True,
3805
3808
    )
3806
3809
format_registry.register_metadir('1.6',
3807
3810
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5',
3810
3813
         'not present locally.',
3811
3814
    branch_format='bzrlib.branch.BzrBranchFormat7',
3812
3815
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3816
    hidden=True,
3813
3817
    )
3814
3818
format_registry.register_metadir('1.6.1-rich-root',
3815
3819
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5RichRoot',
3817
3821
         '(needed for bzr-svn and bzr-git).',
3818
3822
    branch_format='bzrlib.branch.BzrBranchFormat7',
3819
3823
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3824
    hidden=True,
3820
3825
    )
3821
3826
format_registry.register_metadir('1.9',
3822
3827
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3825
3830
         'performance for most operations.',
3826
3831
    branch_format='bzrlib.branch.BzrBranchFormat7',
3827
3832
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3833
    hidden=True,
3828
3834
    )
3829
3835
format_registry.register_metadir('1.9-rich-root',
3830
3836
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6RichRoot',
3832
3838
         '(needed for bzr-svn and bzr-git).',
3833
3839
    branch_format='bzrlib.branch.BzrBranchFormat7',
3834
3840
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3841
    hidden=True,
3835
3842
    )
3836
3843
format_registry.register_metadir('1.14',
3837
3844
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack6',
3853
3860
        'to and from rich-root-pack (and anything compatible with '
3854
3861
        'rich-root-pack) format repositories. Repositories and branches in '
3855
3862
        'this format can only be read by bzr.dev. Please read '
3856
 
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3863
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
3857
3864
        'before use.',
3858
3865
    branch_format='bzrlib.branch.BzrBranchFormat7',
3859
3866
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3860
3867
    experimental=True,
3861
3868
    alias=True,
 
3869
    hidden=True,
3862
3870
    )
3863
3871
format_registry.register_metadir('development-subtree',
3864
3872
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment2Subtree',
3866
3874
        'from pack-0.92-subtree (and anything compatible with '
3867
3875
        'pack-0.92-subtree) format repositories. Repositories and branches in '
3868
3876
        'this format can only be read by bzr.dev. Please read '
3869
 
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3877
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
3870
3878
        'before use.',
3871
3879
    branch_format='bzrlib.branch.BzrBranchFormat7',
3872
3880
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3873
3881
    experimental=True,
 
3882
    hidden=True,
3874
3883
    alias=False, # Restore to being an alias when an actual development subtree format is added
3875
3884
                 # This current non-alias status is simply because we did not introduce a
3876
3885
                 # chk based subtree format.
3881
3890
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK1',
3882
3891
    help='pack-1.9 with 255-way hashed CHK inv, group compress, rich roots '
3883
3892
        'Please read '
3884
 
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3893
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
3885
3894
        'before use.',
3886
3895
    branch_format='bzrlib.branch.BzrBranchFormat7',
3887
3896
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3893
3902
    'bzrlib.repofmt.groupcompress_repo.RepositoryFormatCHK2',
3894
3903
    help='pack-1.9 with 255-way hashed CHK inv, bencode revision, group compress, '
3895
3904
        'rich roots. Please read '
3896
 
        'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
3905
        'http://doc.bazaar.canonical.com/latest/developers/development-repo.html '
3897
3906
        'before use.',
3898
3907
    branch_format='bzrlib.branch.BzrBranchFormat7',
3899
3908
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3920
3929
    branch_format='bzrlib.branch.BzrBranchFormat7',
3921
3930
    tree_format='bzrlib.workingtree.WorkingTreeFormat6',
3922
3931
    alias=True,
 
3932
    hidden=True,
3923
3933
    help='Same as 2a.')
3924
3934
 
3925
3935
# The current format that is made on 'bzr init'.