##// END OF EJS Templates
configitems: register the 'logtoprocess.commandfinish' config
Boris Feld -
r34594:10f8f20e default
parent child Browse files
Show More
@@ -1,794 +1,797 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',
375 default=None,
376 )
374 coreconfigitem('merge', 'checkunknown',
377 coreconfigitem('merge', 'checkunknown',
375 default='abort',
378 default='abort',
376 )
379 )
377 coreconfigitem('merge', 'checkignored',
380 coreconfigitem('merge', 'checkignored',
378 default='abort',
381 default='abort',
379 )
382 )
380 coreconfigitem('merge', 'followcopies',
383 coreconfigitem('merge', 'followcopies',
381 default=True,
384 default=True,
382 )
385 )
383 coreconfigitem('merge', 'preferancestor',
386 coreconfigitem('merge', 'preferancestor',
384 default=lambda: ['*'],
387 default=lambda: ['*'],
385 )
388 )
386 coreconfigitem('pager', 'ignore',
389 coreconfigitem('pager', 'ignore',
387 default=list,
390 default=list,
388 )
391 )
389 coreconfigitem('pager', 'pager',
392 coreconfigitem('pager', 'pager',
390 default=dynamicdefault,
393 default=dynamicdefault,
391 )
394 )
392 coreconfigitem('patch', 'eol',
395 coreconfigitem('patch', 'eol',
393 default='strict',
396 default='strict',
394 )
397 )
395 coreconfigitem('patch', 'fuzz',
398 coreconfigitem('patch', 'fuzz',
396 default=2,
399 default=2,
397 )
400 )
398 coreconfigitem('paths', 'default',
401 coreconfigitem('paths', 'default',
399 default=None,
402 default=None,
400 )
403 )
401 coreconfigitem('paths', 'default-push',
404 coreconfigitem('paths', 'default-push',
402 default=None,
405 default=None,
403 )
406 )
404 coreconfigitem('phases', 'checksubrepos',
407 coreconfigitem('phases', 'checksubrepos',
405 default='follow',
408 default='follow',
406 )
409 )
407 coreconfigitem('phases', 'new-commit',
410 coreconfigitem('phases', 'new-commit',
408 default='draft',
411 default='draft',
409 )
412 )
410 coreconfigitem('phases', 'publish',
413 coreconfigitem('phases', 'publish',
411 default=True,
414 default=True,
412 )
415 )
413 coreconfigitem('profiling', 'enabled',
416 coreconfigitem('profiling', 'enabled',
414 default=False,
417 default=False,
415 )
418 )
416 coreconfigitem('profiling', 'format',
419 coreconfigitem('profiling', 'format',
417 default='text',
420 default='text',
418 )
421 )
419 coreconfigitem('profiling', 'freq',
422 coreconfigitem('profiling', 'freq',
420 default=1000,
423 default=1000,
421 )
424 )
422 coreconfigitem('profiling', 'limit',
425 coreconfigitem('profiling', 'limit',
423 default=30,
426 default=30,
424 )
427 )
425 coreconfigitem('profiling', 'nested',
428 coreconfigitem('profiling', 'nested',
426 default=0,
429 default=0,
427 )
430 )
428 coreconfigitem('profiling', 'output',
431 coreconfigitem('profiling', 'output',
429 default=None,
432 default=None,
430 )
433 )
431 coreconfigitem('profiling', 'showmax',
434 coreconfigitem('profiling', 'showmax',
432 default=0.999,
435 default=0.999,
433 )
436 )
434 coreconfigitem('profiling', 'showmin',
437 coreconfigitem('profiling', 'showmin',
435 default=dynamicdefault,
438 default=dynamicdefault,
436 )
439 )
437 coreconfigitem('profiling', 'sort',
440 coreconfigitem('profiling', 'sort',
438 default='inlinetime',
441 default='inlinetime',
439 )
442 )
440 coreconfigitem('profiling', 'statformat',
443 coreconfigitem('profiling', 'statformat',
441 default='hotpath',
444 default='hotpath',
442 )
445 )
443 coreconfigitem('profiling', 'type',
446 coreconfigitem('profiling', 'type',
444 default='stat',
447 default='stat',
445 )
448 )
446 coreconfigitem('progress', 'assume-tty',
449 coreconfigitem('progress', 'assume-tty',
447 default=False,
450 default=False,
448 )
451 )
449 coreconfigitem('progress', 'changedelay',
452 coreconfigitem('progress', 'changedelay',
450 default=1,
453 default=1,
451 )
454 )
452 coreconfigitem('progress', 'clear-complete',
455 coreconfigitem('progress', 'clear-complete',
453 default=True,
456 default=True,
454 )
457 )
455 coreconfigitem('progress', 'debug',
458 coreconfigitem('progress', 'debug',
456 default=False,
459 default=False,
457 )
460 )
458 coreconfigitem('progress', 'delay',
461 coreconfigitem('progress', 'delay',
459 default=3,
462 default=3,
460 )
463 )
461 coreconfigitem('progress', 'disable',
464 coreconfigitem('progress', 'disable',
462 default=False,
465 default=False,
463 )
466 )
464 coreconfigitem('progress', 'estimateinterval',
467 coreconfigitem('progress', 'estimateinterval',
465 default=60.0,
468 default=60.0,
466 )
469 )
467 coreconfigitem('progress', 'refresh',
470 coreconfigitem('progress', 'refresh',
468 default=0.1,
471 default=0.1,
469 )
472 )
470 coreconfigitem('progress', 'width',
473 coreconfigitem('progress', 'width',
471 default=dynamicdefault,
474 default=dynamicdefault,
472 )
475 )
473 coreconfigitem('push', 'pushvars.server',
476 coreconfigitem('push', 'pushvars.server',
474 default=False,
477 default=False,
475 )
478 )
476 coreconfigitem('server', 'bundle1',
479 coreconfigitem('server', 'bundle1',
477 default=True,
480 default=True,
478 )
481 )
479 coreconfigitem('server', 'bundle1gd',
482 coreconfigitem('server', 'bundle1gd',
480 default=None,
483 default=None,
481 )
484 )
482 coreconfigitem('server', 'compressionengines',
485 coreconfigitem('server', 'compressionengines',
483 default=list,
486 default=list,
484 )
487 )
485 coreconfigitem('server', 'concurrent-push-mode',
488 coreconfigitem('server', 'concurrent-push-mode',
486 default='strict',
489 default='strict',
487 )
490 )
488 coreconfigitem('server', 'disablefullbundle',
491 coreconfigitem('server', 'disablefullbundle',
489 default=False,
492 default=False,
490 )
493 )
491 coreconfigitem('server', 'maxhttpheaderlen',
494 coreconfigitem('server', 'maxhttpheaderlen',
492 default=1024,
495 default=1024,
493 )
496 )
494 coreconfigitem('server', 'preferuncompressed',
497 coreconfigitem('server', 'preferuncompressed',
495 default=False,
498 default=False,
496 )
499 )
497 coreconfigitem('server', 'uncompressed',
500 coreconfigitem('server', 'uncompressed',
498 default=True,
501 default=True,
499 )
502 )
500 coreconfigitem('server', 'uncompressedallowsecret',
503 coreconfigitem('server', 'uncompressedallowsecret',
501 default=False,
504 default=False,
502 )
505 )
503 coreconfigitem('server', 'validate',
506 coreconfigitem('server', 'validate',
504 default=False,
507 default=False,
505 )
508 )
506 coreconfigitem('server', 'zliblevel',
509 coreconfigitem('server', 'zliblevel',
507 default=-1,
510 default=-1,
508 )
511 )
509 coreconfigitem('smtp', 'host',
512 coreconfigitem('smtp', 'host',
510 default=None,
513 default=None,
511 )
514 )
512 coreconfigitem('smtp', 'local_hostname',
515 coreconfigitem('smtp', 'local_hostname',
513 default=None,
516 default=None,
514 )
517 )
515 coreconfigitem('smtp', 'password',
518 coreconfigitem('smtp', 'password',
516 default=None,
519 default=None,
517 )
520 )
518 coreconfigitem('smtp', 'port',
521 coreconfigitem('smtp', 'port',
519 default=dynamicdefault,
522 default=dynamicdefault,
520 )
523 )
521 coreconfigitem('smtp', 'tls',
524 coreconfigitem('smtp', 'tls',
522 default='none',
525 default='none',
523 )
526 )
524 coreconfigitem('smtp', 'username',
527 coreconfigitem('smtp', 'username',
525 default=None,
528 default=None,
526 )
529 )
527 coreconfigitem('sparse', 'missingwarning',
530 coreconfigitem('sparse', 'missingwarning',
528 default=True,
531 default=True,
529 )
532 )
530 coreconfigitem('trusted', 'groups',
533 coreconfigitem('trusted', 'groups',
531 default=list,
534 default=list,
532 )
535 )
533 coreconfigitem('trusted', 'users',
536 coreconfigitem('trusted', 'users',
534 default=list,
537 default=list,
535 )
538 )
536 coreconfigitem('ui', '_usedassubrepo',
539 coreconfigitem('ui', '_usedassubrepo',
537 default=False,
540 default=False,
538 )
541 )
539 coreconfigitem('ui', 'allowemptycommit',
542 coreconfigitem('ui', 'allowemptycommit',
540 default=False,
543 default=False,
541 )
544 )
542 coreconfigitem('ui', 'archivemeta',
545 coreconfigitem('ui', 'archivemeta',
543 default=True,
546 default=True,
544 )
547 )
545 coreconfigitem('ui', 'askusername',
548 coreconfigitem('ui', 'askusername',
546 default=False,
549 default=False,
547 )
550 )
548 coreconfigitem('ui', 'clonebundlefallback',
551 coreconfigitem('ui', 'clonebundlefallback',
549 default=False,
552 default=False,
550 )
553 )
551 coreconfigitem('ui', 'clonebundleprefers',
554 coreconfigitem('ui', 'clonebundleprefers',
552 default=list,
555 default=list,
553 )
556 )
554 coreconfigitem('ui', 'clonebundles',
557 coreconfigitem('ui', 'clonebundles',
555 default=True,
558 default=True,
556 )
559 )
557 coreconfigitem('ui', 'color',
560 coreconfigitem('ui', 'color',
558 default='auto',
561 default='auto',
559 )
562 )
560 coreconfigitem('ui', 'commitsubrepos',
563 coreconfigitem('ui', 'commitsubrepos',
561 default=False,
564 default=False,
562 )
565 )
563 coreconfigitem('ui', 'debug',
566 coreconfigitem('ui', 'debug',
564 default=False,
567 default=False,
565 )
568 )
566 coreconfigitem('ui', 'debugger',
569 coreconfigitem('ui', 'debugger',
567 default=None,
570 default=None,
568 )
571 )
569 coreconfigitem('ui', 'fallbackencoding',
572 coreconfigitem('ui', 'fallbackencoding',
570 default=None,
573 default=None,
571 )
574 )
572 coreconfigitem('ui', 'forcecwd',
575 coreconfigitem('ui', 'forcecwd',
573 default=None,
576 default=None,
574 )
577 )
575 coreconfigitem('ui', 'forcemerge',
578 coreconfigitem('ui', 'forcemerge',
576 default=None,
579 default=None,
577 )
580 )
578 coreconfigitem('ui', 'formatdebug',
581 coreconfigitem('ui', 'formatdebug',
579 default=False,
582 default=False,
580 )
583 )
581 coreconfigitem('ui', 'formatjson',
584 coreconfigitem('ui', 'formatjson',
582 default=False,
585 default=False,
583 )
586 )
584 coreconfigitem('ui', 'formatted',
587 coreconfigitem('ui', 'formatted',
585 default=None,
588 default=None,
586 )
589 )
587 coreconfigitem('ui', 'graphnodetemplate',
590 coreconfigitem('ui', 'graphnodetemplate',
588 default=None,
591 default=None,
589 )
592 )
590 coreconfigitem('ui', 'http2debuglevel',
593 coreconfigitem('ui', 'http2debuglevel',
591 default=None,
594 default=None,
592 )
595 )
593 coreconfigitem('ui', 'interactive',
596 coreconfigitem('ui', 'interactive',
594 default=None,
597 default=None,
595 )
598 )
596 coreconfigitem('ui', 'interface',
599 coreconfigitem('ui', 'interface',
597 default=None,
600 default=None,
598 )
601 )
599 coreconfigitem('ui', 'logblockedtimes',
602 coreconfigitem('ui', 'logblockedtimes',
600 default=False,
603 default=False,
601 )
604 )
602 coreconfigitem('ui', 'logtemplate',
605 coreconfigitem('ui', 'logtemplate',
603 default=None,
606 default=None,
604 )
607 )
605 coreconfigitem('ui', 'merge',
608 coreconfigitem('ui', 'merge',
606 default=None,
609 default=None,
607 )
610 )
608 coreconfigitem('ui', 'mergemarkers',
611 coreconfigitem('ui', 'mergemarkers',
609 default='basic',
612 default='basic',
610 )
613 )
611 coreconfigitem('ui', 'mergemarkertemplate',
614 coreconfigitem('ui', 'mergemarkertemplate',
612 default=('{node|short} '
615 default=('{node|short} '
613 '{ifeq(tags, "tip", "", '
616 '{ifeq(tags, "tip", "", '
614 'ifeq(tags, "", "", "{tags} "))}'
617 'ifeq(tags, "", "", "{tags} "))}'
615 '{if(bookmarks, "{bookmarks} ")}'
618 '{if(bookmarks, "{bookmarks} ")}'
616 '{ifeq(branch, "default", "", "{branch} ")}'
619 '{ifeq(branch, "default", "", "{branch} ")}'
617 '- {author|user}: {desc|firstline}')
620 '- {author|user}: {desc|firstline}')
618 )
621 )
619 coreconfigitem('ui', 'nontty',
622 coreconfigitem('ui', 'nontty',
620 default=False,
623 default=False,
621 )
624 )
622 coreconfigitem('ui', 'origbackuppath',
625 coreconfigitem('ui', 'origbackuppath',
623 default=None,
626 default=None,
624 )
627 )
625 coreconfigitem('ui', 'paginate',
628 coreconfigitem('ui', 'paginate',
626 default=True,
629 default=True,
627 )
630 )
628 coreconfigitem('ui', 'patch',
631 coreconfigitem('ui', 'patch',
629 default=None,
632 default=None,
630 )
633 )
631 coreconfigitem('ui', 'portablefilenames',
634 coreconfigitem('ui', 'portablefilenames',
632 default='warn',
635 default='warn',
633 )
636 )
634 coreconfigitem('ui', 'promptecho',
637 coreconfigitem('ui', 'promptecho',
635 default=False,
638 default=False,
636 )
639 )
637 coreconfigitem('ui', 'quiet',
640 coreconfigitem('ui', 'quiet',
638 default=False,
641 default=False,
639 )
642 )
640 coreconfigitem('ui', 'quietbookmarkmove',
643 coreconfigitem('ui', 'quietbookmarkmove',
641 default=False,
644 default=False,
642 )
645 )
643 coreconfigitem('ui', 'remotecmd',
646 coreconfigitem('ui', 'remotecmd',
644 default='hg',
647 default='hg',
645 )
648 )
646 coreconfigitem('ui', 'report_untrusted',
649 coreconfigitem('ui', 'report_untrusted',
647 default=True,
650 default=True,
648 )
651 )
649 coreconfigitem('ui', 'rollback',
652 coreconfigitem('ui', 'rollback',
650 default=True,
653 default=True,
651 )
654 )
652 coreconfigitem('ui', 'slash',
655 coreconfigitem('ui', 'slash',
653 default=False,
656 default=False,
654 )
657 )
655 coreconfigitem('ui', 'ssh',
658 coreconfigitem('ui', 'ssh',
656 default='ssh',
659 default='ssh',
657 )
660 )
658 coreconfigitem('ui', 'statuscopies',
661 coreconfigitem('ui', 'statuscopies',
659 default=False,
662 default=False,
660 )
663 )
661 coreconfigitem('ui', 'strict',
664 coreconfigitem('ui', 'strict',
662 default=False,
665 default=False,
663 )
666 )
664 coreconfigitem('ui', 'style',
667 coreconfigitem('ui', 'style',
665 default='',
668 default='',
666 )
669 )
667 coreconfigitem('ui', 'supportcontact',
670 coreconfigitem('ui', 'supportcontact',
668 default=None,
671 default=None,
669 )
672 )
670 coreconfigitem('ui', 'textwidth',
673 coreconfigitem('ui', 'textwidth',
671 default=78,
674 default=78,
672 )
675 )
673 coreconfigitem('ui', 'timeout',
676 coreconfigitem('ui', 'timeout',
674 default='600',
677 default='600',
675 )
678 )
676 coreconfigitem('ui', 'traceback',
679 coreconfigitem('ui', 'traceback',
677 default=False,
680 default=False,
678 )
681 )
679 coreconfigitem('ui', 'tweakdefaults',
682 coreconfigitem('ui', 'tweakdefaults',
680 default=False,
683 default=False,
681 )
684 )
682 coreconfigitem('ui', 'usehttp2',
685 coreconfigitem('ui', 'usehttp2',
683 default=False,
686 default=False,
684 )
687 )
685 coreconfigitem('ui', 'username',
688 coreconfigitem('ui', 'username',
686 alias=[('ui', 'user')]
689 alias=[('ui', 'user')]
687 )
690 )
688 coreconfigitem('ui', 'verbose',
691 coreconfigitem('ui', 'verbose',
689 default=False,
692 default=False,
690 )
693 )
691 coreconfigitem('verify', 'skipflags',
694 coreconfigitem('verify', 'skipflags',
692 default=None,
695 default=None,
693 )
696 )
694 coreconfigitem('web', 'accesslog',
697 coreconfigitem('web', 'accesslog',
695 default='-',
698 default='-',
696 )
699 )
697 coreconfigitem('web', 'address',
700 coreconfigitem('web', 'address',
698 default='',
701 default='',
699 )
702 )
700 coreconfigitem('web', 'allow_archive',
703 coreconfigitem('web', 'allow_archive',
701 default=list,
704 default=list,
702 )
705 )
703 coreconfigitem('web', 'allow_read',
706 coreconfigitem('web', 'allow_read',
704 default=list,
707 default=list,
705 )
708 )
706 coreconfigitem('web', 'baseurl',
709 coreconfigitem('web', 'baseurl',
707 default=None,
710 default=None,
708 )
711 )
709 coreconfigitem('web', 'cacerts',
712 coreconfigitem('web', 'cacerts',
710 default=None,
713 default=None,
711 )
714 )
712 coreconfigitem('web', 'certificate',
715 coreconfigitem('web', 'certificate',
713 default=None,
716 default=None,
714 )
717 )
715 coreconfigitem('web', 'collapse',
718 coreconfigitem('web', 'collapse',
716 default=False,
719 default=False,
717 )
720 )
718 coreconfigitem('web', 'csp',
721 coreconfigitem('web', 'csp',
719 default=None,
722 default=None,
720 )
723 )
721 coreconfigitem('web', 'deny_read',
724 coreconfigitem('web', 'deny_read',
722 default=list,
725 default=list,
723 )
726 )
724 coreconfigitem('web', 'descend',
727 coreconfigitem('web', 'descend',
725 default=True,
728 default=True,
726 )
729 )
727 coreconfigitem('web', 'description',
730 coreconfigitem('web', 'description',
728 default="",
731 default="",
729 )
732 )
730 coreconfigitem('web', 'encoding',
733 coreconfigitem('web', 'encoding',
731 default=lambda: encoding.encoding,
734 default=lambda: encoding.encoding,
732 )
735 )
733 coreconfigitem('web', 'errorlog',
736 coreconfigitem('web', 'errorlog',
734 default='-',
737 default='-',
735 )
738 )
736 coreconfigitem('web', 'ipv6',
739 coreconfigitem('web', 'ipv6',
737 default=False,
740 default=False,
738 )
741 )
739 coreconfigitem('web', 'maxchanges',
742 coreconfigitem('web', 'maxchanges',
740 default=10,
743 default=10,
741 )
744 )
742 coreconfigitem('web', 'maxfiles',
745 coreconfigitem('web', 'maxfiles',
743 default=10,
746 default=10,
744 )
747 )
745 coreconfigitem('web', 'maxshortchanges',
748 coreconfigitem('web', 'maxshortchanges',
746 default=60,
749 default=60,
747 )
750 )
748 coreconfigitem('web', 'motd',
751 coreconfigitem('web', 'motd',
749 default='',
752 default='',
750 )
753 )
751 coreconfigitem('web', 'name',
754 coreconfigitem('web', 'name',
752 default=dynamicdefault,
755 default=dynamicdefault,
753 )
756 )
754 coreconfigitem('web', 'port',
757 coreconfigitem('web', 'port',
755 default=8000,
758 default=8000,
756 )
759 )
757 coreconfigitem('web', 'prefix',
760 coreconfigitem('web', 'prefix',
758 default='',
761 default='',
759 )
762 )
760 coreconfigitem('web', 'push_ssl',
763 coreconfigitem('web', 'push_ssl',
761 default=True,
764 default=True,
762 )
765 )
763 coreconfigitem('web', 'refreshinterval',
766 coreconfigitem('web', 'refreshinterval',
764 default=20,
767 default=20,
765 )
768 )
766 coreconfigitem('web', 'stripes',
769 coreconfigitem('web', 'stripes',
767 default=1,
770 default=1,
768 )
771 )
769 coreconfigitem('web', 'style',
772 coreconfigitem('web', 'style',
770 default='paper',
773 default='paper',
771 )
774 )
772 coreconfigitem('web', 'templates',
775 coreconfigitem('web', 'templates',
773 default=None,
776 default=None,
774 )
777 )
775 coreconfigitem('web', 'view',
778 coreconfigitem('web', 'view',
776 default='served',
779 default='served',
777 )
780 )
778 coreconfigitem('worker', 'backgroundclose',
781 coreconfigitem('worker', 'backgroundclose',
779 default=dynamicdefault,
782 default=dynamicdefault,
780 )
783 )
781 # Windows defaults to a limit of 512 open files. A buffer of 128
784 # Windows defaults to a limit of 512 open files. A buffer of 128
782 # should give us enough headway.
785 # should give us enough headway.
783 coreconfigitem('worker', 'backgroundclosemaxqueue',
786 coreconfigitem('worker', 'backgroundclosemaxqueue',
784 default=384,
787 default=384,
785 )
788 )
786 coreconfigitem('worker', 'backgroundcloseminfilecount',
789 coreconfigitem('worker', 'backgroundcloseminfilecount',
787 default=2048,
790 default=2048,
788 )
791 )
789 coreconfigitem('worker', 'backgroundclosethreadcount',
792 coreconfigitem('worker', 'backgroundclosethreadcount',
790 default=4,
793 default=4,
791 )
794 )
792 coreconfigitem('worker', 'numcpus',
795 coreconfigitem('worker', 'numcpus',
793 default=None,
796 default=None,
794 )
797 )
General Comments 0
You need to be logged in to leave comments. Login now