~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitpack_repo.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-07 14:03:01 UTC
  • mto: (6213.1.25 feature-flags)
  • mto: This revision was merged to the branch mainline in revision 6353.
  • Revision ID: jelmer@samba.org-20111207140301-87aa1dcekem98tws
Add BzrDirMetaComponentFormat.

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
 
161
161
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
162
162
 
163
 
    def get_format_string(self):
 
163
    @classmethod
 
164
    def get_format_string(cls):
164
165
        """See RepositoryFormat.get_format_string()."""
165
166
        return "Bazaar pack repository format 1 (needs bzr 0.92)\n"
166
167
 
200
201
 
201
202
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
202
203
 
203
 
    def get_format_string(self):
 
204
    @classmethod
 
205
    def get_format_string(cls):
204
206
        """See RepositoryFormat.get_format_string()."""
205
207
        return "Bazaar pack repository format 1 with subtree support (needs bzr 0.92)\n"
206
208
 
238
240
 
239
241
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
240
242
 
241
 
    def get_format_string(self):
 
243
    @classmethod
 
244
    def get_format_string(cls):
242
245
        """See RepositoryFormat.get_format_string()."""
243
246
        return ("Bazaar pack repository format 1 with rich root"
244
247
                " (needs bzr 1.0)\n")
276
279
 
277
280
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
278
281
 
279
 
    def get_format_string(self):
 
282
    @classmethod
 
283
    def get_format_string(cls):
280
284
        """See RepositoryFormat.get_format_string()."""
281
285
        return "Bazaar RepositoryFormatKnitPack5 (bzr 1.6)\n"
282
286
 
316
320
 
317
321
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
318
322
 
319
 
    def get_format_string(self):
 
323
    @classmethod
 
324
    def get_format_string(cls):
320
325
        """See RepositoryFormat.get_format_string()."""
321
326
        return "Bazaar RepositoryFormatKnitPack5RichRoot (bzr 1.6.1)\n"
322
327
 
362
367
 
363
368
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
364
369
 
365
 
    def get_format_string(self):
 
370
    @classmethod
 
371
    def get_format_string(cls):
366
372
        """See RepositoryFormat.get_format_string()."""
367
373
        return "Bazaar RepositoryFormatKnitPack5RichRoot (bzr 1.6)\n"
368
374
 
400
406
 
401
407
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
402
408
 
403
 
    def get_format_string(self):
 
409
    @classmethod
 
410
    def get_format_string(cls):
404
411
        """See RepositoryFormat.get_format_string()."""
405
412
        return "Bazaar RepositoryFormatKnitPack6 (bzr 1.9)\n"
406
413
 
437
444
 
438
445
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
439
446
 
440
 
    def get_format_string(self):
 
447
    @classmethod
 
448
    def get_format_string(cls):
441
449
        """See RepositoryFormat.get_format_string()."""
442
450
        return "Bazaar RepositoryFormatKnitPack6RichRoot (bzr 1.9)\n"
443
451
 
477
485
 
478
486
    _matchingbzrdir = property(_get_matching_bzrdir, _ignore_setting_bzrdir)
479
487
 
480
 
    def get_format_string(self):
 
488
    @classmethod
 
489
    def get_format_string(cls):
481
490
        """See RepositoryFormat.get_format_string()."""
482
491
        return ("Bazaar development format 2 with subtree support "
483
492
            "(needs bzr.dev from before 1.8)\n")