##// END OF EJS Templates
requirements: move the comment about manifestv2 in the module...
marmoute -
r49448:66b59fbb default
parent child Browse files
Show More
@@ -1274,11 +1274,6 b' class localrepository(object):'
1274 used.
1274 used.
1275 """
1275 """
1276
1276
1277 # obsolete experimental requirements:
1278 # - manifestv2: An experimental new manifest format that allowed
1279 # for stem compression of long paths. Experiment ended up not
1280 # being successful (repository sizes went up due to worse delta
1281 # chains), and the code was deleted in 4.6.
1282 supportedformats = {
1277 supportedformats = {
1283 requirementsmod.REVLOGV1_REQUIREMENT,
1278 requirementsmod.REVLOGV1_REQUIREMENT,
1284 requirementsmod.GENERALDELTA_REQUIREMENT,
1279 requirementsmod.GENERALDELTA_REQUIREMENT,
@@ -7,6 +7,12 b''
7
7
8 from __future__ import absolute_import
8 from __future__ import absolute_import
9
9
10 # obsolete experimental requirements:
11 # - manifestv2: An experimental new manifest format that allowed
12 # for stem compression of long paths. Experiment ended up not
13 # being successful (repository sizes went up due to worse delta
14 # chains), and the code was deleted in 4.6.
15
10 GENERALDELTA_REQUIREMENT = b'generaldelta'
16 GENERALDELTA_REQUIREMENT = b'generaldelta'
11 DOTENCODE_REQUIREMENT = b'dotencode'
17 DOTENCODE_REQUIREMENT = b'dotencode'
12 STORE_REQUIREMENT = b'store'
18 STORE_REQUIREMENT = b'store'
General Comments 0
You need to be logged in to leave comments. Login now