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