##// END OF EJS Templates
configitems: register the 'logtoprocess.develwarn' config
Boris Feld -
r34596:54d91683 default
parent child Browse files
Show More
@@ -1,800 +1,803 b''
1 # configitems.py - centralized declaration of configuration option
1 # configitems.py - centralized declaration of configuration option
2 #
2 #
3 # Copyright 2017 Pierre-Yves David <pierre-yves.david@octobus.net>
3 # Copyright 2017 Pierre-Yves David <pierre-yves.david@octobus.net>
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 from __future__ import absolute_import
8 from __future__ import absolute_import
9
9
10 import functools
10 import functools
11
11
12 from . import (
12 from . import (
13 encoding,
13 encoding,
14 error,
14 error,
15 )
15 )
16
16
17 def loadconfigtable(ui, extname, configtable):
17 def loadconfigtable(ui, extname, configtable):
18 """update config item known to the ui with the extension ones"""
18 """update config item known to the ui with the extension ones"""
19 for section, items in configtable.items():
19 for section, items in configtable.items():
20 knownitems = ui._knownconfig.setdefault(section, {})
20 knownitems = ui._knownconfig.setdefault(section, {})
21 knownkeys = set(knownitems)
21 knownkeys = set(knownitems)
22 newkeys = set(items)
22 newkeys = set(items)
23 for key in sorted(knownkeys & newkeys):
23 for key in sorted(knownkeys & newkeys):
24 msg = "extension '%s' overwrite config item '%s.%s'"
24 msg = "extension '%s' overwrite config item '%s.%s'"
25 msg %= (extname, section, key)
25 msg %= (extname, section, key)
26 ui.develwarn(msg, config='warn-config')
26 ui.develwarn(msg, config='warn-config')
27
27
28 knownitems.update(items)
28 knownitems.update(items)
29
29
30 class configitem(object):
30 class configitem(object):
31 """represent a known config item
31 """represent a known config item
32
32
33 :section: the official config section where to find this item,
33 :section: the official config section where to find this item,
34 :name: the official name within the section,
34 :name: the official name within the section,
35 :default: default value for this item,
35 :default: default value for this item,
36 :alias: optional list of tuples as alternatives.
36 :alias: optional list of tuples as alternatives.
37 """
37 """
38
38
39 def __init__(self, section, name, default=None, alias=()):
39 def __init__(self, section, name, default=None, alias=()):
40 self.section = section
40 self.section = section
41 self.name = name
41 self.name = name
42 self.default = default
42 self.default = default
43 self.alias = list(alias)
43 self.alias = list(alias)
44
44
45 coreitems = {}
45 coreitems = {}
46
46
47 def _register(configtable, *args, **kwargs):
47 def _register(configtable, *args, **kwargs):
48 item = configitem(*args, **kwargs)
48 item = configitem(*args, **kwargs)
49 section = configtable.setdefault(item.section, {})
49 section = configtable.setdefault(item.section, {})
50 if item.name in section:
50 if item.name in section:
51 msg = "duplicated config item registration for '%s.%s'"
51 msg = "duplicated config item registration for '%s.%s'"
52 raise error.ProgrammingError(msg % (item.section, item.name))
52 raise error.ProgrammingError(msg % (item.section, item.name))
53 section[item.name] = item
53 section[item.name] = item
54
54
55 # special value for case where the default is derived from other values
55 # special value for case where the default is derived from other values
56 dynamicdefault = object()
56 dynamicdefault = object()
57
57
58 # Registering actual config items
58 # Registering actual config items
59
59
60 def getitemregister(configtable):
60 def getitemregister(configtable):
61 return functools.partial(_register, configtable)
61 return functools.partial(_register, configtable)
62
62
63 coreconfigitem = getitemregister(coreitems)
63 coreconfigitem = getitemregister(coreitems)
64
64
65 coreconfigitem('auth', 'cookiefile',
65 coreconfigitem('auth', 'cookiefile',
66 default=None,
66 default=None,
67 )
67 )
68 # bookmarks.pushing: internal hack for discovery
68 # bookmarks.pushing: internal hack for discovery
69 coreconfigitem('bookmarks', 'pushing',
69 coreconfigitem('bookmarks', 'pushing',
70 default=list,
70 default=list,
71 )
71 )
72 # bundle.mainreporoot: internal hack for bundlerepo
72 # bundle.mainreporoot: internal hack for bundlerepo
73 coreconfigitem('bundle', 'mainreporoot',
73 coreconfigitem('bundle', 'mainreporoot',
74 default='',
74 default='',
75 )
75 )
76 # bundle.reorder: experimental config
76 # bundle.reorder: experimental config
77 coreconfigitem('bundle', 'reorder',
77 coreconfigitem('bundle', 'reorder',
78 default='auto',
78 default='auto',
79 )
79 )
80 coreconfigitem('censor', 'policy',
80 coreconfigitem('censor', 'policy',
81 default='abort',
81 default='abort',
82 )
82 )
83 coreconfigitem('chgserver', 'idletimeout',
83 coreconfigitem('chgserver', 'idletimeout',
84 default=3600,
84 default=3600,
85 )
85 )
86 coreconfigitem('chgserver', 'skiphash',
86 coreconfigitem('chgserver', 'skiphash',
87 default=False,
87 default=False,
88 )
88 )
89 coreconfigitem('cmdserver', 'log',
89 coreconfigitem('cmdserver', 'log',
90 default=None,
90 default=None,
91 )
91 )
92 coreconfigitem('color', 'mode',
92 coreconfigitem('color', 'mode',
93 default='auto',
93 default='auto',
94 )
94 )
95 coreconfigitem('color', 'pagermode',
95 coreconfigitem('color', 'pagermode',
96 default=dynamicdefault,
96 default=dynamicdefault,
97 )
97 )
98 coreconfigitem('commands', 'status.relative',
98 coreconfigitem('commands', 'status.relative',
99 default=False,
99 default=False,
100 )
100 )
101 coreconfigitem('commands', 'status.skipstates',
101 coreconfigitem('commands', 'status.skipstates',
102 default=[],
102 default=[],
103 )
103 )
104 coreconfigitem('commands', 'status.verbose',
104 coreconfigitem('commands', 'status.verbose',
105 default=False,
105 default=False,
106 )
106 )
107 coreconfigitem('commands', 'update.requiredest',
107 coreconfigitem('commands', 'update.requiredest',
108 default=False,
108 default=False,
109 )
109 )
110 coreconfigitem('debug', 'dirstate.delaywrite',
110 coreconfigitem('debug', 'dirstate.delaywrite',
111 default=0,
111 default=0,
112 )
112 )
113 coreconfigitem('devel', 'all-warnings',
113 coreconfigitem('devel', 'all-warnings',
114 default=False,
114 default=False,
115 )
115 )
116 coreconfigitem('devel', 'bundle2.debug',
116 coreconfigitem('devel', 'bundle2.debug',
117 default=False,
117 default=False,
118 )
118 )
119 coreconfigitem('devel', 'cache-vfs',
119 coreconfigitem('devel', 'cache-vfs',
120 default=None,
120 default=None,
121 )
121 )
122 coreconfigitem('devel', 'check-locks',
122 coreconfigitem('devel', 'check-locks',
123 default=False,
123 default=False,
124 )
124 )
125 coreconfigitem('devel', 'check-relroot',
125 coreconfigitem('devel', 'check-relroot',
126 default=False,
126 default=False,
127 )
127 )
128 coreconfigitem('devel', 'default-date',
128 coreconfigitem('devel', 'default-date',
129 default=None,
129 default=None,
130 )
130 )
131 coreconfigitem('devel', 'deprec-warn',
131 coreconfigitem('devel', 'deprec-warn',
132 default=False,
132 default=False,
133 )
133 )
134 coreconfigitem('devel', 'disableloaddefaultcerts',
134 coreconfigitem('devel', 'disableloaddefaultcerts',
135 default=False,
135 default=False,
136 )
136 )
137 coreconfigitem('devel', 'empty-changegroup',
137 coreconfigitem('devel', 'empty-changegroup',
138 default=False,
138 default=False,
139 )
139 )
140 coreconfigitem('devel', 'legacy.exchange',
140 coreconfigitem('devel', 'legacy.exchange',
141 default=list,
141 default=list,
142 )
142 )
143 coreconfigitem('devel', 'servercafile',
143 coreconfigitem('devel', 'servercafile',
144 default='',
144 default='',
145 )
145 )
146 coreconfigitem('devel', 'serverexactprotocol',
146 coreconfigitem('devel', 'serverexactprotocol',
147 default='',
147 default='',
148 )
148 )
149 coreconfigitem('devel', 'serverrequirecert',
149 coreconfigitem('devel', 'serverrequirecert',
150 default=False,
150 default=False,
151 )
151 )
152 coreconfigitem('devel', 'strip-obsmarkers',
152 coreconfigitem('devel', 'strip-obsmarkers',
153 default=True,
153 default=True,
154 )
154 )
155 coreconfigitem('devel', 'warn-config',
155 coreconfigitem('devel', 'warn-config',
156 default=None,
156 default=None,
157 )
157 )
158 coreconfigitem('devel', 'warn-config-default',
158 coreconfigitem('devel', 'warn-config-default',
159 default=None,
159 default=None,
160 )
160 )
161 coreconfigitem('devel', 'user.obsmarker',
161 coreconfigitem('devel', 'user.obsmarker',
162 default=None,
162 default=None,
163 )
163 )
164 coreconfigitem('diff', 'nodates',
164 coreconfigitem('diff', 'nodates',
165 default=None,
165 default=None,
166 )
166 )
167 coreconfigitem('diff', 'showfunc',
167 coreconfigitem('diff', 'showfunc',
168 default=None,
168 default=None,
169 )
169 )
170 coreconfigitem('diff', 'unified',
170 coreconfigitem('diff', 'unified',
171 default=None,
171 default=None,
172 )
172 )
173 coreconfigitem('diff', 'git',
173 coreconfigitem('diff', 'git',
174 default=None,
174 default=None,
175 )
175 )
176 coreconfigitem('diff', 'ignorews',
176 coreconfigitem('diff', 'ignorews',
177 default=None,
177 default=None,
178 )
178 )
179 coreconfigitem('diff', 'ignorewsamount',
179 coreconfigitem('diff', 'ignorewsamount',
180 default=None,
180 default=None,
181 )
181 )
182 coreconfigitem('diff', 'ignoreblanklines',
182 coreconfigitem('diff', 'ignoreblanklines',
183 default=None,
183 default=None,
184 )
184 )
185 coreconfigitem('diff', 'ignorewseol',
185 coreconfigitem('diff', 'ignorewseol',
186 default=None,
186 default=None,
187 )
187 )
188 coreconfigitem('diff', 'nobinary',
188 coreconfigitem('diff', 'nobinary',
189 default=None,
189 default=None,
190 )
190 )
191 coreconfigitem('diff', 'noprefix',
191 coreconfigitem('diff', 'noprefix',
192 default=None,
192 default=None,
193 )
193 )
194 coreconfigitem('email', 'charsets',
194 coreconfigitem('email', 'charsets',
195 default=list,
195 default=list,
196 )
196 )
197 coreconfigitem('email', 'from',
197 coreconfigitem('email', 'from',
198 default=None,
198 default=None,
199 )
199 )
200 coreconfigitem('email', 'method',
200 coreconfigitem('email', 'method',
201 default='smtp',
201 default='smtp',
202 )
202 )
203 coreconfigitem('experimental', 'allowdivergence',
203 coreconfigitem('experimental', 'allowdivergence',
204 default=False,
204 default=False,
205 )
205 )
206 coreconfigitem('experimental', 'bundle-phases',
206 coreconfigitem('experimental', 'bundle-phases',
207 default=False,
207 default=False,
208 )
208 )
209 coreconfigitem('experimental', 'bundle2-advertise',
209 coreconfigitem('experimental', 'bundle2-advertise',
210 default=True,
210 default=True,
211 )
211 )
212 coreconfigitem('experimental', 'bundle2-output-capture',
212 coreconfigitem('experimental', 'bundle2-output-capture',
213 default=False,
213 default=False,
214 )
214 )
215 coreconfigitem('experimental', 'bundle2.pushback',
215 coreconfigitem('experimental', 'bundle2.pushback',
216 default=False,
216 default=False,
217 )
217 )
218 coreconfigitem('experimental', 'bundle2lazylocking',
218 coreconfigitem('experimental', 'bundle2lazylocking',
219 default=False,
219 default=False,
220 )
220 )
221 coreconfigitem('experimental', 'bundlecomplevel',
221 coreconfigitem('experimental', 'bundlecomplevel',
222 default=None,
222 default=None,
223 )
223 )
224 coreconfigitem('experimental', 'changegroup3',
224 coreconfigitem('experimental', 'changegroup3',
225 default=False,
225 default=False,
226 )
226 )
227 coreconfigitem('experimental', 'clientcompressionengines',
227 coreconfigitem('experimental', 'clientcompressionengines',
228 default=list,
228 default=list,
229 )
229 )
230 coreconfigitem('experimental', 'copytrace',
230 coreconfigitem('experimental', 'copytrace',
231 default='on',
231 default='on',
232 )
232 )
233 coreconfigitem('experimental', 'copytrace.sourcecommitlimit',
233 coreconfigitem('experimental', 'copytrace.sourcecommitlimit',
234 default=100,
234 default=100,
235 )
235 )
236 coreconfigitem('experimental', 'crecordtest',
236 coreconfigitem('experimental', 'crecordtest',
237 default=None,
237 default=None,
238 )
238 )
239 coreconfigitem('experimental', 'editortmpinhg',
239 coreconfigitem('experimental', 'editortmpinhg',
240 default=False,
240 default=False,
241 )
241 )
242 coreconfigitem('experimental', 'maxdeltachainspan',
242 coreconfigitem('experimental', 'maxdeltachainspan',
243 default=-1,
243 default=-1,
244 )
244 )
245 coreconfigitem('experimental', 'mmapindexthreshold',
245 coreconfigitem('experimental', 'mmapindexthreshold',
246 default=None,
246 default=None,
247 )
247 )
248 coreconfigitem('experimental', 'nonnormalparanoidcheck',
248 coreconfigitem('experimental', 'nonnormalparanoidcheck',
249 default=False,
249 default=False,
250 )
250 )
251 coreconfigitem('experimental', 'stabilization',
251 coreconfigitem('experimental', 'stabilization',
252 default=list,
252 default=list,
253 alias=[('experimental', 'evolution')],
253 alias=[('experimental', 'evolution')],
254 )
254 )
255 coreconfigitem('experimental', 'stabilization.bundle-obsmarker',
255 coreconfigitem('experimental', 'stabilization.bundle-obsmarker',
256 default=False,
256 default=False,
257 alias=[('experimental', 'evolution.bundle-obsmarker')],
257 alias=[('experimental', 'evolution.bundle-obsmarker')],
258 )
258 )
259 coreconfigitem('experimental', 'stabilization.track-operation',
259 coreconfigitem('experimental', 'stabilization.track-operation',
260 default=True,
260 default=True,
261 alias=[('experimental', 'evolution.track-operation')]
261 alias=[('experimental', 'evolution.track-operation')]
262 )
262 )
263 coreconfigitem('experimental', 'exportableenviron',
263 coreconfigitem('experimental', 'exportableenviron',
264 default=list,
264 default=list,
265 )
265 )
266 coreconfigitem('experimental', 'extendedheader.index',
266 coreconfigitem('experimental', 'extendedheader.index',
267 default=None,
267 default=None,
268 )
268 )
269 coreconfigitem('experimental', 'extendedheader.similarity',
269 coreconfigitem('experimental', 'extendedheader.similarity',
270 default=False,
270 default=False,
271 )
271 )
272 coreconfigitem('experimental', 'format.compression',
272 coreconfigitem('experimental', 'format.compression',
273 default='zlib',
273 default='zlib',
274 )
274 )
275 coreconfigitem('experimental', 'graphshorten',
275 coreconfigitem('experimental', 'graphshorten',
276 default=False,
276 default=False,
277 )
277 )
278 coreconfigitem('experimental', 'graphstyle.parent',
278 coreconfigitem('experimental', 'graphstyle.parent',
279 default=dynamicdefault,
279 default=dynamicdefault,
280 )
280 )
281 coreconfigitem('experimental', 'graphstyle.missing',
281 coreconfigitem('experimental', 'graphstyle.missing',
282 default=dynamicdefault,
282 default=dynamicdefault,
283 )
283 )
284 coreconfigitem('experimental', 'graphstyle.grandparent',
284 coreconfigitem('experimental', 'graphstyle.grandparent',
285 default=dynamicdefault,
285 default=dynamicdefault,
286 )
286 )
287 coreconfigitem('experimental', 'hook-track-tags',
287 coreconfigitem('experimental', 'hook-track-tags',
288 default=False,
288 default=False,
289 )
289 )
290 coreconfigitem('experimental', 'httppostargs',
290 coreconfigitem('experimental', 'httppostargs',
291 default=False,
291 default=False,
292 )
292 )
293 coreconfigitem('experimental', 'manifestv2',
293 coreconfigitem('experimental', 'manifestv2',
294 default=False,
294 default=False,
295 )
295 )
296 coreconfigitem('experimental', 'mergedriver',
296 coreconfigitem('experimental', 'mergedriver',
297 default=None,
297 default=None,
298 )
298 )
299 coreconfigitem('experimental', 'obsmarkers-exchange-debug',
299 coreconfigitem('experimental', 'obsmarkers-exchange-debug',
300 default=False,
300 default=False,
301 )
301 )
302 coreconfigitem('experimental', 'rebase.multidest',
302 coreconfigitem('experimental', 'rebase.multidest',
303 default=False,
303 default=False,
304 )
304 )
305 coreconfigitem('experimental', 'revertalternateinteractivemode',
305 coreconfigitem('experimental', 'revertalternateinteractivemode',
306 default=True,
306 default=True,
307 )
307 )
308 coreconfigitem('experimental', 'revlogv2',
308 coreconfigitem('experimental', 'revlogv2',
309 default=None,
309 default=None,
310 )
310 )
311 coreconfigitem('experimental', 'spacemovesdown',
311 coreconfigitem('experimental', 'spacemovesdown',
312 default=False,
312 default=False,
313 )
313 )
314 coreconfigitem('experimental', 'treemanifest',
314 coreconfigitem('experimental', 'treemanifest',
315 default=False,
315 default=False,
316 )
316 )
317 coreconfigitem('experimental', 'updatecheck',
317 coreconfigitem('experimental', 'updatecheck',
318 default=None,
318 default=None,
319 )
319 )
320 coreconfigitem('format', 'aggressivemergedeltas',
320 coreconfigitem('format', 'aggressivemergedeltas',
321 default=False,
321 default=False,
322 )
322 )
323 coreconfigitem('format', 'chunkcachesize',
323 coreconfigitem('format', 'chunkcachesize',
324 default=None,
324 default=None,
325 )
325 )
326 coreconfigitem('format', 'dotencode',
326 coreconfigitem('format', 'dotencode',
327 default=True,
327 default=True,
328 )
328 )
329 coreconfigitem('format', 'generaldelta',
329 coreconfigitem('format', 'generaldelta',
330 default=False,
330 default=False,
331 )
331 )
332 coreconfigitem('format', 'manifestcachesize',
332 coreconfigitem('format', 'manifestcachesize',
333 default=None,
333 default=None,
334 )
334 )
335 coreconfigitem('format', 'maxchainlen',
335 coreconfigitem('format', 'maxchainlen',
336 default=None,
336 default=None,
337 )
337 )
338 coreconfigitem('format', 'obsstore-version',
338 coreconfigitem('format', 'obsstore-version',
339 default=None,
339 default=None,
340 )
340 )
341 coreconfigitem('format', 'usefncache',
341 coreconfigitem('format', 'usefncache',
342 default=True,
342 default=True,
343 )
343 )
344 coreconfigitem('format', 'usegeneraldelta',
344 coreconfigitem('format', 'usegeneraldelta',
345 default=True,
345 default=True,
346 )
346 )
347 coreconfigitem('format', 'usestore',
347 coreconfigitem('format', 'usestore',
348 default=True,
348 default=True,
349 )
349 )
350 coreconfigitem('hostsecurity', 'ciphers',
350 coreconfigitem('hostsecurity', 'ciphers',
351 default=None,
351 default=None,
352 )
352 )
353 coreconfigitem('hostsecurity', 'disabletls10warning',
353 coreconfigitem('hostsecurity', 'disabletls10warning',
354 default=False,
354 default=False,
355 )
355 )
356 coreconfigitem('http_proxy', 'always',
356 coreconfigitem('http_proxy', 'always',
357 default=False,
357 default=False,
358 )
358 )
359 coreconfigitem('http_proxy', 'host',
359 coreconfigitem('http_proxy', 'host',
360 default=None,
360 default=None,
361 )
361 )
362 coreconfigitem('http_proxy', 'no',
362 coreconfigitem('http_proxy', 'no',
363 default=list,
363 default=list,
364 )
364 )
365 coreconfigitem('http_proxy', 'passwd',
365 coreconfigitem('http_proxy', 'passwd',
366 default=None,
366 default=None,
367 )
367 )
368 coreconfigitem('http_proxy', 'user',
368 coreconfigitem('http_proxy', 'user',
369 default=None,
369 default=None,
370 )
370 )
371 coreconfigitem('logtoprocess', 'commandexception',
371 coreconfigitem('logtoprocess', 'commandexception',
372 default=None,
372 default=None,
373 )
373 )
374 coreconfigitem('logtoprocess', 'commandfinish',
374 coreconfigitem('logtoprocess', 'commandfinish',
375 default=None,
375 default=None,
376 )
376 )
377 coreconfigitem('logtoprocess', 'command',
377 coreconfigitem('logtoprocess', 'command',
378 default=None,
378 default=None,
379 )
379 )
380 coreconfigitem('logtoprocess', 'develwarn',
381 default=None,
382 )
380 coreconfigitem('merge', 'checkunknown',
383 coreconfigitem('merge', 'checkunknown',
381 default='abort',
384 default='abort',
382 )
385 )
383 coreconfigitem('merge', 'checkignored',
386 coreconfigitem('merge', 'checkignored',
384 default='abort',
387 default='abort',
385 )
388 )
386 coreconfigitem('merge', 'followcopies',
389 coreconfigitem('merge', 'followcopies',
387 default=True,
390 default=True,
388 )
391 )
389 coreconfigitem('merge', 'preferancestor',
392 coreconfigitem('merge', 'preferancestor',
390 default=lambda: ['*'],
393 default=lambda: ['*'],
391 )
394 )
392 coreconfigitem('pager', 'ignore',
395 coreconfigitem('pager', 'ignore',
393 default=list,
396 default=list,
394 )
397 )
395 coreconfigitem('pager', 'pager',
398 coreconfigitem('pager', 'pager',
396 default=dynamicdefault,
399 default=dynamicdefault,
397 )
400 )
398 coreconfigitem('patch', 'eol',
401 coreconfigitem('patch', 'eol',
399 default='strict',
402 default='strict',
400 )
403 )
401 coreconfigitem('patch', 'fuzz',
404 coreconfigitem('patch', 'fuzz',
402 default=2,
405 default=2,
403 )
406 )
404 coreconfigitem('paths', 'default',
407 coreconfigitem('paths', 'default',
405 default=None,
408 default=None,
406 )
409 )
407 coreconfigitem('paths', 'default-push',
410 coreconfigitem('paths', 'default-push',
408 default=None,
411 default=None,
409 )
412 )
410 coreconfigitem('phases', 'checksubrepos',
413 coreconfigitem('phases', 'checksubrepos',
411 default='follow',
414 default='follow',
412 )
415 )
413 coreconfigitem('phases', 'new-commit',
416 coreconfigitem('phases', 'new-commit',
414 default='draft',
417 default='draft',
415 )
418 )
416 coreconfigitem('phases', 'publish',
419 coreconfigitem('phases', 'publish',
417 default=True,
420 default=True,
418 )
421 )
419 coreconfigitem('profiling', 'enabled',
422 coreconfigitem('profiling', 'enabled',
420 default=False,
423 default=False,
421 )
424 )
422 coreconfigitem('profiling', 'format',
425 coreconfigitem('profiling', 'format',
423 default='text',
426 default='text',
424 )
427 )
425 coreconfigitem('profiling', 'freq',
428 coreconfigitem('profiling', 'freq',
426 default=1000,
429 default=1000,
427 )
430 )
428 coreconfigitem('profiling', 'limit',
431 coreconfigitem('profiling', 'limit',
429 default=30,
432 default=30,
430 )
433 )
431 coreconfigitem('profiling', 'nested',
434 coreconfigitem('profiling', 'nested',
432 default=0,
435 default=0,
433 )
436 )
434 coreconfigitem('profiling', 'output',
437 coreconfigitem('profiling', 'output',
435 default=None,
438 default=None,
436 )
439 )
437 coreconfigitem('profiling', 'showmax',
440 coreconfigitem('profiling', 'showmax',
438 default=0.999,
441 default=0.999,
439 )
442 )
440 coreconfigitem('profiling', 'showmin',
443 coreconfigitem('profiling', 'showmin',
441 default=dynamicdefault,
444 default=dynamicdefault,
442 )
445 )
443 coreconfigitem('profiling', 'sort',
446 coreconfigitem('profiling', 'sort',
444 default='inlinetime',
447 default='inlinetime',
445 )
448 )
446 coreconfigitem('profiling', 'statformat',
449 coreconfigitem('profiling', 'statformat',
447 default='hotpath',
450 default='hotpath',
448 )
451 )
449 coreconfigitem('profiling', 'type',
452 coreconfigitem('profiling', 'type',
450 default='stat',
453 default='stat',
451 )
454 )
452 coreconfigitem('progress', 'assume-tty',
455 coreconfigitem('progress', 'assume-tty',
453 default=False,
456 default=False,
454 )
457 )
455 coreconfigitem('progress', 'changedelay',
458 coreconfigitem('progress', 'changedelay',
456 default=1,
459 default=1,
457 )
460 )
458 coreconfigitem('progress', 'clear-complete',
461 coreconfigitem('progress', 'clear-complete',
459 default=True,
462 default=True,
460 )
463 )
461 coreconfigitem('progress', 'debug',
464 coreconfigitem('progress', 'debug',
462 default=False,
465 default=False,
463 )
466 )
464 coreconfigitem('progress', 'delay',
467 coreconfigitem('progress', 'delay',
465 default=3,
468 default=3,
466 )
469 )
467 coreconfigitem('progress', 'disable',
470 coreconfigitem('progress', 'disable',
468 default=False,
471 default=False,
469 )
472 )
470 coreconfigitem('progress', 'estimateinterval',
473 coreconfigitem('progress', 'estimateinterval',
471 default=60.0,
474 default=60.0,
472 )
475 )
473 coreconfigitem('progress', 'refresh',
476 coreconfigitem('progress', 'refresh',
474 default=0.1,
477 default=0.1,
475 )
478 )
476 coreconfigitem('progress', 'width',
479 coreconfigitem('progress', 'width',
477 default=dynamicdefault,
480 default=dynamicdefault,
478 )
481 )
479 coreconfigitem('push', 'pushvars.server',
482 coreconfigitem('push', 'pushvars.server',
480 default=False,
483 default=False,
481 )
484 )
482 coreconfigitem('server', 'bundle1',
485 coreconfigitem('server', 'bundle1',
483 default=True,
486 default=True,
484 )
487 )
485 coreconfigitem('server', 'bundle1gd',
488 coreconfigitem('server', 'bundle1gd',
486 default=None,
489 default=None,
487 )
490 )
488 coreconfigitem('server', 'compressionengines',
491 coreconfigitem('server', 'compressionengines',
489 default=list,
492 default=list,
490 )
493 )
491 coreconfigitem('server', 'concurrent-push-mode',
494 coreconfigitem('server', 'concurrent-push-mode',
492 default='strict',
495 default='strict',
493 )
496 )
494 coreconfigitem('server', 'disablefullbundle',
497 coreconfigitem('server', 'disablefullbundle',
495 default=False,
498 default=False,
496 )
499 )
497 coreconfigitem('server', 'maxhttpheaderlen',
500 coreconfigitem('server', 'maxhttpheaderlen',
498 default=1024,
501 default=1024,
499 )
502 )
500 coreconfigitem('server', 'preferuncompressed',
503 coreconfigitem('server', 'preferuncompressed',
501 default=False,
504 default=False,
502 )
505 )
503 coreconfigitem('server', 'uncompressed',
506 coreconfigitem('server', 'uncompressed',
504 default=True,
507 default=True,
505 )
508 )
506 coreconfigitem('server', 'uncompressedallowsecret',
509 coreconfigitem('server', 'uncompressedallowsecret',
507 default=False,
510 default=False,
508 )
511 )
509 coreconfigitem('server', 'validate',
512 coreconfigitem('server', 'validate',
510 default=False,
513 default=False,
511 )
514 )
512 coreconfigitem('server', 'zliblevel',
515 coreconfigitem('server', 'zliblevel',
513 default=-1,
516 default=-1,
514 )
517 )
515 coreconfigitem('smtp', 'host',
518 coreconfigitem('smtp', 'host',
516 default=None,
519 default=None,
517 )
520 )
518 coreconfigitem('smtp', 'local_hostname',
521 coreconfigitem('smtp', 'local_hostname',
519 default=None,
522 default=None,
520 )
523 )
521 coreconfigitem('smtp', 'password',
524 coreconfigitem('smtp', 'password',
522 default=None,
525 default=None,
523 )
526 )
524 coreconfigitem('smtp', 'port',
527 coreconfigitem('smtp', 'port',
525 default=dynamicdefault,
528 default=dynamicdefault,
526 )
529 )
527 coreconfigitem('smtp', 'tls',
530 coreconfigitem('smtp', 'tls',
528 default='none',
531 default='none',
529 )
532 )
530 coreconfigitem('smtp', 'username',
533 coreconfigitem('smtp', 'username',
531 default=None,
534 default=None,
532 )
535 )
533 coreconfigitem('sparse', 'missingwarning',
536 coreconfigitem('sparse', 'missingwarning',
534 default=True,
537 default=True,
535 )
538 )
536 coreconfigitem('trusted', 'groups',
539 coreconfigitem('trusted', 'groups',
537 default=list,
540 default=list,
538 )
541 )
539 coreconfigitem('trusted', 'users',
542 coreconfigitem('trusted', 'users',
540 default=list,
543 default=list,
541 )
544 )
542 coreconfigitem('ui', '_usedassubrepo',
545 coreconfigitem('ui', '_usedassubrepo',
543 default=False,
546 default=False,
544 )
547 )
545 coreconfigitem('ui', 'allowemptycommit',
548 coreconfigitem('ui', 'allowemptycommit',
546 default=False,
549 default=False,
547 )
550 )
548 coreconfigitem('ui', 'archivemeta',
551 coreconfigitem('ui', 'archivemeta',
549 default=True,
552 default=True,
550 )
553 )
551 coreconfigitem('ui', 'askusername',
554 coreconfigitem('ui', 'askusername',
552 default=False,
555 default=False,
553 )
556 )
554 coreconfigitem('ui', 'clonebundlefallback',
557 coreconfigitem('ui', 'clonebundlefallback',
555 default=False,
558 default=False,
556 )
559 )
557 coreconfigitem('ui', 'clonebundleprefers',
560 coreconfigitem('ui', 'clonebundleprefers',
558 default=list,
561 default=list,
559 )
562 )
560 coreconfigitem('ui', 'clonebundles',
563 coreconfigitem('ui', 'clonebundles',
561 default=True,
564 default=True,
562 )
565 )
563 coreconfigitem('ui', 'color',
566 coreconfigitem('ui', 'color',
564 default='auto',
567 default='auto',
565 )
568 )
566 coreconfigitem('ui', 'commitsubrepos',
569 coreconfigitem('ui', 'commitsubrepos',
567 default=False,
570 default=False,
568 )
571 )
569 coreconfigitem('ui', 'debug',
572 coreconfigitem('ui', 'debug',
570 default=False,
573 default=False,
571 )
574 )
572 coreconfigitem('ui', 'debugger',
575 coreconfigitem('ui', 'debugger',
573 default=None,
576 default=None,
574 )
577 )
575 coreconfigitem('ui', 'fallbackencoding',
578 coreconfigitem('ui', 'fallbackencoding',
576 default=None,
579 default=None,
577 )
580 )
578 coreconfigitem('ui', 'forcecwd',
581 coreconfigitem('ui', 'forcecwd',
579 default=None,
582 default=None,
580 )
583 )
581 coreconfigitem('ui', 'forcemerge',
584 coreconfigitem('ui', 'forcemerge',
582 default=None,
585 default=None,
583 )
586 )
584 coreconfigitem('ui', 'formatdebug',
587 coreconfigitem('ui', 'formatdebug',
585 default=False,
588 default=False,
586 )
589 )
587 coreconfigitem('ui', 'formatjson',
590 coreconfigitem('ui', 'formatjson',
588 default=False,
591 default=False,
589 )
592 )
590 coreconfigitem('ui', 'formatted',
593 coreconfigitem('ui', 'formatted',
591 default=None,
594 default=None,
592 )
595 )
593 coreconfigitem('ui', 'graphnodetemplate',
596 coreconfigitem('ui', 'graphnodetemplate',
594 default=None,
597 default=None,
595 )
598 )
596 coreconfigitem('ui', 'http2debuglevel',
599 coreconfigitem('ui', 'http2debuglevel',
597 default=None,
600 default=None,
598 )
601 )
599 coreconfigitem('ui', 'interactive',
602 coreconfigitem('ui', 'interactive',
600 default=None,
603 default=None,
601 )
604 )
602 coreconfigitem('ui', 'interface',
605 coreconfigitem('ui', 'interface',
603 default=None,
606 default=None,
604 )
607 )
605 coreconfigitem('ui', 'logblockedtimes',
608 coreconfigitem('ui', 'logblockedtimes',
606 default=False,
609 default=False,
607 )
610 )
608 coreconfigitem('ui', 'logtemplate',
611 coreconfigitem('ui', 'logtemplate',
609 default=None,
612 default=None,
610 )
613 )
611 coreconfigitem('ui', 'merge',
614 coreconfigitem('ui', 'merge',
612 default=None,
615 default=None,
613 )
616 )
614 coreconfigitem('ui', 'mergemarkers',
617 coreconfigitem('ui', 'mergemarkers',
615 default='basic',
618 default='basic',
616 )
619 )
617 coreconfigitem('ui', 'mergemarkertemplate',
620 coreconfigitem('ui', 'mergemarkertemplate',
618 default=('{node|short} '
621 default=('{node|short} '
619 '{ifeq(tags, "tip", "", '
622 '{ifeq(tags, "tip", "", '
620 'ifeq(tags, "", "", "{tags} "))}'
623 'ifeq(tags, "", "", "{tags} "))}'
621 '{if(bookmarks, "{bookmarks} ")}'
624 '{if(bookmarks, "{bookmarks} ")}'
622 '{ifeq(branch, "default", "", "{branch} ")}'
625 '{ifeq(branch, "default", "", "{branch} ")}'
623 '- {author|user}: {desc|firstline}')
626 '- {author|user}: {desc|firstline}')
624 )
627 )
625 coreconfigitem('ui', 'nontty',
628 coreconfigitem('ui', 'nontty',
626 default=False,
629 default=False,
627 )
630 )
628 coreconfigitem('ui', 'origbackuppath',
631 coreconfigitem('ui', 'origbackuppath',
629 default=None,
632 default=None,
630 )
633 )
631 coreconfigitem('ui', 'paginate',
634 coreconfigitem('ui', 'paginate',
632 default=True,
635 default=True,
633 )
636 )
634 coreconfigitem('ui', 'patch',
637 coreconfigitem('ui', 'patch',
635 default=None,
638 default=None,
636 )
639 )
637 coreconfigitem('ui', 'portablefilenames',
640 coreconfigitem('ui', 'portablefilenames',
638 default='warn',
641 default='warn',
639 )
642 )
640 coreconfigitem('ui', 'promptecho',
643 coreconfigitem('ui', 'promptecho',
641 default=False,
644 default=False,
642 )
645 )
643 coreconfigitem('ui', 'quiet',
646 coreconfigitem('ui', 'quiet',
644 default=False,
647 default=False,
645 )
648 )
646 coreconfigitem('ui', 'quietbookmarkmove',
649 coreconfigitem('ui', 'quietbookmarkmove',
647 default=False,
650 default=False,
648 )
651 )
649 coreconfigitem('ui', 'remotecmd',
652 coreconfigitem('ui', 'remotecmd',
650 default='hg',
653 default='hg',
651 )
654 )
652 coreconfigitem('ui', 'report_untrusted',
655 coreconfigitem('ui', 'report_untrusted',
653 default=True,
656 default=True,
654 )
657 )
655 coreconfigitem('ui', 'rollback',
658 coreconfigitem('ui', 'rollback',
656 default=True,
659 default=True,
657 )
660 )
658 coreconfigitem('ui', 'slash',
661 coreconfigitem('ui', 'slash',
659 default=False,
662 default=False,
660 )
663 )
661 coreconfigitem('ui', 'ssh',
664 coreconfigitem('ui', 'ssh',
662 default='ssh',
665 default='ssh',
663 )
666 )
664 coreconfigitem('ui', 'statuscopies',
667 coreconfigitem('ui', 'statuscopies',
665 default=False,
668 default=False,
666 )
669 )
667 coreconfigitem('ui', 'strict',
670 coreconfigitem('ui', 'strict',
668 default=False,
671 default=False,
669 )
672 )
670 coreconfigitem('ui', 'style',
673 coreconfigitem('ui', 'style',
671 default='',
674 default='',
672 )
675 )
673 coreconfigitem('ui', 'supportcontact',
676 coreconfigitem('ui', 'supportcontact',
674 default=None,
677 default=None,
675 )
678 )
676 coreconfigitem('ui', 'textwidth',
679 coreconfigitem('ui', 'textwidth',
677 default=78,
680 default=78,
678 )
681 )
679 coreconfigitem('ui', 'timeout',
682 coreconfigitem('ui', 'timeout',
680 default='600',
683 default='600',
681 )
684 )
682 coreconfigitem('ui', 'traceback',
685 coreconfigitem('ui', 'traceback',
683 default=False,
686 default=False,
684 )
687 )
685 coreconfigitem('ui', 'tweakdefaults',
688 coreconfigitem('ui', 'tweakdefaults',
686 default=False,
689 default=False,
687 )
690 )
688 coreconfigitem('ui', 'usehttp2',
691 coreconfigitem('ui', 'usehttp2',
689 default=False,
692 default=False,
690 )
693 )
691 coreconfigitem('ui', 'username',
694 coreconfigitem('ui', 'username',
692 alias=[('ui', 'user')]
695 alias=[('ui', 'user')]
693 )
696 )
694 coreconfigitem('ui', 'verbose',
697 coreconfigitem('ui', 'verbose',
695 default=False,
698 default=False,
696 )
699 )
697 coreconfigitem('verify', 'skipflags',
700 coreconfigitem('verify', 'skipflags',
698 default=None,
701 default=None,
699 )
702 )
700 coreconfigitem('web', 'accesslog',
703 coreconfigitem('web', 'accesslog',
701 default='-',
704 default='-',
702 )
705 )
703 coreconfigitem('web', 'address',
706 coreconfigitem('web', 'address',
704 default='',
707 default='',
705 )
708 )
706 coreconfigitem('web', 'allow_archive',
709 coreconfigitem('web', 'allow_archive',
707 default=list,
710 default=list,
708 )
711 )
709 coreconfigitem('web', 'allow_read',
712 coreconfigitem('web', 'allow_read',
710 default=list,
713 default=list,
711 )
714 )
712 coreconfigitem('web', 'baseurl',
715 coreconfigitem('web', 'baseurl',
713 default=None,
716 default=None,
714 )
717 )
715 coreconfigitem('web', 'cacerts',
718 coreconfigitem('web', 'cacerts',
716 default=None,
719 default=None,
717 )
720 )
718 coreconfigitem('web', 'certificate',
721 coreconfigitem('web', 'certificate',
719 default=None,
722 default=None,
720 )
723 )
721 coreconfigitem('web', 'collapse',
724 coreconfigitem('web', 'collapse',
722 default=False,
725 default=False,
723 )
726 )
724 coreconfigitem('web', 'csp',
727 coreconfigitem('web', 'csp',
725 default=None,
728 default=None,
726 )
729 )
727 coreconfigitem('web', 'deny_read',
730 coreconfigitem('web', 'deny_read',
728 default=list,
731 default=list,
729 )
732 )
730 coreconfigitem('web', 'descend',
733 coreconfigitem('web', 'descend',
731 default=True,
734 default=True,
732 )
735 )
733 coreconfigitem('web', 'description',
736 coreconfigitem('web', 'description',
734 default="",
737 default="",
735 )
738 )
736 coreconfigitem('web', 'encoding',
739 coreconfigitem('web', 'encoding',
737 default=lambda: encoding.encoding,
740 default=lambda: encoding.encoding,
738 )
741 )
739 coreconfigitem('web', 'errorlog',
742 coreconfigitem('web', 'errorlog',
740 default='-',
743 default='-',
741 )
744 )
742 coreconfigitem('web', 'ipv6',
745 coreconfigitem('web', 'ipv6',
743 default=False,
746 default=False,
744 )
747 )
745 coreconfigitem('web', 'maxchanges',
748 coreconfigitem('web', 'maxchanges',
746 default=10,
749 default=10,
747 )
750 )
748 coreconfigitem('web', 'maxfiles',
751 coreconfigitem('web', 'maxfiles',
749 default=10,
752 default=10,
750 )
753 )
751 coreconfigitem('web', 'maxshortchanges',
754 coreconfigitem('web', 'maxshortchanges',
752 default=60,
755 default=60,
753 )
756 )
754 coreconfigitem('web', 'motd',
757 coreconfigitem('web', 'motd',
755 default='',
758 default='',
756 )
759 )
757 coreconfigitem('web', 'name',
760 coreconfigitem('web', 'name',
758 default=dynamicdefault,
761 default=dynamicdefault,
759 )
762 )
760 coreconfigitem('web', 'port',
763 coreconfigitem('web', 'port',
761 default=8000,
764 default=8000,
762 )
765 )
763 coreconfigitem('web', 'prefix',
766 coreconfigitem('web', 'prefix',
764 default='',
767 default='',
765 )
768 )
766 coreconfigitem('web', 'push_ssl',
769 coreconfigitem('web', 'push_ssl',
767 default=True,
770 default=True,
768 )
771 )
769 coreconfigitem('web', 'refreshinterval',
772 coreconfigitem('web', 'refreshinterval',
770 default=20,
773 default=20,
771 )
774 )
772 coreconfigitem('web', 'stripes',
775 coreconfigitem('web', 'stripes',
773 default=1,
776 default=1,
774 )
777 )
775 coreconfigitem('web', 'style',
778 coreconfigitem('web', 'style',
776 default='paper',
779 default='paper',
777 )
780 )
778 coreconfigitem('web', 'templates',
781 coreconfigitem('web', 'templates',
779 default=None,
782 default=None,
780 )
783 )
781 coreconfigitem('web', 'view',
784 coreconfigitem('web', 'view',
782 default='served',
785 default='served',
783 )
786 )
784 coreconfigitem('worker', 'backgroundclose',
787 coreconfigitem('worker', 'backgroundclose',
785 default=dynamicdefault,
788 default=dynamicdefault,
786 )
789 )
787 # Windows defaults to a limit of 512 open files. A buffer of 128
790 # Windows defaults to a limit of 512 open files. A buffer of 128
788 # should give us enough headway.
791 # should give us enough headway.
789 coreconfigitem('worker', 'backgroundclosemaxqueue',
792 coreconfigitem('worker', 'backgroundclosemaxqueue',
790 default=384,
793 default=384,
791 )
794 )
792 coreconfigitem('worker', 'backgroundcloseminfilecount',
795 coreconfigitem('worker', 'backgroundcloseminfilecount',
793 default=2048,
796 default=2048,
794 )
797 )
795 coreconfigitem('worker', 'backgroundclosethreadcount',
798 coreconfigitem('worker', 'backgroundclosethreadcount',
796 default=4,
799 default=4,
797 )
800 )
798 coreconfigitem('worker', 'numcpus',
801 coreconfigitem('worker', 'numcpus',
799 default=None,
802 default=None,
800 )
803 )
General Comments 0
You need to be logged in to leave comments. Login now