Mercurial > public > mercurial-scm > hg
comparison mercurial/configitems.py @ 33772:d434a7f0685c
config: rename evolution config into stabilization
Use aliases for backward-compatibility. Though I'm not sure how to emit
compatibility warnings with aliases.
Test configuration are updated in the next patch.
The renaming is done according to
https://www.mercurial-scm.org/wiki/CEDVocabulary.
Differential Revision: https://phab.mercurial-scm.org/D248
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Thu, 03 Aug 2017 11:38:22 +0200 |
parents | 96f43981c1c4 |
children | 057d31ceace3 |
comparison
equal
deleted
inserted
replaced
33771:96f43981c1c4 | 33772:d434a7f0685c |
---|---|
179 default=False, | 179 default=False, |
180 ) | 180 ) |
181 coreconfigitem('experimental', 'editortmpinhg', | 181 coreconfigitem('experimental', 'editortmpinhg', |
182 default=False, | 182 default=False, |
183 ) | 183 ) |
184 coreconfigitem('experimental', 'evolution', | 184 coreconfigitem('experimental', 'stabilization', |
185 default=list, | 185 default=list, |
186 ) | 186 alias=[('experimental', 'evolution')], |
187 coreconfigitem('experimental', 'evolution.bundle-obsmarker', | 187 ) |
188 default=False, | 188 coreconfigitem('experimental', 'stabilization.bundle-obsmarker', |
189 ) | 189 default=False, |
190 coreconfigitem('experimental', 'evolution.track-operation', | 190 alias=[('experimental', 'evolution.bundle-obsmarker')], |
191 default=False, | 191 ) |
192 coreconfigitem('experimental', 'stabilization.track-operation', | |
193 default=False, | |
194 alias=[('experimental', 'evolution.track-operation')] | |
192 ) | 195 ) |
193 coreconfigitem('experimental', 'exportableenviron', | 196 coreconfigitem('experimental', 'exportableenviron', |
194 default=list, | 197 default=list, |
195 ) | 198 ) |
196 coreconfigitem('experimental', 'extendedheader.index', | 199 coreconfigitem('experimental', 'extendedheader.index', |