/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 __init__.py

  • Committer: John Arbash Meinel
  • Date: 2009-03-03 02:18:15 UTC
  • mto: (0.17.31 trunk)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: john@arbash-meinel.com-20090303021815-dlqfgperty1bwnv1
Add a rich-root compatible gcr+chk255+rich-root format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
        hidden=False,
83
83
        experimental=True,
84
84
        )
 
85
    format_registry.register_metadir('gcr-chk255-rich-root',
 
86
        'bzrlib.plugins.groupcompress_rabin.repofmt.RepositoryFormatPackGCRabinRichRootCHK255',
 
87
        help='pack-1.9 with 255-way hashed CHK inv, group compress, and rich roots. '
 
88
            'Please read '
 
89
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
 
90
            'before use.',
 
91
        branch_format='bzrlib.branch.BzrBranchFormat7',
 
92
        tree_format='bzrlib.workingtree.WorkingTreeFormat5',
 
93
        hidden=False,
 
94
        experimental=True,
 
95
        )
85
96
    repo_registry.register_lazy(
86
97
        'Bazaar development format - hash255chk+gcr (needs bzr.dev from 1.13)\n',
87
98
        'bzrlib.plugins.groupcompress_rabin.repofmt',
88
99
        'RepositoryFormatPackGCRabinCHK255',
89
100
        )
 
101
    repo_registry.register_lazy(
 
102
        'Bazaar development format - hash255chk+gcr rich-root (needs bzr.dev from 1.13)\n',
 
103
        'bzrlib.plugins.groupcompress_rabin.repofmt',
 
104
        'RepositoryFormatPackGCRabinRichRootCHK255',
 
105
        )
90
106
except ImportError:
91
107
    pass
92
108