~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-05 14:47:30 UTC
  • mto: (5757.7.2 knitpackrepo-6)
  • mto: This revision was merged to the branch mainline in revision 5771.
  • Revision ID: jelmer@samba.org-20110405144730-uq6jmlblh97plv20
Add separate file for knit pack repository formats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3242
3242
# NOTE: These are experimental in 0.92. Stable in 1.0 and above
3243
3243
format_registry.register_lazy(
3244
3244
    'Bazaar pack repository format 1 (needs bzr 0.92)\n',
3245
 
    'bzrlib.repofmt.pack_repo',
 
3245
    'bzrlib.repofmt.knitpack_repo',
3246
3246
    'RepositoryFormatKnitPack1',
3247
3247
    )
3248
3248
format_registry.register_lazy(
3249
3249
    'Bazaar pack repository format 1 with subtree support (needs bzr 0.92)\n',
3250
 
    'bzrlib.repofmt.pack_repo',
 
3250
    'bzrlib.repofmt.knitpack_repo',
3251
3251
    'RepositoryFormatKnitPack3',
3252
3252
    )
3253
3253
format_registry.register_lazy(
3254
3254
    'Bazaar pack repository format 1 with rich root (needs bzr 1.0)\n',
3255
 
    'bzrlib.repofmt.pack_repo',
 
3255
    'bzrlib.repofmt.knitpack_repo',
3256
3256
    'RepositoryFormatKnitPack4',
3257
3257
    )
3258
3258
format_registry.register_lazy(
3259
3259
    'Bazaar RepositoryFormatKnitPack5 (bzr 1.6)\n',
3260
 
    'bzrlib.repofmt.pack_repo',
 
3260
    'bzrlib.repofmt.knitpack_repo',
3261
3261
    'RepositoryFormatKnitPack5',
3262
3262
    )
3263
3263
format_registry.register_lazy(
3264
3264
    'Bazaar RepositoryFormatKnitPack5RichRoot (bzr 1.6.1)\n',
3265
 
    'bzrlib.repofmt.pack_repo',
 
3265
    'bzrlib.repofmt.knitpack_repo',
3266
3266
    'RepositoryFormatKnitPack5RichRoot',
3267
3267
    )
3268
3268
format_registry.register_lazy(
3269
3269
    'Bazaar RepositoryFormatKnitPack5RichRoot (bzr 1.6)\n',
3270
 
    'bzrlib.repofmt.pack_repo',
 
3270
    'bzrlib.repofmt.knitpack_repo',
3271
3271
    'RepositoryFormatKnitPack5RichRootBroken',
3272
3272
    )
3273
3273
format_registry.register_lazy(
3274
3274
    'Bazaar RepositoryFormatKnitPack6 (bzr 1.9)\n',
3275
 
    'bzrlib.repofmt.pack_repo',
 
3275
    'bzrlib.repofmt.knitpack_repo',
3276
3276
    'RepositoryFormatKnitPack6',
3277
3277
    )
3278
3278
format_registry.register_lazy(
3279
3279
    'Bazaar RepositoryFormatKnitPack6RichRoot (bzr 1.9)\n',
3280
 
    'bzrlib.repofmt.pack_repo',
 
3280
    'bzrlib.repofmt.knitpack_repo',
3281
3281
    'RepositoryFormatKnitPack6RichRoot',
3282
3282
    )
3283
3283
format_registry.register_lazy(
3291
3291
format_registry.register_lazy(
3292
3292
    ("Bazaar development format 2 with subtree support "
3293
3293
        "(needs bzr.dev from before 1.8)\n"),
3294
 
    'bzrlib.repofmt.pack_repo',
 
3294
    'bzrlib.repofmt.knitpack_repo',
3295
3295
    'RepositoryFormatPackDevelopment2Subtree',
3296
3296
    )
3297
3297
format_registry.register_lazy(