~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: John Arbash Meinel
  • Date: 2008-10-28 22:19:31 UTC
  • mto: (3815.2.1 prepare-1.9)
  • mto: This revision was merged to the branch mainline in revision 3816.
  • Revision ID: john@arbash-meinel.com-20081028221931-uk9oan2xkocd0gis
Add repository 1.9 format, and update the documentation.

Help people generating new repository formats find all the locations
they need to update.

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
2950
2960
                RepositoryFormatKnitPack4,
2951
2961
                RepositoryFormatKnitPack5,
2952
2962
                RepositoryFormatKnitPack5RichRoot,
 
2963
                RepositoryFormatKnitPack6,
 
2964
                RepositoryFormatKnitPack6RichRoot,
2953
2965
                RepositoryFormatPackDevelopment2,
2954
2966
                RepositoryFormatPackDevelopment2Subtree,
2955
2967
                )
2958
2970
                RepositoryFormatKnitPack1,        # no rr, no subtree
2959
2971
                RepositoryFormatPackDevelopment2, # no rr, no subtree
2960
2972
                RepositoryFormatKnitPack5,        # no rr, no subtree
 
2973
                RepositoryFormatKnitPack6,        # no rr, no subtree
2961
2974
                )
2962
2975
            richroot = (
2963
2976
                RepositoryFormatKnit3,            # rr, subtree
2964
2977
                RepositoryFormatKnitPack3,        # rr, subtree
2965
2978
                RepositoryFormatKnitPack4,        # rr, no subtree
2966
2979
                RepositoryFormatKnitPack5RichRoot,# rr, no subtree
 
2980
                RepositoryFormatKnitPack6RichRoot,# rr, no subtree
2967
2981
                RepositoryFormatPackDevelopment2Subtree, # rr, subtree
2968
2982
                )
2969
2983
            for format in norichroot: