/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-02-27 16:06:50 UTC
  • mto: (0.23.23 groupcompress_rabin)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: john@arbash-meinel.com-20090227160650-iv1rpvxsqejydxj7
Fix a couple more locations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    RepositoryFormatPackDevelopment5Hash255,
57
57
    )
58
58
    format_registry.register_metadir('gcr-chk16',
59
 
        'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCRabinCHK16',
 
59
        'bzrlib.plugins.groupcompress_rabin.repofmt.RepositoryFormatPackGCRabinCHK16',
60
60
        help='pack-1.9 with 16-way hashed CHK inv and group compress. '
61
61
            'Please read '
62
62
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
68
68
        )
69
69
    repo_registry.register_lazy(
70
70
        'Bazaar development format - hash16chk+gcr (needs bzr.dev from 1.13)\n',
71
 
        'bzrlib.plugins.groupcompress.repofmt',
 
71
        'bzrlib.plugins.groupcompress_rabin.repofmt',
72
72
        'RepositoryFormatPackGCRabinCHK16',
73
73
        )
74
74
    format_registry.register_metadir('gcr-chk255',
75
 
        'bzrlib.plugins.groupcompress.repofmt.RepositoryFormatPackGCRabinCHK255',
 
75
        'bzrlib.plugins.groupcompress_rabin.repofmt.RepositoryFormatPackGCRabinCHK255',
76
76
        help='pack-1.9 with 255-way hashed CHK inv and group compress. '
77
77
            'Please read '
78
78
            'http://doc.bazaar-vcs.org/latest/developers/development-repo.html '
84
84
        )
85
85
    repo_registry.register_lazy(
86
86
        'Bazaar development format - hash255chk+gcr (needs bzr.dev from 1.13)\n',
87
 
        'bzrlib.plugins.groupcompress.repofmt',
 
87
        'bzrlib.plugins.groupcompress_rabin.repofmt',
88
88
        'RepositoryFormatPackGCRabinCHK255',
89
89
        )
90
90
except ImportError:
92
92
 
93
93
repo_registry.register_lazy(
94
94
    'Bazaar development format - btree+gcr (needs bzr.dev from 1.13)\n',
95
 
    'bzrlib.plugins.groupcompress.repofmt',
 
95
    'bzrlib.plugins.groupcompress_rabin.repofmt',
96
96
    'RepositoryFormatPackGCRabin',
97
97
    )
98
98