/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: John Arbash Meinel
  • Date: 2008-08-29 02:39:18 UTC
  • mto: (3606.11.2 bug_261339)
  • mto: This revision was merged to the branch mainline in revision 3667.
  • Revision ID: john@arbash-meinel.com-20080829023918-10cy13i3x5af62ne
Create a new --1.6-rich-root, deprecate the old one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
            raise errors.UnsupportedFormatError(format=format)
154
154
        if recommend_upgrade \
155
155
            and getattr(format, 'upgrade_recommended', False):
 
156
            import pdb; pdb.set_trace()
156
157
            ui.ui_factory.recommend_upgrade(
157
158
                format.get_format_description(),
158
159
                basedir)
3032
3033
    branch_format='bzrlib.branch.BzrBranchFormat7',
3033
3034
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
3034
3035
    )
 
3036
format_registry.register_metadir('1.6-old-rich-root',
 
3037
    'bzrlib.repofmt.pack_repo.RepositoryFormatKnitPack5RichRootBroken',
 
3038
    help='(deprecated, use --1.6-rich-root instead) A branch and pack based'
 
3039
         ' repository that supports stacking and rich root data (needed for'
 
3040
         ' bzr-svn).',
 
3041
    branch_format='bzrlib.branch.BzrBranchFormat7',
 
3042
    tree_format='bzrlib.workingtree.WorkingTreeFormat4',
 
3043
    hidden=True,
 
3044
    deprecated=True,
 
3045
    )
3035
3046
# The following two formats should always just be aliases.
3036
3047
format_registry.register_metadir('development',
3037
3048
    'bzrlib.repofmt.pack_repo.RepositoryFormatPackDevelopment1',