~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/bzr.py

  • Committer: Julian Edwards
  • Date: 2011-06-06 11:49:08 UTC
  • mfrom: (7675.1045.467 db-devel)
  • mto: This revision was merged to the branch mainline in revision 13205.
  • Revision ID: julian.edwards@canonical.com-20110606114908-30jm0009t79ewsad
merge db-devel, there are some test failures as a result

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
        "1.6.1-subtree with B+Tree indices.\n"
214
214
        )
215
215
 
 
216
    BZR_DEV_8 = DBItem(306,
 
217
        "Bazaar development format 8\n",
 
218
        "2a repository format with support for nested trees.\n"
 
219
        )
 
220
 
216
221
    BZR_CHK1 = DBItem(400,
217
222
        "Bazaar development format - group compression and chk inventory"
218
223
        " (needs bzr.dev from 1.14)\n",
269
274
    RepositoryFormat.BZR_DEV_1_SUBTREE,
270
275
    RepositoryFormat.BZR_DEV_2,
271
276
    RepositoryFormat.BZR_DEV_2_SUBTREE,
 
277
    RepositoryFormat.BZR_DEV_8,
272
278
    RepositoryFormat.BZR_CHK1,
273
279
    RepositoryFormat.BZR_CHK2,
274
280
    RepositoryFormat.BZR_CHK_2A)