~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-10-31 08:27:55 UTC
  • mfrom: (3805.3.3 format-1.9)
  • Revision ID: pqm@pqm.ubuntu.com-20081031082755-98a92xsyhx8m7r80
(mbp) add 1.9 format

Show diffs side-by-side

added added

removed removed

Lines of Context:
2325
2325
    'bzrlib.repofmt.pack_repo',
2326
2326
    'RepositoryFormatKnitPack5RichRootBroken',
2327
2327
    )
 
2328
format_registry.register_lazy(
 
2329
    'Bazaar RepositoryFormatKnitPack6 (bzr 1.9)\n',
 
2330
    'bzrlib.repofmt.pack_repo',
 
2331
    'RepositoryFormatKnitPack6',
 
2332
    )
 
2333
format_registry.register_lazy(
 
2334
    'Bazaar RepositoryFormatKnitPack6RichRoot (bzr 1.9)\n',
 
2335
    'bzrlib.repofmt.pack_repo',
 
2336
    'RepositoryFormatKnitPack6RichRoot',
 
2337
    )
2328
2338
 
2329
2339
# Development formats. 
2330
2340
# 1.7->1.8 go below here
2965
2975
                RepositoryFormatKnitPack4,
2966
2976
                RepositoryFormatKnitPack5,
2967
2977
                RepositoryFormatKnitPack5RichRoot,
 
2978
                RepositoryFormatKnitPack6,
 
2979
                RepositoryFormatKnitPack6RichRoot,
2968
2980
                RepositoryFormatPackDevelopment2,
2969
2981
                RepositoryFormatPackDevelopment2Subtree,
2970
2982
                )
2973
2985
                RepositoryFormatKnitPack1,        # no rr, no subtree
2974
2986
                RepositoryFormatPackDevelopment2, # no rr, no subtree
2975
2987
                RepositoryFormatKnitPack5,        # no rr, no subtree
 
2988
                RepositoryFormatKnitPack6,        # no rr, no subtree
2976
2989
                )
2977
2990
            richroot = (
2978
2991
                RepositoryFormatKnit3,            # rr, subtree
2979
2992
                RepositoryFormatKnitPack3,        # rr, subtree
2980
2993
                RepositoryFormatKnitPack4,        # rr, no subtree
2981
2994
                RepositoryFormatKnitPack5RichRoot,# rr, no subtree
 
2995
                RepositoryFormatKnitPack6RichRoot,# rr, no subtree
2982
2996
                RepositoryFormatPackDevelopment2Subtree, # rr, subtree
2983
2997
                )
2984
2998
            for format in norichroot: