~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

Bring the groupcompress plugin into the brisbane-core branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2677
2677
    'bzrlib.repofmt.pack_repo',
2678
2678
    'RepositoryFormatPackDevelopment5Hash255',
2679
2679
    )
 
2680
format_registry.register_lazy(
 
2681
    'Bazaar development format - btree+gc (needs bzr.dev from 1.13)\n',
 
2682
    'bzrlib.repofmt.gc_repo',
 
2683
    'RepositoryFormatPackGCPlain',
 
2684
    )
 
2685
format_registry.register_lazy(
 
2686
    'Bazaar development format - hash16chk+gc rich-root (needs bzr.dev from 1.13)\n',
 
2687
    'bzrlib.repofmt.gc_repo',
 
2688
    'RepositoryFormatPackGCCHK16',
 
2689
    )
 
2690
format_registry.register_lazy(
 
2691
    'Bazaar development format - hash255chk+gc rich-root (needs bzr.dev from 1.13)\n',
 
2692
    'bzrlib.repofmt.gc_repo',
 
2693
    'RepositoryFormatPackGCCHK255',
 
2694
    )
 
2695
format_registry.register_lazy(
 
2696
    'Bazaar development format - hash255chk+gc rich-root bigpage (needs bzr.dev from 1.13)\n',
 
2697
    'bzrlib.repofmt.gc_repo',
 
2698
    'RepositoryFormatPackGCCHK255Big',
 
2699
    )
2680
2700
 
2681
2701
 
2682
2702
class InterRepository(InterObject):