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