author | Augie Fackler <augie@google.com> |
Fri, 02 Mar 2018 00:37:07 -0500 | |
changeset 36571 | 5a3f8da663e5 |
parent 36426 | 23d12524a202 |
child 36676 | c6a61298ac32 |
permissions | -rw-r--r-- |
32983
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
1 |
# configitems.py - centralized declaration of configuration option |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
2 |
# |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
3 |
# Copyright 2017 Pierre-Yves David <pierre-yves.david@octobus.net> |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
4 |
# |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
5 |
# This software may be used and distributed according to the terms of the |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
6 |
# GNU General Public License version 2 or any later version. |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
7 |
|
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
8 |
from __future__ import absolute_import |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
9 |
|
33131
c2ca511c4771
configitems: extract the logic to build a registrar on any configtable
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33061
diff
changeset
|
10 |
import functools |
34662
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
11 |
import re |
33131
c2ca511c4771
configitems: extract the logic to build a registrar on any configtable
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33061
diff
changeset
|
12 |
|
32984
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
13 |
from . import ( |
34239
344fd1fe237b
configitems: register the 'web.encoding' config
Boris Feld <boris.feld@octobus.net>
parents:
34238
diff
changeset
|
14 |
encoding, |
32984
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
15 |
error, |
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
16 |
) |
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
17 |
|
33132
c467d13334ee
configitems: add an official API for extensions to register config item
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33131
diff
changeset
|
18 |
def loadconfigtable(ui, extname, configtable): |
c467d13334ee
configitems: add an official API for extensions to register config item
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33131
diff
changeset
|
19 |
"""update config item known to the ui with the extension ones""" |
35808
178aacdc25db
configitems: traverse sections deterministically
Gregory Szorc <gregory.szorc@gmail.com>
parents:
35763
diff
changeset
|
20 |
for section, items in sorted(configtable.items()): |
34768
2b954c9c5395
configitems: fix registration of extensions config
Boris Feld <boris.feld@octobus.net>
parents:
34759
diff
changeset
|
21 |
knownitems = ui._knownconfig.setdefault(section, itemregister()) |
33133
bf1292c057ef
configitems: add a devel warning for extensions items overiding core one
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33132
diff
changeset
|
22 |
knownkeys = set(knownitems) |
bf1292c057ef
configitems: add a devel warning for extensions items overiding core one
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33132
diff
changeset
|
23 |
newkeys = set(items) |
bf1292c057ef
configitems: add a devel warning for extensions items overiding core one
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33132
diff
changeset
|
24 |
for key in sorted(knownkeys & newkeys): |
bf1292c057ef
configitems: add a devel warning for extensions items overiding core one
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33132
diff
changeset
|
25 |
msg = "extension '%s' overwrite config item '%s.%s'" |
bf1292c057ef
configitems: add a devel warning for extensions items overiding core one
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33132
diff
changeset
|
26 |
msg %= (extname, section, key) |
bf1292c057ef
configitems: add a devel warning for extensions items overiding core one
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33132
diff
changeset
|
27 |
ui.develwarn(msg, config='warn-config') |
bf1292c057ef
configitems: add a devel warning for extensions items overiding core one
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33132
diff
changeset
|
28 |
|
bf1292c057ef
configitems: add a devel warning for extensions items overiding core one
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33132
diff
changeset
|
29 |
knownitems.update(items) |
33132
c467d13334ee
configitems: add an official API for extensions to register config item
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33131
diff
changeset
|
30 |
|
32983
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
31 |
class configitem(object): |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
32 |
"""represent a known config item |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
33 |
|
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
34 |
:section: the official config section where to find this item, |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
35 |
:name: the official name within the section, |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
36 |
:default: default value for this item, |
34662
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
37 |
:alias: optional list of tuples as alternatives, |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
38 |
:generic: this is a generic definition, match name using regular expression. |
32983
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
39 |
""" |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
40 |
|
34662
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
41 |
def __init__(self, section, name, default=None, alias=(), |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
42 |
generic=False, priority=0): |
32983
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
43 |
self.section = section |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
44 |
self.name = name |
0d757af1ea67
configitems: add a basic class to hold config item information
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
diff
changeset
|
45 |
self.default = default |
33329
e714159860fd
configitems: add alias support in config
David Demelier <demelier.david@gmail.com>
parents:
33250
diff
changeset
|
46 |
self.alias = list(alias) |
34662
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
47 |
self.generic = generic |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
48 |
self.priority = priority |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
49 |
self._re = None |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
50 |
if generic: |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
51 |
self._re = re.compile(self.name) |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
52 |
|
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
53 |
class itemregister(dict): |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
54 |
"""A specialized dictionary that can handle wild-card selection""" |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
55 |
|
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
56 |
def __init__(self): |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
57 |
super(itemregister, self).__init__() |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
58 |
self._generics = set() |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
59 |
|
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
60 |
def update(self, other): |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
61 |
super(itemregister, self).update(other) |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
62 |
self._generics.update(other._generics) |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
63 |
|
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
64 |
def __setitem__(self, key, item): |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
65 |
super(itemregister, self).__setitem__(key, item) |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
66 |
if item.generic: |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
67 |
self._generics.add(item) |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
68 |
|
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
69 |
def get(self, key): |
34874
e3fbf8e3fef2
configitems: do not directly match generic items
Boris Feld <boris.feld@octobus.net>
parents:
34872
diff
changeset
|
70 |
baseitem = super(itemregister, self).get(key) |
e3fbf8e3fef2
configitems: do not directly match generic items
Boris Feld <boris.feld@octobus.net>
parents:
34872
diff
changeset
|
71 |
if baseitem is not None and not baseitem.generic: |
e3fbf8e3fef2
configitems: do not directly match generic items
Boris Feld <boris.feld@octobus.net>
parents:
34872
diff
changeset
|
72 |
return baseitem |
34662
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
73 |
|
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
74 |
# search for a matching generic item |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
75 |
generics = sorted(self._generics, key=(lambda x: (x.priority, x.name))) |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
76 |
for item in generics: |
34875
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
77 |
# we use 'match' instead of 'search' to make the matching simpler |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
78 |
# for people unfamiliar with regular expression. Having the match |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
79 |
# rooted to the start of the string will produce less surprising |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
80 |
# result for user writing simple regex for sub-attribute. |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
81 |
# |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
82 |
# For example using "color\..*" match produces an unsurprising |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
83 |
# result, while using search could suddenly match apparently |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
84 |
# unrelated configuration that happens to contains "color." |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
85 |
# anywhere. This is a tradeoff where we favor requiring ".*" on |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
86 |
# some match to avoid the need to prefix most pattern with "^". |
4f0d4bc63b8a
configitems: document the choice of using 'match' instead of 'search'
Boris Feld <boris.feld@octobus.net>
parents:
34874
diff
changeset
|
87 |
# The "^" seems more error prone. |
34662
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
88 |
if item._re.match(key): |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
89 |
return item |
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
90 |
|
34874
e3fbf8e3fef2
configitems: do not directly match generic items
Boris Feld <boris.feld@octobus.net>
parents:
34872
diff
changeset
|
91 |
return None |
32984
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
92 |
|
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
93 |
coreitems = {} |
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
94 |
|
33131
c2ca511c4771
configitems: extract the logic to build a registrar on any configtable
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33061
diff
changeset
|
95 |
def _register(configtable, *args, **kwargs): |
32984
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
96 |
item = configitem(*args, **kwargs) |
34662
181d913b17e6
configitems: allow for the registration of "generic" config item
Boris Feld <boris.feld@octobus.net>
parents:
34653
diff
changeset
|
97 |
section = configtable.setdefault(item.section, itemregister()) |
32984
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
98 |
if item.name in section: |
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
99 |
msg = "duplicated config item registration for '%s.%s'" |
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
100 |
raise error.ProgrammingError(msg % (item.section, item.name)) |
6d983e8af49c
configitems: introduce a central registry for config option
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32983
diff
changeset
|
101 |
section[item.name] = item |
32986
2529e2ae9f4c
configitems: register 'ui.quiet' as first example
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32984
diff
changeset
|
102 |
|
33471
d74141ccfd8b
configitems: handle case were the default value is not static
Boris Feld <boris.feld@octobus.net>
parents:
33329
diff
changeset
|
103 |
# special value for case where the default is derived from other values |
d74141ccfd8b
configitems: handle case were the default value is not static
Boris Feld <boris.feld@octobus.net>
parents:
33329
diff
changeset
|
104 |
dynamicdefault = object() |
d74141ccfd8b
configitems: handle case were the default value is not static
Boris Feld <boris.feld@octobus.net>
parents:
33329
diff
changeset
|
105 |
|
32986
2529e2ae9f4c
configitems: register 'ui.quiet' as first example
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32984
diff
changeset
|
106 |
# Registering actual config items |
2529e2ae9f4c
configitems: register 'ui.quiet' as first example
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32984
diff
changeset
|
107 |
|
33131
c2ca511c4771
configitems: extract the logic to build a registrar on any configtable
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33061
diff
changeset
|
108 |
def getitemregister(configtable): |
34917
ee9243715c59
registrar: host "dynamicdefault" constant by configitem object
Yuya Nishihara <yuya@tcha.org>
parents:
34916
diff
changeset
|
109 |
f = functools.partial(_register, configtable) |
ee9243715c59
registrar: host "dynamicdefault" constant by configitem object
Yuya Nishihara <yuya@tcha.org>
parents:
34916
diff
changeset
|
110 |
# export pseudo enum as configitem.* |
ee9243715c59
registrar: host "dynamicdefault" constant by configitem object
Yuya Nishihara <yuya@tcha.org>
parents:
34916
diff
changeset
|
111 |
f.dynamicdefault = dynamicdefault |
ee9243715c59
registrar: host "dynamicdefault" constant by configitem object
Yuya Nishihara <yuya@tcha.org>
parents:
34916
diff
changeset
|
112 |
return f |
33131
c2ca511c4771
configitems: extract the logic to build a registrar on any configtable
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33061
diff
changeset
|
113 |
|
c2ca511c4771
configitems: extract the logic to build a registrar on any configtable
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33061
diff
changeset
|
114 |
coreconfigitem = getitemregister(coreitems) |
c2ca511c4771
configitems: extract the logic to build a registrar on any configtable
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33061
diff
changeset
|
115 |
|
34663
6de7842290b2
configitems: register the 'alias' section
Boris Feld <boris.feld@octobus.net>
parents:
34662
diff
changeset
|
116 |
coreconfigitem('alias', '.*', |
6de7842290b2
configitems: register the 'alias' section
Boris Feld <boris.feld@octobus.net>
parents:
34662
diff
changeset
|
117 |
default=None, |
6de7842290b2
configitems: register the 'alias' section
Boris Feld <boris.feld@octobus.net>
parents:
34662
diff
changeset
|
118 |
generic=True, |
6de7842290b2
configitems: register the 'alias' section
Boris Feld <boris.feld@octobus.net>
parents:
34662
diff
changeset
|
119 |
) |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
120 |
coreconfigitem('annotate', 'nodates', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
121 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
122 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
123 |
coreconfigitem('annotate', 'showfunc', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
124 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
125 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
126 |
coreconfigitem('annotate', 'unified', |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
127 |
default=None, |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
128 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
129 |
coreconfigitem('annotate', 'git', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
130 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
131 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
132 |
coreconfigitem('annotate', 'ignorews', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
133 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
134 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
135 |
coreconfigitem('annotate', 'ignorewsamount', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
136 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
137 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
138 |
coreconfigitem('annotate', 'ignoreblanklines', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
139 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
140 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
141 |
coreconfigitem('annotate', 'ignorewseol', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
142 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
143 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
144 |
coreconfigitem('annotate', 'nobinary', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
145 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
146 |
) |
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
147 |
coreconfigitem('annotate', 'noprefix', |
34738
1c9128b735cd
configitems: fixup default value of annotate config option
Boris Feld <boris.feld@octobus.net>
parents:
34735
diff
changeset
|
148 |
default=False, |
34618
37b4375b1221
configitems: register the annotate diff options
Boris Feld <boris.feld@octobus.net>
parents:
34616
diff
changeset
|
149 |
) |
33180
21383dbb3611
configitems: register the 'auth.cookiefile' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33179
diff
changeset
|
150 |
coreconfigitem('auth', 'cookiefile', |
21383dbb3611
configitems: register the 'auth.cookiefile' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33179
diff
changeset
|
151 |
default=None, |
21383dbb3611
configitems: register the 'auth.cookiefile' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33179
diff
changeset
|
152 |
) |
33181
640a0760e666
configitems: register the 'bookmarks.pushing' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33180
diff
changeset
|
153 |
# bookmarks.pushing: internal hack for discovery |
640a0760e666
configitems: register the 'bookmarks.pushing' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33180
diff
changeset
|
154 |
coreconfigitem('bookmarks', 'pushing', |
640a0760e666
configitems: register the 'bookmarks.pushing' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33180
diff
changeset
|
155 |
default=list, |
640a0760e666
configitems: register the 'bookmarks.pushing' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33180
diff
changeset
|
156 |
) |
33182
634997248c97
configitems: register the 'bundle.mainreporoot' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33181
diff
changeset
|
157 |
# bundle.mainreporoot: internal hack for bundlerepo |
634997248c97
configitems: register the 'bundle.mainreporoot' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33181
diff
changeset
|
158 |
coreconfigitem('bundle', 'mainreporoot', |
634997248c97
configitems: register the 'bundle.mainreporoot' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33181
diff
changeset
|
159 |
default='', |
634997248c97
configitems: register the 'bundle.mainreporoot' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33181
diff
changeset
|
160 |
) |
33183
9f95f0bb343b
configitems: register the 'bundle.reorder' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33182
diff
changeset
|
161 |
# bundle.reorder: experimental config |
9f95f0bb343b
configitems: register the 'bundle.reorder' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33182
diff
changeset
|
162 |
coreconfigitem('bundle', 'reorder', |
9f95f0bb343b
configitems: register the 'bundle.reorder' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33182
diff
changeset
|
163 |
default='auto', |
9f95f0bb343b
configitems: register the 'bundle.reorder' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33182
diff
changeset
|
164 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
165 |
coreconfigitem('censor', 'policy', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
166 |
default='abort', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
167 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
168 |
coreconfigitem('chgserver', 'idletimeout', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
169 |
default=3600, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
170 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
171 |
coreconfigitem('chgserver', 'skiphash', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
172 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
173 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
174 |
coreconfigitem('cmdserver', 'log', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
175 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
176 |
) |
34664
a0c2a19d64e7
configitems: register the 'color' section
Boris Feld <boris.feld@octobus.net>
parents:
34663
diff
changeset
|
177 |
coreconfigitem('color', '.*', |
a0c2a19d64e7
configitems: register the 'color' section
Boris Feld <boris.feld@octobus.net>
parents:
34663
diff
changeset
|
178 |
default=None, |
a0c2a19d64e7
configitems: register the 'color' section
Boris Feld <boris.feld@octobus.net>
parents:
34663
diff
changeset
|
179 |
generic=True, |
a0c2a19d64e7
configitems: register the 'color' section
Boris Feld <boris.feld@octobus.net>
parents:
34663
diff
changeset
|
180 |
) |
33179
95c57596b380
configitems: register the 'color.mode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33177
diff
changeset
|
181 |
coreconfigitem('color', 'mode', |
95c57596b380
configitems: register the 'color.mode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33177
diff
changeset
|
182 |
default='auto', |
95c57596b380
configitems: register the 'color.mode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33177
diff
changeset
|
183 |
) |
33472
d0869a6e83ab
configitems: register the 'color.pagermode' config
Boris Feld <boris.feld@octobus.net>
parents:
33471
diff
changeset
|
184 |
coreconfigitem('color', 'pagermode', |
d0869a6e83ab
configitems: register the 'color.pagermode' config
Boris Feld <boris.feld@octobus.net>
parents:
33471
diff
changeset
|
185 |
default=dynamicdefault, |
d0869a6e83ab
configitems: register the 'color.pagermode' config
Boris Feld <boris.feld@octobus.net>
parents:
33471
diff
changeset
|
186 |
) |
34888 | 187 |
coreconfigitem('commands', 'show.aliasprefix', |
188 |
default=list, |
|
189 |
) |
|
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
190 |
coreconfigitem('commands', 'status.relative', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
191 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
192 |
) |
33771
96f43981c1c4
morestatus: move fb extension to core by plugging to `hg status --verbose`
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33523
diff
changeset
|
193 |
coreconfigitem('commands', 'status.skipstates', |
96f43981c1c4
morestatus: move fb extension to core by plugging to `hg status --verbose`
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33523
diff
changeset
|
194 |
default=[], |
96f43981c1c4
morestatus: move fb extension to core by plugging to `hg status --verbose`
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33523
diff
changeset
|
195 |
) |
96f43981c1c4
morestatus: move fb extension to core by plugging to `hg status --verbose`
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33523
diff
changeset
|
196 |
coreconfigitem('commands', 'status.verbose', |
96f43981c1c4
morestatus: move fb extension to core by plugging to `hg status --verbose`
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33523
diff
changeset
|
197 |
default=False, |
96f43981c1c4
morestatus: move fb extension to core by plugging to `hg status --verbose`
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33523
diff
changeset
|
198 |
) |
34705
23ed47a895d5
config: graduate experimental.updatecheck to commands.update.check
Augie Fackler <augie@google.com>
parents:
34671
diff
changeset
|
199 |
coreconfigitem('commands', 'update.check', |
23ed47a895d5
config: graduate experimental.updatecheck to commands.update.check
Augie Fackler <augie@google.com>
parents:
34671
diff
changeset
|
200 |
default=None, |
34805
c4a0480d1951
config: simplify aliasing commands.update.check
Boris Feld <boris.feld@octobus.net>
parents:
34796
diff
changeset
|
201 |
# Deprecated, remove after 4.4 release |
c4a0480d1951
config: simplify aliasing commands.update.check
Boris Feld <boris.feld@octobus.net>
parents:
34796
diff
changeset
|
202 |
alias=[('experimental', 'updatecheck')] |
34705
23ed47a895d5
config: graduate experimental.updatecheck to commands.update.check
Augie Fackler <augie@google.com>
parents:
34671
diff
changeset
|
203 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
204 |
coreconfigitem('commands', 'update.requiredest', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
205 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
206 |
) |
34665
dd1357edff37
configitems: register the 'committemplate' section
Boris Feld <boris.feld@octobus.net>
parents:
34664
diff
changeset
|
207 |
coreconfigitem('committemplate', '.*', |
dd1357edff37
configitems: register the 'committemplate' section
Boris Feld <boris.feld@octobus.net>
parents:
34664
diff
changeset
|
208 |
default=None, |
dd1357edff37
configitems: register the 'committemplate' section
Boris Feld <boris.feld@octobus.net>
parents:
34664
diff
changeset
|
209 |
generic=True, |
dd1357edff37
configitems: register the 'committemplate' section
Boris Feld <boris.feld@octobus.net>
parents:
34664
diff
changeset
|
210 |
) |
35036
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
211 |
coreconfigitem('convert', 'cvsps.cache', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
212 |
default=True, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
213 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
214 |
coreconfigitem('convert', 'cvsps.fuzz', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
215 |
default=60, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
216 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
217 |
coreconfigitem('convert', 'cvsps.logencoding', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
218 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
219 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
220 |
coreconfigitem('convert', 'cvsps.mergefrom', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
221 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
222 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
223 |
coreconfigitem('convert', 'cvsps.mergeto', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
224 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
225 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
226 |
coreconfigitem('convert', 'git.committeractions', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
227 |
default=lambda: ['messagedifferent'], |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
228 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
229 |
coreconfigitem('convert', 'git.extrakeys', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
230 |
default=list, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
231 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
232 |
coreconfigitem('convert', 'git.findcopiesharder', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
233 |
default=False, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
234 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
235 |
coreconfigitem('convert', 'git.remoteprefix', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
236 |
default='remote', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
237 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
238 |
coreconfigitem('convert', 'git.renamelimit', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
239 |
default=400, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
240 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
241 |
coreconfigitem('convert', 'git.saverev', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
242 |
default=True, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
243 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
244 |
coreconfigitem('convert', 'git.similarity', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
245 |
default=50, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
246 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
247 |
coreconfigitem('convert', 'git.skipsubmodules', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
248 |
default=False, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
249 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
250 |
coreconfigitem('convert', 'hg.clonebranches', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
251 |
default=False, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
252 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
253 |
coreconfigitem('convert', 'hg.ignoreerrors', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
254 |
default=False, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
255 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
256 |
coreconfigitem('convert', 'hg.revs', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
257 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
258 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
259 |
coreconfigitem('convert', 'hg.saverev', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
260 |
default=False, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
261 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
262 |
coreconfigitem('convert', 'hg.sourcename', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
263 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
264 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
265 |
coreconfigitem('convert', 'hg.startrev', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
266 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
267 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
268 |
coreconfigitem('convert', 'hg.tagsbranch', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
269 |
default='default', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
270 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
271 |
coreconfigitem('convert', 'hg.usebranchnames', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
272 |
default=True, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
273 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
274 |
coreconfigitem('convert', 'ignoreancestorcheck', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
275 |
default=False, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
276 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
277 |
coreconfigitem('convert', 'localtimezone', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
278 |
default=False, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
279 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
280 |
coreconfigitem('convert', 'p4.encoding', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
281 |
default=dynamicdefault, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
282 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
283 |
coreconfigitem('convert', 'p4.startrev', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
284 |
default=0, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
285 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
286 |
coreconfigitem('convert', 'skiptags', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
287 |
default=False, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
288 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
289 |
coreconfigitem('convert', 'svn.debugsvnlog', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
290 |
default=True, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
291 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
292 |
coreconfigitem('convert', 'svn.trunk', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
293 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
294 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
295 |
coreconfigitem('convert', 'svn.tags', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
296 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
297 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
298 |
coreconfigitem('convert', 'svn.branches', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
299 |
default=None, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
300 |
) |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
301 |
coreconfigitem('convert', 'svn.startrev', |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
302 |
default=0, |
281214150561
convert: avoid wrong lfconvert defaults by moving configitems to core
Matt Harbison <matt_harbison@yahoo.com>
parents:
34990
diff
changeset
|
303 |
) |
34480
cbda631c1dde
configitems: register the 'debug.dirstate.delaywrite' config
Boris Feld <boris.feld@octobus.net>
parents:
34479
diff
changeset
|
304 |
coreconfigitem('debug', 'dirstate.delaywrite', |
cbda631c1dde
configitems: register the 'debug.dirstate.delaywrite' config
Boris Feld <boris.feld@octobus.net>
parents:
34479
diff
changeset
|
305 |
default=0, |
cbda631c1dde
configitems: register the 'debug.dirstate.delaywrite' config
Boris Feld <boris.feld@octobus.net>
parents:
34479
diff
changeset
|
306 |
) |
34666
e7966337aed0
configitems: register the 'defaults' section
Boris Feld <boris.feld@octobus.net>
parents:
34665
diff
changeset
|
307 |
coreconfigitem('defaults', '.*', |
e7966337aed0
configitems: register the 'defaults' section
Boris Feld <boris.feld@octobus.net>
parents:
34665
diff
changeset
|
308 |
default=None, |
e7966337aed0
configitems: register the 'defaults' section
Boris Feld <boris.feld@octobus.net>
parents:
34665
diff
changeset
|
309 |
generic=True, |
e7966337aed0
configitems: register the 'defaults' section
Boris Feld <boris.feld@octobus.net>
parents:
34665
diff
changeset
|
310 |
) |
33158
cb7140e230c8
config: register the 'devel.all-warnings' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33150
diff
changeset
|
311 |
coreconfigitem('devel', 'all-warnings', |
cb7140e230c8
config: register the 'devel.all-warnings' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33150
diff
changeset
|
312 |
default=False, |
cb7140e230c8
config: register the 'devel.all-warnings' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33150
diff
changeset
|
313 |
) |
33159
0224820688ac
config: register the 'devel.bundle2.debug' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33158
diff
changeset
|
314 |
coreconfigitem('devel', 'bundle2.debug', |
0224820688ac
config: register the 'devel.bundle2.debug' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33158
diff
changeset
|
315 |
default=False, |
0224820688ac
config: register the 'devel.bundle2.debug' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33158
diff
changeset
|
316 |
) |
34525
100f0ddb029b
configitems: register the 'devel.cache-vfs' config
Boris Feld <boris.feld@octobus.net>
parents:
34524
diff
changeset
|
317 |
coreconfigitem('devel', 'cache-vfs', |
100f0ddb029b
configitems: register the 'devel.cache-vfs' config
Boris Feld <boris.feld@octobus.net>
parents:
34524
diff
changeset
|
318 |
default=None, |
100f0ddb029b
configitems: register the 'devel.cache-vfs' config
Boris Feld <boris.feld@octobus.net>
parents:
34524
diff
changeset
|
319 |
) |
33160
12aaade1f617
config: register the devel.check-locks config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33159
diff
changeset
|
320 |
coreconfigitem('devel', 'check-locks', |
12aaade1f617
config: register the devel.check-locks config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33159
diff
changeset
|
321 |
default=False, |
12aaade1f617
config: register the devel.check-locks config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33159
diff
changeset
|
322 |
) |
33161
b1cf9bb8a5a2
config: register the 'devel.check-relroot' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33160
diff
changeset
|
323 |
coreconfigitem('devel', 'check-relroot', |
b1cf9bb8a5a2
config: register the 'devel.check-relroot' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33160
diff
changeset
|
324 |
default=False, |
b1cf9bb8a5a2
config: register the 'devel.check-relroot' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33160
diff
changeset
|
325 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
326 |
coreconfigitem('devel', 'default-date', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
327 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
328 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
329 |
coreconfigitem('devel', 'deprec-warn', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
330 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
331 |
) |
33162
1ad6d6cee9eb
config: register the 'devel.disableloaddefaultcerts' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33161
diff
changeset
|
332 |
coreconfigitem('devel', 'disableloaddefaultcerts', |
1ad6d6cee9eb
config: register the 'devel.disableloaddefaultcerts' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33161
diff
changeset
|
333 |
default=False, |
1ad6d6cee9eb
config: register the 'devel.disableloaddefaultcerts' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33161
diff
changeset
|
334 |
) |
34734
3572b2031cec
devel-warn: add 'warn-' to 'devel.empty-changegroup' config
Boris Feld <boris.feld@octobus.net>
parents:
34705
diff
changeset
|
335 |
coreconfigitem('devel', 'warn-empty-changegroup', |
34526
3999b74b6765
configitems: register the 'devel.empty-changegroup' config
Boris Feld <boris.feld@octobus.net>
parents:
34525
diff
changeset
|
336 |
default=False, |
3999b74b6765
configitems: register the 'devel.empty-changegroup' config
Boris Feld <boris.feld@octobus.net>
parents:
34525
diff
changeset
|
337 |
) |
33184
649f3b0495c8
config: register the 'devel.legacy.exchange' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33183
diff
changeset
|
338 |
coreconfigitem('devel', 'legacy.exchange', |
649f3b0495c8
config: register the 'devel.legacy.exchange' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33183
diff
changeset
|
339 |
default=list, |
649f3b0495c8
config: register the 'devel.legacy.exchange' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33183
diff
changeset
|
340 |
) |
33163
1969adf2139a
config: register the 'devel.servercafile' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33162
diff
changeset
|
341 |
coreconfigitem('devel', 'servercafile', |
1969adf2139a
config: register the 'devel.servercafile' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33162
diff
changeset
|
342 |
default='', |
1969adf2139a
config: register the 'devel.servercafile' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33162
diff
changeset
|
343 |
) |
33164
f15850eff735
config: register the 'devel.serverexactprotocol' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33163
diff
changeset
|
344 |
coreconfigitem('devel', 'serverexactprotocol', |
f15850eff735
config: register the 'devel.serverexactprotocol' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33163
diff
changeset
|
345 |
default='', |
f15850eff735
config: register the 'devel.serverexactprotocol' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33163
diff
changeset
|
346 |
) |
33165
1a6f28439135
config: register the 'devel.serverrequirecert' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33164
diff
changeset
|
347 |
coreconfigitem('devel', 'serverrequirecert', |
33177
be723e2afd3d
configitem: fix default value for 'serverrequirecert'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33166
diff
changeset
|
348 |
default=False, |
33165
1a6f28439135
config: register the 'devel.serverrequirecert' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33164
diff
changeset
|
349 |
) |
33166
5c9ad50fd62f
config: register the 'devel.strip-obsmarkers' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33165
diff
changeset
|
350 |
coreconfigitem('devel', 'strip-obsmarkers', |
5c9ad50fd62f
config: register the 'devel.strip-obsmarkers' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33165
diff
changeset
|
351 |
default=True, |
5c9ad50fd62f
config: register the 'devel.strip-obsmarkers' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33165
diff
changeset
|
352 |
) |
34523
486dbd6afa57
configitems: register the 'devel.warn-config' config
Boris Feld <boris.feld@octobus.net>
parents:
34522
diff
changeset
|
353 |
coreconfigitem('devel', 'warn-config', |
486dbd6afa57
configitems: register the 'devel.warn-config' config
Boris Feld <boris.feld@octobus.net>
parents:
34522
diff
changeset
|
354 |
default=None, |
486dbd6afa57
configitems: register the 'devel.warn-config' config
Boris Feld <boris.feld@octobus.net>
parents:
34522
diff
changeset
|
355 |
) |
34524
99c5922b1641
configitems: register the 'devel.warn-config-default' config
Boris Feld <boris.feld@octobus.net>
parents:
34523
diff
changeset
|
356 |
coreconfigitem('devel', 'warn-config-default', |
99c5922b1641
configitems: register the 'devel.warn-config-default' config
Boris Feld <boris.feld@octobus.net>
parents:
34523
diff
changeset
|
357 |
default=None, |
99c5922b1641
configitems: register the 'devel.warn-config-default' config
Boris Feld <boris.feld@octobus.net>
parents:
34523
diff
changeset
|
358 |
) |
34575
dc91580a0a88
obsolete: add a devel.user.obsmarker
Boris Feld <boris.feld@octobus.net>
parents:
34563
diff
changeset
|
359 |
coreconfigitem('devel', 'user.obsmarker', |
dc91580a0a88
obsolete: add a devel.user.obsmarker
Boris Feld <boris.feld@octobus.net>
parents:
34563
diff
changeset
|
360 |
default=None, |
dc91580a0a88
obsolete: add a devel.user.obsmarker
Boris Feld <boris.feld@octobus.net>
parents:
34563
diff
changeset
|
361 |
) |
34858
85a2db47ad50
configitems: adds a developer warning when accessing undeclared configuration
Boris Feld <boris.feld@octobus.net>
parents:
34846
diff
changeset
|
362 |
coreconfigitem('devel', 'warn-config-unknown', |
85a2db47ad50
configitems: adds a developer warning when accessing undeclared configuration
Boris Feld <boris.feld@octobus.net>
parents:
34846
diff
changeset
|
363 |
default=None, |
85a2db47ad50
configitems: adds a developer warning when accessing undeclared configuration
Boris Feld <boris.feld@octobus.net>
parents:
34846
diff
changeset
|
364 |
) |
35698
0c4b23ccf1a5
httppeer: add support for tracing all http request made by the peer
Boris Feld <boris.feld@octobus.net>
parents:
35496
diff
changeset
|
365 |
coreconfigitem('devel', 'debug.peer-request', |
0c4b23ccf1a5
httppeer: add support for tracing all http request made by the peer
Boris Feld <boris.feld@octobus.net>
parents:
35496
diff
changeset
|
366 |
default=False, |
0c4b23ccf1a5
httppeer: add support for tracing all http request made by the peer
Boris Feld <boris.feld@octobus.net>
parents:
35496
diff
changeset
|
367 |
) |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
368 |
coreconfigitem('diff', 'nodates', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
369 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
370 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
371 |
coreconfigitem('diff', 'showfunc', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
372 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
373 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
374 |
coreconfigitem('diff', 'unified', |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
375 |
default=None, |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
376 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
377 |
coreconfigitem('diff', 'git', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
378 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
379 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
380 |
coreconfigitem('diff', 'ignorews', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
381 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
382 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
383 |
coreconfigitem('diff', 'ignorewsamount', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
384 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
385 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
386 |
coreconfigitem('diff', 'ignoreblanklines', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
387 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
388 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
389 |
coreconfigitem('diff', 'ignorewseol', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
390 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
391 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
392 |
coreconfigitem('diff', 'nobinary', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
393 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
394 |
) |
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
395 |
coreconfigitem('diff', 'noprefix', |
34735
330d0b582ab3
configitems: fixup default value of diff config option
Boris Feld <boris.feld@octobus.net>
parents:
34734
diff
changeset
|
396 |
default=False, |
34521
aacb17cc0ee4
configitems: register the 'diff.*' config
Boris Feld <boris.feld@octobus.net>
parents:
34520
diff
changeset
|
397 |
) |
34597
76d48132eb01
configitems: register the 'email.bcc' config
Boris Feld <boris.feld@octobus.net>
parents:
34596
diff
changeset
|
398 |
coreconfigitem('email', 'bcc', |
76d48132eb01
configitems: register the 'email.bcc' config
Boris Feld <boris.feld@octobus.net>
parents:
34596
diff
changeset
|
399 |
default=None, |
76d48132eb01
configitems: register the 'email.bcc' config
Boris Feld <boris.feld@octobus.net>
parents:
34596
diff
changeset
|
400 |
) |
34598
0a68c615706c
configitems: register the 'email.cc' config
Boris Feld <boris.feld@octobus.net>
parents:
34597
diff
changeset
|
401 |
coreconfigitem('email', 'cc', |
0a68c615706c
configitems: register the 'email.cc' config
Boris Feld <boris.feld@octobus.net>
parents:
34597
diff
changeset
|
402 |
default=None, |
0a68c615706c
configitems: register the 'email.cc' config
Boris Feld <boris.feld@octobus.net>
parents:
34597
diff
changeset
|
403 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
404 |
coreconfigitem('email', 'charsets', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
405 |
default=list, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
406 |
) |
34478
ef303daefdf7
configitems: register the 'email.from' config
Boris Feld <boris.feld@octobus.net>
parents:
34477
diff
changeset
|
407 |
coreconfigitem('email', 'from', |
ef303daefdf7
configitems: register the 'email.from' config
Boris Feld <boris.feld@octobus.net>
parents:
34477
diff
changeset
|
408 |
default=None, |
ef303daefdf7
configitems: register the 'email.from' config
Boris Feld <boris.feld@octobus.net>
parents:
34477
diff
changeset
|
409 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
410 |
coreconfigitem('email', 'method', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
411 |
default='smtp', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
412 |
) |
34599
263a736aed9b
configitems: register the 'email.reply-to' config
Boris Feld <boris.feld@octobus.net>
parents:
34598
diff
changeset
|
413 |
coreconfigitem('email', 'reply-to', |
263a736aed9b
configitems: register the 'email.reply-to' config
Boris Feld <boris.feld@octobus.net>
parents:
34598
diff
changeset
|
414 |
default=None, |
263a736aed9b
configitems: register the 'email.reply-to' config
Boris Feld <boris.feld@octobus.net>
parents:
34598
diff
changeset
|
415 |
) |
34911
645b6684cf5b
configitems: register 'email.to' and 'patchbomb.to'
Yuya Nishihara <yuya@tcha.org>
parents:
34902
diff
changeset
|
416 |
coreconfigitem('email', 'to', |
645b6684cf5b
configitems: register 'email.to' and 'patchbomb.to'
Yuya Nishihara <yuya@tcha.org>
parents:
34902
diff
changeset
|
417 |
default=None, |
645b6684cf5b
configitems: register 'email.to' and 'patchbomb.to'
Yuya Nishihara <yuya@tcha.org>
parents:
34902
diff
changeset
|
418 |
) |
34615
32166736684e
configitems: register the 'experimental.archivemetatemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
34613
diff
changeset
|
419 |
coreconfigitem('experimental', 'archivemetatemplate', |
32166736684e
configitems: register the 'experimental.archivemetatemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
34613
diff
changeset
|
420 |
default=dynamicdefault, |
32166736684e
configitems: register the 'experimental.archivemetatemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
34613
diff
changeset
|
421 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
422 |
coreconfigitem('experimental', 'bundle-phases', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
423 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
424 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
425 |
coreconfigitem('experimental', 'bundle2-advertise', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
426 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
427 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
428 |
coreconfigitem('experimental', 'bundle2-output-capture', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
429 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
430 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
431 |
coreconfigitem('experimental', 'bundle2.pushback', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
432 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
433 |
) |
35763
7eedbd5d4880
streamclone: add support for bundle2 based stream clone
Boris Feld <boris.feld@octobus.net>
parents:
35726
diff
changeset
|
434 |
coreconfigitem('experimental', 'bundle2.stream', |
7eedbd5d4880
streamclone: add support for bundle2 based stream clone
Boris Feld <boris.feld@octobus.net>
parents:
35726
diff
changeset
|
435 |
default=False, |
7eedbd5d4880
streamclone: add support for bundle2 based stream clone
Boris Feld <boris.feld@octobus.net>
parents:
35726
diff
changeset
|
436 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
437 |
coreconfigitem('experimental', 'bundle2lazylocking', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
438 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
439 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
440 |
coreconfigitem('experimental', 'bundlecomplevel', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
441 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
442 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
443 |
coreconfigitem('experimental', 'changegroup3', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
444 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
445 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
446 |
coreconfigitem('experimental', 'clientcompressionengines', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
447 |
default=list, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
448 |
) |
34077
26531db4647a
copytrace: replace experimental.disablecopytrace config with copytrace (BC)
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34005
diff
changeset
|
449 |
coreconfigitem('experimental', 'copytrace', |
26531db4647a
copytrace: replace experimental.disablecopytrace config with copytrace (BC)
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34005
diff
changeset
|
450 |
default='on', |
26531db4647a
copytrace: replace experimental.disablecopytrace config with copytrace (BC)
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34005
diff
changeset
|
451 |
) |
34846
f05a6e015ecc
copies: add a config to limit the number of candidates to check in heuristics
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34831
diff
changeset
|
452 |
coreconfigitem('experimental', 'copytrace.movecandidateslimit', |
f05a6e015ecc
copies: add a config to limit the number of candidates to check in heuristics
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34831
diff
changeset
|
453 |
default=100, |
f05a6e015ecc
copies: add a config to limit the number of candidates to check in heuristics
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34831
diff
changeset
|
454 |
) |
34311
1826d695ad58
copytrace: add a a new config to limit the number of drafts in heuristics
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34286
diff
changeset
|
455 |
coreconfigitem('experimental', 'copytrace.sourcecommitlimit', |
1826d695ad58
copytrace: add a a new config to limit the number of drafts in heuristics
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34286
diff
changeset
|
456 |
default=100, |
1826d695ad58
copytrace: add a a new config to limit the number of drafts in heuristics
Pulkit Goyal <7895pulkit@gmail.com>
parents:
34286
diff
changeset
|
457 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
458 |
coreconfigitem('experimental', 'crecordtest', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
459 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
460 |
) |
35496
8bb90cc4668e
scmutil: add utility fn to return repo object with user passed revs unhidden
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35431
diff
changeset
|
461 |
coreconfigitem('experimental', 'directaccess', |
8bb90cc4668e
scmutil: add utility fn to return repo object with user passed revs unhidden
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35431
diff
changeset
|
462 |
default=False, |
8bb90cc4668e
scmutil: add utility fn to return repo object with user passed revs unhidden
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35431
diff
changeset
|
463 |
) |
8bb90cc4668e
scmutil: add utility fn to return repo object with user passed revs unhidden
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35431
diff
changeset
|
464 |
coreconfigitem('experimental', 'directaccess.revnums', |
8bb90cc4668e
scmutil: add utility fn to return repo object with user passed revs unhidden
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35431
diff
changeset
|
465 |
default=False, |
8bb90cc4668e
scmutil: add utility fn to return repo object with user passed revs unhidden
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35431
diff
changeset
|
466 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
467 |
coreconfigitem('experimental', 'editortmpinhg', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
468 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
469 |
) |
34863
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
470 |
coreconfigitem('experimental', 'evolution', |
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
471 |
default=list, |
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
472 |
) |
34872
29f52e7966dd
config: gather allowdivergence under the evolution namespace
Boris Feld <boris.feld@octobus.net>
parents:
34871
diff
changeset
|
473 |
coreconfigitem('experimental', 'evolution.allowdivergence', |
29f52e7966dd
config: gather allowdivergence under the evolution namespace
Boris Feld <boris.feld@octobus.net>
parents:
34871
diff
changeset
|
474 |
default=False, |
29f52e7966dd
config: gather allowdivergence under the evolution namespace
Boris Feld <boris.feld@octobus.net>
parents:
34871
diff
changeset
|
475 |
alias=[('experimental', 'allowdivergence')] |
29f52e7966dd
config: gather allowdivergence under the evolution namespace
Boris Feld <boris.feld@octobus.net>
parents:
34871
diff
changeset
|
476 |
) |
34864
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
477 |
coreconfigitem('experimental', 'evolution.allowunstable', |
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
478 |
default=None, |
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
479 |
) |
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
480 |
coreconfigitem('experimental', 'evolution.createmarkers', |
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
481 |
default=None, |
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
482 |
) |
34902
cc977ec0b8b9
config: also gather effect-flags on experimental.evolution
Boris Feld <boris.feld@octobus.net>
parents:
34891
diff
changeset
|
483 |
coreconfigitem('experimental', 'evolution.effect-flags', |
34961
a7e49a5b3e6f
obsolete: activate effect-flag by default
Boris Feld <boris.feld@octobus.net>
parents:
34942
diff
changeset
|
484 |
default=True, |
34902
cc977ec0b8b9
config: also gather effect-flags on experimental.evolution
Boris Feld <boris.feld@octobus.net>
parents:
34891
diff
changeset
|
485 |
alias=[('experimental', 'effect-flags')] |
cc977ec0b8b9
config: also gather effect-flags on experimental.evolution
Boris Feld <boris.feld@octobus.net>
parents:
34891
diff
changeset
|
486 |
) |
34864
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
487 |
coreconfigitem('experimental', 'evolution.exchange', |
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
488 |
default=None, |
fec79a3f250f
config: update evolution-related config
Boris Feld <boris.feld@octobus.net>
parents:
34863
diff
changeset
|
489 |
) |
34863
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
490 |
coreconfigitem('experimental', 'evolution.bundle-obsmarker', |
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
491 |
default=False, |
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
492 |
) |
35710
5cd60b0587a8
evolution: make reporting of new unstable changesets optional
Martin von Zweigbergk <martinvonz@google.com>
parents:
35698
diff
changeset
|
493 |
coreconfigitem('experimental', 'evolution.report-instabilities', |
5cd60b0587a8
evolution: make reporting of new unstable changesets optional
Martin von Zweigbergk <martinvonz@google.com>
parents:
35698
diff
changeset
|
494 |
default=True, |
5cd60b0587a8
evolution: make reporting of new unstable changesets optional
Martin von Zweigbergk <martinvonz@google.com>
parents:
35698
diff
changeset
|
495 |
) |
34863
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
496 |
coreconfigitem('experimental', 'evolution.track-operation', |
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
497 |
default=True, |
b1e3f609bf45
config: invert evolution-related configuration aliases
Boris Feld <boris.feld@octobus.net>
parents:
34858
diff
changeset
|
498 |
) |
35277
6ba79cf34f5e
patch: add within-line color diff capacity
Matthieu Laneuville <matthieu.laneuville@octobus.net>
parents:
35261
diff
changeset
|
499 |
coreconfigitem('experimental', 'worddiff', |
6ba79cf34f5e
patch: add within-line color diff capacity
Matthieu Laneuville <matthieu.laneuville@octobus.net>
parents:
35261
diff
changeset
|
500 |
default=False, |
6ba79cf34f5e
patch: add within-line color diff capacity
Matthieu Laneuville <matthieu.laneuville@octobus.net>
parents:
35261
diff
changeset
|
501 |
) |
34519
0314e02efa25
configitems: register the 'experimental.maxdeltachainspan' config
Boris Feld <boris.feld@octobus.net>
parents:
34491
diff
changeset
|
502 |
coreconfigitem('experimental', 'maxdeltachainspan', |
0314e02efa25
configitems: register the 'experimental.maxdeltachainspan' config
Boris Feld <boris.feld@octobus.net>
parents:
34491
diff
changeset
|
503 |
default=-1, |
0314e02efa25
configitems: register the 'experimental.maxdeltachainspan' config
Boris Feld <boris.feld@octobus.net>
parents:
34491
diff
changeset
|
504 |
) |
34520
ca5b833ce756
configitems: register the 'experimental.mmapindexthreshold' config
Boris Feld <boris.feld@octobus.net>
parents:
34519
diff
changeset
|
505 |
coreconfigitem('experimental', 'mmapindexthreshold', |
ca5b833ce756
configitems: register the 'experimental.mmapindexthreshold' config
Boris Feld <boris.feld@octobus.net>
parents:
34519
diff
changeset
|
506 |
default=None, |
ca5b833ce756
configitems: register the 'experimental.mmapindexthreshold' config
Boris Feld <boris.feld@octobus.net>
parents:
34519
diff
changeset
|
507 |
) |
34491
eb1517776f8a
configitems: register the 'experimental.nonnormalparanoidcheck' config
Boris Feld <boris.feld@octobus.net>
parents:
34490
diff
changeset
|
508 |
coreconfigitem('experimental', 'nonnormalparanoidcheck', |
eb1517776f8a
configitems: register the 'experimental.nonnormalparanoidcheck' config
Boris Feld <boris.feld@octobus.net>
parents:
34490
diff
changeset
|
509 |
default=False, |
eb1517776f8a
configitems: register the 'experimental.nonnormalparanoidcheck' config
Boris Feld <boris.feld@octobus.net>
parents:
34490
diff
changeset
|
510 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
511 |
coreconfigitem('experimental', 'exportableenviron', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
512 |
default=list, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
513 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
514 |
coreconfigitem('experimental', 'extendedheader.index', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
515 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
516 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
517 |
coreconfigitem('experimental', 'extendedheader.similarity', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
518 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
519 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
520 |
coreconfigitem('experimental', 'format.compression', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
521 |
default='zlib', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
522 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
523 |
coreconfigitem('experimental', 'graphshorten', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
524 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
525 |
) |
34527
d5362671993b
configitems: register the 'experimental.graphstyle.parent' config
Boris Feld <boris.feld@octobus.net>
parents:
34526
diff
changeset
|
526 |
coreconfigitem('experimental', 'graphstyle.parent', |
d5362671993b
configitems: register the 'experimental.graphstyle.parent' config
Boris Feld <boris.feld@octobus.net>
parents:
34526
diff
changeset
|
527 |
default=dynamicdefault, |
d5362671993b
configitems: register the 'experimental.graphstyle.parent' config
Boris Feld <boris.feld@octobus.net>
parents:
34526
diff
changeset
|
528 |
) |
34528
23783463d720
configitems: register the 'experimental.graphstyle.missing' config
Boris Feld <boris.feld@octobus.net>
parents:
34527
diff
changeset
|
529 |
coreconfigitem('experimental', 'graphstyle.missing', |
23783463d720
configitems: register the 'experimental.graphstyle.missing' config
Boris Feld <boris.feld@octobus.net>
parents:
34527
diff
changeset
|
530 |
default=dynamicdefault, |
23783463d720
configitems: register the 'experimental.graphstyle.missing' config
Boris Feld <boris.feld@octobus.net>
parents:
34527
diff
changeset
|
531 |
) |
34529
4a6a337f9c68
configitems: register the 'experimental.graphstyle.grandparent' config
Boris Feld <boris.feld@octobus.net>
parents:
34528
diff
changeset
|
532 |
coreconfigitem('experimental', 'graphstyle.grandparent', |
4a6a337f9c68
configitems: register the 'experimental.graphstyle.grandparent' config
Boris Feld <boris.feld@octobus.net>
parents:
34528
diff
changeset
|
533 |
default=dynamicdefault, |
4a6a337f9c68
configitems: register the 'experimental.graphstyle.grandparent' config
Boris Feld <boris.feld@octobus.net>
parents:
34528
diff
changeset
|
534 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
535 |
coreconfigitem('experimental', 'hook-track-tags', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
536 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
537 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
538 |
coreconfigitem('experimental', 'httppostargs', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
539 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
540 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
541 |
coreconfigitem('experimental', 'mergedriver', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
542 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
543 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
544 |
coreconfigitem('experimental', 'obsmarkers-exchange-debug', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
545 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
546 |
) |
35236
5a62910948d2
remotenames: move function to pull remotenames from the remoterepo to core
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35209
diff
changeset
|
547 |
coreconfigitem('experimental', 'remotenames', |
5a62910948d2
remotenames: move function to pull remotenames from the remoterepo to core
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35209
diff
changeset
|
548 |
default=False, |
5a62910948d2
remotenames: move function to pull remotenames from the remoterepo to core
Pulkit Goyal <7895pulkit@gmail.com>
parents:
35209
diff
changeset
|
549 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
550 |
coreconfigitem('experimental', 'revlogv2', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
551 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
552 |
) |
35185
66ecde8a704d
server: introduce a 'experimental.single-head-per-branch' option
Boris Feld <boris.feld@octobus.net>
parents:
35163
diff
changeset
|
553 |
coreconfigitem('experimental', 'single-head-per-branch', |
66ecde8a704d
server: introduce a 'experimental.single-head-per-branch' option
Boris Feld <boris.feld@octobus.net>
parents:
35163
diff
changeset
|
554 |
default=False, |
66ecde8a704d
server: introduce a 'experimental.single-head-per-branch' option
Boris Feld <boris.feld@octobus.net>
parents:
35163
diff
changeset
|
555 |
) |
36215
464bedc0fdb4
wireprotoserver: handle SSH protocol version 2 upgrade requests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
35976
diff
changeset
|
556 |
coreconfigitem('experimental', 'sshserver.support-v2', |
464bedc0fdb4
wireprotoserver: handle SSH protocol version 2 upgrade requests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
35976
diff
changeset
|
557 |
default=False, |
464bedc0fdb4
wireprotoserver: handle SSH protocol version 2 upgrade requests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
35976
diff
changeset
|
558 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
559 |
coreconfigitem('experimental', 'spacemovesdown', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
560 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
561 |
) |
34824
e2ad93bcc084
revlog: introduce an experimental flag to slice chunks reads when too sparse
Paul Morelle <paul.morelle@octobus.net>
parents:
34805
diff
changeset
|
562 |
coreconfigitem('experimental', 'sparse-read', |
e2ad93bcc084
revlog: introduce an experimental flag to slice chunks reads when too sparse
Paul Morelle <paul.morelle@octobus.net>
parents:
34805
diff
changeset
|
563 |
default=False, |
e2ad93bcc084
revlog: introduce an experimental flag to slice chunks reads when too sparse
Paul Morelle <paul.morelle@octobus.net>
parents:
34805
diff
changeset
|
564 |
) |
e2ad93bcc084
revlog: introduce an experimental flag to slice chunks reads when too sparse
Paul Morelle <paul.morelle@octobus.net>
parents:
34805
diff
changeset
|
565 |
coreconfigitem('experimental', 'sparse-read.density-threshold', |
e2ad93bcc084
revlog: introduce an experimental flag to slice chunks reads when too sparse
Paul Morelle <paul.morelle@octobus.net>
parents:
34805
diff
changeset
|
566 |
default=0.25, |
e2ad93bcc084
revlog: introduce an experimental flag to slice chunks reads when too sparse
Paul Morelle <paul.morelle@octobus.net>
parents:
34805
diff
changeset
|
567 |
) |
34881
8c9b08a0c48c
sparse-read: skip gaps too small to be worth splitting
Paul Morelle <paul.morelle@octobus.net>
parents:
34875
diff
changeset
|
568 |
coreconfigitem('experimental', 'sparse-read.min-gap-size', |
34825
4d5d5009bd75
revlog-sparse-read: add a lower-threshold for read block size
Paul Morelle <paul.morelle@octobus.net>
parents:
34824
diff
changeset
|
569 |
default='256K', |
4d5d5009bd75
revlog-sparse-read: add a lower-threshold for read block size
Paul Morelle <paul.morelle@octobus.net>
parents:
34824
diff
changeset
|
570 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
571 |
coreconfigitem('experimental', 'treemanifest', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
572 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
573 |
) |
35726
45b678bf3a78
atomicupdate: add an experimental option to use atomictemp when updating
Boris Feld <boris.feld@octobus.net>
parents:
35710
diff
changeset
|
574 |
coreconfigitem('experimental', 'update.atomic-file', |
45b678bf3a78
atomicupdate: add an experimental option to use atomictemp when updating
Boris Feld <boris.feld@octobus.net>
parents:
35710
diff
changeset
|
575 |
default=False, |
45b678bf3a78
atomicupdate: add an experimental option to use atomictemp when updating
Boris Feld <boris.feld@octobus.net>
parents:
35710
diff
changeset
|
576 |
) |
35976
48a3a9283f09
sshpeer: initial definition and implementation of new SSH protocol
Gregory Szorc <gregory.szorc@gmail.com>
parents:
35907
diff
changeset
|
577 |
coreconfigitem('experimental', 'sshpeer.advertise-v2', |
48a3a9283f09
sshpeer: initial definition and implementation of new SSH protocol
Gregory Szorc <gregory.szorc@gmail.com>
parents:
35907
diff
changeset
|
578 |
default=False, |
48a3a9283f09
sshpeer: initial definition and implementation of new SSH protocol
Gregory Szorc <gregory.szorc@gmail.com>
parents:
35907
diff
changeset
|
579 |
) |
34667
23f891164e59
configitems: register the 'extensions' section
Boris Feld <boris.feld@octobus.net>
parents:
34666
diff
changeset
|
580 |
coreconfigitem('extensions', '.*', |
23f891164e59
configitems: register the 'extensions' section
Boris Feld <boris.feld@octobus.net>
parents:
34666
diff
changeset
|
581 |
default=None, |
23f891164e59
configitems: register the 'extensions' section
Boris Feld <boris.feld@octobus.net>
parents:
34666
diff
changeset
|
582 |
generic=True, |
23f891164e59
configitems: register the 'extensions' section
Boris Feld <boris.feld@octobus.net>
parents:
34666
diff
changeset
|
583 |
) |
34769
43c78d2819d8
configitems: register the 'extdata' section
Boris Feld <boris.feld@octobus.net>
parents:
34768
diff
changeset
|
584 |
coreconfigitem('extdata', '.*', |
43c78d2819d8
configitems: register the 'extdata' section
Boris Feld <boris.feld@octobus.net>
parents:
34768
diff
changeset
|
585 |
default=None, |
43c78d2819d8
configitems: register the 'extdata' section
Boris Feld <boris.feld@octobus.net>
parents:
34768
diff
changeset
|
586 |
generic=True, |
43c78d2819d8
configitems: register the 'extdata' section
Boris Feld <boris.feld@octobus.net>
parents:
34768
diff
changeset
|
587 |
) |
33235
b838e857439d
configitems: register the 'format.aggressivemergedeltas' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33234
diff
changeset
|
588 |
coreconfigitem('format', 'aggressivemergedeltas', |
b838e857439d
configitems: register the 'format.aggressivemergedeltas' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33234
diff
changeset
|
589 |
default=False, |
b838e857439d
configitems: register the 'format.aggressivemergedeltas' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33234
diff
changeset
|
590 |
) |
33236
cf6c478bc339
configitems: register the 'format.chunkcachesize' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33235
diff
changeset
|
591 |
coreconfigitem('format', 'chunkcachesize', |
cf6c478bc339
configitems: register the 'format.chunkcachesize' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33235
diff
changeset
|
592 |
default=None, |
cf6c478bc339
configitems: register the 'format.chunkcachesize' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33235
diff
changeset
|
593 |
) |
33237
7043e67cc9b2
configitems: register the 'format.dotencode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33236
diff
changeset
|
594 |
coreconfigitem('format', 'dotencode', |
7043e67cc9b2
configitems: register the 'format.dotencode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33236
diff
changeset
|
595 |
default=True, |
7043e67cc9b2
configitems: register the 'format.dotencode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33236
diff
changeset
|
596 |
) |
33238
784f2bd96d43
configitems: register the 'format.generaldelta' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33237
diff
changeset
|
597 |
coreconfigitem('format', 'generaldelta', |
784f2bd96d43
configitems: register the 'format.generaldelta' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33237
diff
changeset
|
598 |
default=False, |
784f2bd96d43
configitems: register the 'format.generaldelta' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33237
diff
changeset
|
599 |
) |
33239
a4f6dee1b9f1
configitems: register the 'format.manifestcachesize' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33238
diff
changeset
|
600 |
coreconfigitem('format', 'manifestcachesize', |
a4f6dee1b9f1
configitems: register the 'format.manifestcachesize' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33238
diff
changeset
|
601 |
default=None, |
a4f6dee1b9f1
configitems: register the 'format.manifestcachesize' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33238
diff
changeset
|
602 |
) |
33240
91c1e7c974c2
configitems: register the 'format.maxchainlen' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33239
diff
changeset
|
603 |
coreconfigitem('format', 'maxchainlen', |
91c1e7c974c2
configitems: register the 'format.maxchainlen' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33239
diff
changeset
|
604 |
default=None, |
91c1e7c974c2
configitems: register the 'format.maxchainlen' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33239
diff
changeset
|
605 |
) |
33244
fd50788a2d4f
configitems: register the 'format.obsstore-version' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33240
diff
changeset
|
606 |
coreconfigitem('format', 'obsstore-version', |
fd50788a2d4f
configitems: register the 'format.obsstore-version' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33240
diff
changeset
|
607 |
default=None, |
fd50788a2d4f
configitems: register the 'format.obsstore-version' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33240
diff
changeset
|
608 |
) |
33245
28e8983d9ed7
configitems: register the 'format.usefncache' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33244
diff
changeset
|
609 |
coreconfigitem('format', 'usefncache', |
28e8983d9ed7
configitems: register the 'format.usefncache' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33244
diff
changeset
|
610 |
default=True, |
28e8983d9ed7
configitems: register the 'format.usefncache' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33244
diff
changeset
|
611 |
) |
33246
4d9458e06ef0
configitems: register the 'format.usegeneraldelta' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33245
diff
changeset
|
612 |
coreconfigitem('format', 'usegeneraldelta', |
4d9458e06ef0
configitems: register the 'format.usegeneraldelta' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33245
diff
changeset
|
613 |
default=True, |
4d9458e06ef0
configitems: register the 'format.usegeneraldelta' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33245
diff
changeset
|
614 |
) |
33247
4d5d493ea54a
configitems: register the 'format.usestore' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33246
diff
changeset
|
615 |
coreconfigitem('format', 'usestore', |
4d5d493ea54a
configitems: register the 'format.usestore' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33246
diff
changeset
|
616 |
default=True, |
4d5d493ea54a
configitems: register the 'format.usestore' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33246
diff
changeset
|
617 |
) |
34885
df2ff314e36f
fsmonitor: warn when fsmonitor could be used
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34881
diff
changeset
|
618 |
coreconfigitem('fsmonitor', 'warn_when_unused', |
df2ff314e36f
fsmonitor: warn when fsmonitor could be used
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34881
diff
changeset
|
619 |
default=True, |
df2ff314e36f
fsmonitor: warn when fsmonitor could be used
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34881
diff
changeset
|
620 |
) |
df2ff314e36f
fsmonitor: warn when fsmonitor could be used
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34881
diff
changeset
|
621 |
coreconfigitem('fsmonitor', 'warn_update_file_count', |
df2ff314e36f
fsmonitor: warn when fsmonitor could be used
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34881
diff
changeset
|
622 |
default=50000, |
df2ff314e36f
fsmonitor: warn when fsmonitor could be used
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34881
diff
changeset
|
623 |
) |
34668
31723cff35fa
configitems: register the 'hooks' config section
Boris Feld <boris.feld@octobus.net>
parents:
34667
diff
changeset
|
624 |
coreconfigitem('hooks', '.*', |
31723cff35fa
configitems: register the 'hooks' config section
Boris Feld <boris.feld@octobus.net>
parents:
34667
diff
changeset
|
625 |
default=dynamicdefault, |
31723cff35fa
configitems: register the 'hooks' config section
Boris Feld <boris.feld@octobus.net>
parents:
34667
diff
changeset
|
626 |
generic=True, |
31723cff35fa
configitems: register the 'hooks' config section
Boris Feld <boris.feld@octobus.net>
parents:
34667
diff
changeset
|
627 |
) |
34751
bbeaa5415266
configitems: register the 'hgweb-paths' section
Boris Feld <boris.feld@octobus.net>
parents:
34748
diff
changeset
|
628 |
coreconfigitem('hgweb-paths', '.*', |
bbeaa5415266
configitems: register the 'hgweb-paths' section
Boris Feld <boris.feld@octobus.net>
parents:
34748
diff
changeset
|
629 |
default=list, |
bbeaa5415266
configitems: register the 'hgweb-paths' section
Boris Feld <boris.feld@octobus.net>
parents:
34748
diff
changeset
|
630 |
generic=True, |
bbeaa5415266
configitems: register the 'hgweb-paths' section
Boris Feld <boris.feld@octobus.net>
parents:
34748
diff
changeset
|
631 |
) |
34748
8c1d0fe1f431
configitems: register the 'hostfingerprints' section
Boris Feld <boris.feld@octobus.net>
parents:
34747
diff
changeset
|
632 |
coreconfigitem('hostfingerprints', '.*', |
8c1d0fe1f431
configitems: register the 'hostfingerprints' section
Boris Feld <boris.feld@octobus.net>
parents:
34747
diff
changeset
|
633 |
default=list, |
8c1d0fe1f431
configitems: register the 'hostfingerprints' section
Boris Feld <boris.feld@octobus.net>
parents:
34747
diff
changeset
|
634 |
generic=True, |
8c1d0fe1f431
configitems: register the 'hostfingerprints' section
Boris Feld <boris.feld@octobus.net>
parents:
34747
diff
changeset
|
635 |
) |
33217
f96c2f2f559b
configitems: register the 'hostsecurity.ciphers' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33184
diff
changeset
|
636 |
coreconfigitem('hostsecurity', 'ciphers', |
f96c2f2f559b
configitems: register the 'hostsecurity.ciphers' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33184
diff
changeset
|
637 |
default=None, |
f96c2f2f559b
configitems: register the 'hostsecurity.ciphers' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33184
diff
changeset
|
638 |
) |
33218
24f3ff50736d
configitems: register the 'hostsecurity.disabletls10warning' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33217
diff
changeset
|
639 |
coreconfigitem('hostsecurity', 'disabletls10warning', |
24f3ff50736d
configitems: register the 'hostsecurity.disabletls10warning' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33217
diff
changeset
|
640 |
default=False, |
24f3ff50736d
configitems: register the 'hostsecurity.disabletls10warning' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33217
diff
changeset
|
641 |
) |
34747
5cf98daad7b1
configitems: register the 'hostsecurity.minimumprotocol' config
Boris Feld <boris.feld@octobus.net>
parents:
34746
diff
changeset
|
642 |
coreconfigitem('hostsecurity', 'minimumprotocol', |
5cf98daad7b1
configitems: register the 'hostsecurity.minimumprotocol' config
Boris Feld <boris.feld@octobus.net>
parents:
34746
diff
changeset
|
643 |
default=dynamicdefault, |
5cf98daad7b1
configitems: register the 'hostsecurity.minimumprotocol' config
Boris Feld <boris.feld@octobus.net>
parents:
34746
diff
changeset
|
644 |
) |
34773
607085aa4d67
configitems: register the 'hostsecurity.*:minimumprotocol' config
Boris Feld <boris.feld@octobus.net>
parents:
34769
diff
changeset
|
645 |
coreconfigitem('hostsecurity', '.*:minimumprotocol$', |
607085aa4d67
configitems: register the 'hostsecurity.*:minimumprotocol' config
Boris Feld <boris.feld@octobus.net>
parents:
34769
diff
changeset
|
646 |
default=dynamicdefault, |
607085aa4d67
configitems: register the 'hostsecurity.*:minimumprotocol' config
Boris Feld <boris.feld@octobus.net>
parents:
34769
diff
changeset
|
647 |
generic=True, |
607085aa4d67
configitems: register the 'hostsecurity.*:minimumprotocol' config
Boris Feld <boris.feld@octobus.net>
parents:
34769
diff
changeset
|
648 |
) |
34774
fd4caf1b23f6
configitems: register the 'hostsecurity.*:ciphers' config
Boris Feld <boris.feld@octobus.net>
parents:
34773
diff
changeset
|
649 |
coreconfigitem('hostsecurity', '.*:ciphers$', |
fd4caf1b23f6
configitems: register the 'hostsecurity.*:ciphers' config
Boris Feld <boris.feld@octobus.net>
parents:
34773
diff
changeset
|
650 |
default=dynamicdefault, |
fd4caf1b23f6
configitems: register the 'hostsecurity.*:ciphers' config
Boris Feld <boris.feld@octobus.net>
parents:
34773
diff
changeset
|
651 |
generic=True, |
fd4caf1b23f6
configitems: register the 'hostsecurity.*:ciphers' config
Boris Feld <boris.feld@octobus.net>
parents:
34773
diff
changeset
|
652 |
) |
34775
17919e9006b9
configitems: register the 'hostsecurity.*:fingerprints' config
Boris Feld <boris.feld@octobus.net>
parents:
34774
diff
changeset
|
653 |
coreconfigitem('hostsecurity', '.*:fingerprints$', |
17919e9006b9
configitems: register the 'hostsecurity.*:fingerprints' config
Boris Feld <boris.feld@octobus.net>
parents:
34774
diff
changeset
|
654 |
default=list, |
17919e9006b9
configitems: register the 'hostsecurity.*:fingerprints' config
Boris Feld <boris.feld@octobus.net>
parents:
34774
diff
changeset
|
655 |
generic=True, |
17919e9006b9
configitems: register the 'hostsecurity.*:fingerprints' config
Boris Feld <boris.feld@octobus.net>
parents:
34774
diff
changeset
|
656 |
) |
34776
48d2b396cf6c
configitems: register the 'hostsecurity.*:verifycertsfile' config
Boris Feld <boris.feld@octobus.net>
parents:
34775
diff
changeset
|
657 |
coreconfigitem('hostsecurity', '.*:verifycertsfile$', |
48d2b396cf6c
configitems: register the 'hostsecurity.*:verifycertsfile' config
Boris Feld <boris.feld@octobus.net>
parents:
34775
diff
changeset
|
658 |
default=None, |
48d2b396cf6c
configitems: register the 'hostsecurity.*:verifycertsfile' config
Boris Feld <boris.feld@octobus.net>
parents:
34775
diff
changeset
|
659 |
generic=True, |
48d2b396cf6c
configitems: register the 'hostsecurity.*:verifycertsfile' config
Boris Feld <boris.feld@octobus.net>
parents:
34775
diff
changeset
|
660 |
) |
48d2b396cf6c
configitems: register the 'hostsecurity.*:verifycertsfile' config
Boris Feld <boris.feld@octobus.net>
parents:
34775
diff
changeset
|
661 |
|
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
662 |
coreconfigitem('http_proxy', 'always', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
663 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
664 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
665 |
coreconfigitem('http_proxy', 'host', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
666 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
667 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
668 |
coreconfigitem('http_proxy', 'no', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
669 |
default=list, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
670 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
671 |
coreconfigitem('http_proxy', 'passwd', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
672 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
673 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
674 |
coreconfigitem('http_proxy', 'user', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
675 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
676 |
) |
34592
e7dbccabc982
configitems: register the 'logtoprocess.commandexception' config
Boris Feld <boris.feld@octobus.net>
parents:
34591
diff
changeset
|
677 |
coreconfigitem('logtoprocess', 'commandexception', |
e7dbccabc982
configitems: register the 'logtoprocess.commandexception' config
Boris Feld <boris.feld@octobus.net>
parents:
34591
diff
changeset
|
678 |
default=None, |
e7dbccabc982
configitems: register the 'logtoprocess.commandexception' config
Boris Feld <boris.feld@octobus.net>
parents:
34591
diff
changeset
|
679 |
) |
34593
10f8f20e0137
configitems: register the 'logtoprocess.commandfinish' config
Boris Feld <boris.feld@octobus.net>
parents:
34592
diff
changeset
|
680 |
coreconfigitem('logtoprocess', 'commandfinish', |
10f8f20e0137
configitems: register the 'logtoprocess.commandfinish' config
Boris Feld <boris.feld@octobus.net>
parents:
34592
diff
changeset
|
681 |
default=None, |
10f8f20e0137
configitems: register the 'logtoprocess.commandfinish' config
Boris Feld <boris.feld@octobus.net>
parents:
34592
diff
changeset
|
682 |
) |
34594
728ecab6634b
configitems: register the 'logtoprocess.command' config
Boris Feld <boris.feld@octobus.net>
parents:
34593
diff
changeset
|
683 |
coreconfigitem('logtoprocess', 'command', |
728ecab6634b
configitems: register the 'logtoprocess.command' config
Boris Feld <boris.feld@octobus.net>
parents:
34593
diff
changeset
|
684 |
default=None, |
728ecab6634b
configitems: register the 'logtoprocess.command' config
Boris Feld <boris.feld@octobus.net>
parents:
34593
diff
changeset
|
685 |
) |
34595
54d916833ca5
configitems: register the 'logtoprocess.develwarn' config
Boris Feld <boris.feld@octobus.net>
parents:
34594
diff
changeset
|
686 |
coreconfigitem('logtoprocess', 'develwarn', |
54d916833ca5
configitems: register the 'logtoprocess.develwarn' config
Boris Feld <boris.feld@octobus.net>
parents:
34594
diff
changeset
|
687 |
default=None, |
54d916833ca5
configitems: register the 'logtoprocess.develwarn' config
Boris Feld <boris.feld@octobus.net>
parents:
34594
diff
changeset
|
688 |
) |
34596
c2dea46d0f23
configitems: register the 'logtoprocess.uiblocked' config
Boris Feld <boris.feld@octobus.net>
parents:
34595
diff
changeset
|
689 |
coreconfigitem('logtoprocess', 'uiblocked', |
c2dea46d0f23
configitems: register the 'logtoprocess.uiblocked' config
Boris Feld <boris.feld@octobus.net>
parents:
34595
diff
changeset
|
690 |
default=None, |
c2dea46d0f23
configitems: register the 'logtoprocess.uiblocked' config
Boris Feld <boris.feld@octobus.net>
parents:
34595
diff
changeset
|
691 |
) |
34522
bed1d2eaa108
configitems: register 'merge.checkunknown' and 'merge.checkignored'
Boris Feld <boris.feld@octobus.net>
parents:
34521
diff
changeset
|
692 |
coreconfigitem('merge', 'checkunknown', |
bed1d2eaa108
configitems: register 'merge.checkunknown' and 'merge.checkignored'
Boris Feld <boris.feld@octobus.net>
parents:
34521
diff
changeset
|
693 |
default='abort', |
bed1d2eaa108
configitems: register 'merge.checkunknown' and 'merge.checkignored'
Boris Feld <boris.feld@octobus.net>
parents:
34521
diff
changeset
|
694 |
) |
bed1d2eaa108
configitems: register 'merge.checkunknown' and 'merge.checkignored'
Boris Feld <boris.feld@octobus.net>
parents:
34521
diff
changeset
|
695 |
coreconfigitem('merge', 'checkignored', |
bed1d2eaa108
configitems: register 'merge.checkunknown' and 'merge.checkignored'
Boris Feld <boris.feld@octobus.net>
parents:
34521
diff
changeset
|
696 |
default='abort', |
bed1d2eaa108
configitems: register 'merge.checkunknown' and 'merge.checkignored'
Boris Feld <boris.feld@octobus.net>
parents:
34521
diff
changeset
|
697 |
) |
34941
37450a122128
merge: add a config option to disable path conflict checking
Siddharth Agarwal <sid0@fb.com>
parents:
34917
diff
changeset
|
698 |
coreconfigitem('experimental', 'merge.checkpathconflicts', |
34942
2a774cae3a03
merge: disable path conflict checking by default (issue5716)
Siddharth Agarwal <sid0@fb.com>
parents:
34941
diff
changeset
|
699 |
default=False, |
34941
37450a122128
merge: add a config option to disable path conflict checking
Siddharth Agarwal <sid0@fb.com>
parents:
34917
diff
changeset
|
700 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
701 |
coreconfigitem('merge', 'followcopies', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
702 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
703 |
) |
34796
ed91846c29cf
filemerge: introduce functions to halt merge flow
Ryan McElroy <rmcelroy@fb.com>
parents:
34776
diff
changeset
|
704 |
coreconfigitem('merge', 'on-failure', |
ed91846c29cf
filemerge: introduce functions to halt merge flow
Ryan McElroy <rmcelroy@fb.com>
parents:
34776
diff
changeset
|
705 |
default='continue', |
ed91846c29cf
filemerge: introduce functions to halt merge flow
Ryan McElroy <rmcelroy@fb.com>
parents:
34776
diff
changeset
|
706 |
) |
34479
99c3dee3f6ce
configitems: register the 'merge.preferancestor' config
Boris Feld <boris.feld@octobus.net>
parents:
34478
diff
changeset
|
707 |
coreconfigitem('merge', 'preferancestor', |
99c3dee3f6ce
configitems: register the 'merge.preferancestor' config
Boris Feld <boris.feld@octobus.net>
parents:
34478
diff
changeset
|
708 |
default=lambda: ['*'], |
99c3dee3f6ce
configitems: register the 'merge.preferancestor' config
Boris Feld <boris.feld@octobus.net>
parents:
34478
diff
changeset
|
709 |
) |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
710 |
coreconfigitem('merge-tools', '.*', |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
711 |
default=None, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
712 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
713 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
714 |
coreconfigitem('merge-tools', br'.*\.args$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
715 |
default="$local $base $other", |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
716 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
717 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
718 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
719 |
coreconfigitem('merge-tools', br'.*\.binary$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
720 |
default=False, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
721 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
722 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
723 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
724 |
coreconfigitem('merge-tools', br'.*\.check$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
725 |
default=list, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
726 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
727 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
728 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
729 |
coreconfigitem('merge-tools', br'.*\.checkchanged$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
730 |
default=False, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
731 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
732 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
733 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
734 |
coreconfigitem('merge-tools', br'.*\.executable$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
735 |
default=dynamicdefault, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
736 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
737 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
738 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
739 |
coreconfigitem('merge-tools', br'.*\.fixeol$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
740 |
default=False, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
741 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
742 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
743 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
744 |
coreconfigitem('merge-tools', br'.*\.gui$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
745 |
default=False, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
746 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
747 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
748 |
) |
35907
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
749 |
coreconfigitem('merge-tools', br'.*\.mergemarkers$', |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
750 |
default='basic', |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
751 |
generic=True, |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
752 |
priority=-1, |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
753 |
) |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
754 |
coreconfigitem('merge-tools', br'.*\.mergemarkertemplate$', |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
755 |
default=dynamicdefault, # take from ui.mergemarkertemplate |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
756 |
generic=True, |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
757 |
priority=-1, |
9037c29e9f53
filemerge: support passing labels to external merge tools
Kyle Lippincott <spectral@google.com>
parents:
35808
diff
changeset
|
758 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
759 |
coreconfigitem('merge-tools', br'.*\.priority$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
760 |
default=0, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
761 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
762 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
763 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
764 |
coreconfigitem('merge-tools', br'.*\.premerge$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
765 |
default=dynamicdefault, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
766 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
767 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
768 |
) |
34891
6b77c13a1aab
configitems: make all regular expressions bytes and not native str
Augie Fackler <augie@google.com>
parents:
34888
diff
changeset
|
769 |
coreconfigitem('merge-tools', br'.*\.symlink$', |
34826
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
770 |
default=False, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
771 |
generic=True, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
772 |
priority=-1, |
18a3274ed675
configitems: register the full 'merge-tools' config and sub-options
Boris Feld <boris.feld@octobus.net>
parents:
34825
diff
changeset
|
773 |
) |
34669
03f7db5f8e71
configitems: register the 'pager.attend-.*' options
Boris Feld <boris.feld@octobus.net>
parents:
34668
diff
changeset
|
774 |
coreconfigitem('pager', 'attend-.*', |
03f7db5f8e71
configitems: register the 'pager.attend-.*' options
Boris Feld <boris.feld@octobus.net>
parents:
34668
diff
changeset
|
775 |
default=dynamicdefault, |
03f7db5f8e71
configitems: register the 'pager.attend-.*' options
Boris Feld <boris.feld@octobus.net>
parents:
34668
diff
changeset
|
776 |
generic=True, |
03f7db5f8e71
configitems: register the 'pager.attend-.*' options
Boris Feld <boris.feld@octobus.net>
parents:
34668
diff
changeset
|
777 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
778 |
coreconfigitem('pager', 'ignore', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
779 |
default=list, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
780 |
) |
34591
f00eef0922ff
configitems: register the 'pager.pager' config
Boris Feld <boris.feld@octobus.net>
parents:
34590
diff
changeset
|
781 |
coreconfigitem('pager', 'pager', |
f00eef0922ff
configitems: register the 'pager.pager' config
Boris Feld <boris.feld@octobus.net>
parents:
34590
diff
changeset
|
782 |
default=dynamicdefault, |
f00eef0922ff
configitems: register the 'pager.pager' config
Boris Feld <boris.feld@octobus.net>
parents:
34590
diff
changeset
|
783 |
) |
33229
dd50a370c8cb
configitems: register the 'patch.eol' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33228
diff
changeset
|
784 |
coreconfigitem('patch', 'eol', |
dd50a370c8cb
configitems: register the 'patch.eol' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33228
diff
changeset
|
785 |
default='strict', |
dd50a370c8cb
configitems: register the 'patch.eol' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33228
diff
changeset
|
786 |
) |
32990
1d5d7e2b7ab5
configitems: register 'patch.fuzz' as first example for 'configint'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32986
diff
changeset
|
787 |
coreconfigitem('patch', 'fuzz', |
1d5d7e2b7ab5
configitems: register 'patch.fuzz' as first example for 'configint'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32986
diff
changeset
|
788 |
default=2, |
1d5d7e2b7ab5
configitems: register 'patch.fuzz' as first example for 'configint'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32986
diff
changeset
|
789 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
790 |
coreconfigitem('paths', 'default', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
791 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
792 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
793 |
coreconfigitem('paths', 'default-push', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
794 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
795 |
) |
34670
ec45d7a6d799
configitems: register the 'paths' config section
Boris Feld <boris.feld@octobus.net>
parents:
34669
diff
changeset
|
796 |
coreconfigitem('paths', '.*', |
ec45d7a6d799
configitems: register the 'paths' config section
Boris Feld <boris.feld@octobus.net>
parents:
34669
diff
changeset
|
797 |
default=None, |
ec45d7a6d799
configitems: register the 'paths' config section
Boris Feld <boris.feld@octobus.net>
parents:
34669
diff
changeset
|
798 |
generic=True, |
ec45d7a6d799
configitems: register the 'paths' config section
Boris Feld <boris.feld@octobus.net>
parents:
34669
diff
changeset
|
799 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
800 |
coreconfigitem('phases', 'checksubrepos', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
801 |
default='follow', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
802 |
) |
34476
9d78dfc78d93
configitems: register the 'phases.new-commit' config
Boris Feld <boris.feld@octobus.net>
parents:
34412
diff
changeset
|
803 |
coreconfigitem('phases', 'new-commit', |
34563
1faa34347b24
configitems: update default value of 'phases.new-commit'
Boris Feld <boris.feld@octobus.net>
parents:
34529
diff
changeset
|
804 |
default='draft', |
34476
9d78dfc78d93
configitems: register the 'phases.new-commit' config
Boris Feld <boris.feld@octobus.net>
parents:
34412
diff
changeset
|
805 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
806 |
coreconfigitem('phases', 'publish', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
807 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
808 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
809 |
coreconfigitem('profiling', 'enabled', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
810 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
811 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
812 |
coreconfigitem('profiling', 'format', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
813 |
default='text', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
814 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
815 |
coreconfigitem('profiling', 'freq', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
816 |
default=1000, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
817 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
818 |
coreconfigitem('profiling', 'limit', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
819 |
default=30, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
820 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
821 |
coreconfigitem('profiling', 'nested', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
822 |
default=0, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
823 |
) |
34409
7de145167ae7
configitems: register the 'profiling.output' config
Boris Feld <boris.feld@octobus.net>
parents:
34314
diff
changeset
|
824 |
coreconfigitem('profiling', 'output', |
7de145167ae7
configitems: register the 'profiling.output' config
Boris Feld <boris.feld@octobus.net>
parents:
34314
diff
changeset
|
825 |
default=None, |
7de145167ae7
configitems: register the 'profiling.output' config
Boris Feld <boris.feld@octobus.net>
parents:
34314
diff
changeset
|
826 |
) |
34410
fecea78ff2af
configitems: register the 'profiling.showmax' config
Boris Feld <boris.feld@octobus.net>
parents:
34409
diff
changeset
|
827 |
coreconfigitem('profiling', 'showmax', |
fecea78ff2af
configitems: register the 'profiling.showmax' config
Boris Feld <boris.feld@octobus.net>
parents:
34409
diff
changeset
|
828 |
default=0.999, |
fecea78ff2af
configitems: register the 'profiling.showmax' config
Boris Feld <boris.feld@octobus.net>
parents:
34409
diff
changeset
|
829 |
) |
34411
f5c16e6507e8
configitems: register the 'profiling.showmin' config
Boris Feld <boris.feld@octobus.net>
parents:
34410
diff
changeset
|
830 |
coreconfigitem('profiling', 'showmin', |
f5c16e6507e8
configitems: register the 'profiling.showmin' config
Boris Feld <boris.feld@octobus.net>
parents:
34410
diff
changeset
|
831 |
default=dynamicdefault, |
f5c16e6507e8
configitems: register the 'profiling.showmin' config
Boris Feld <boris.feld@octobus.net>
parents:
34410
diff
changeset
|
832 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
833 |
coreconfigitem('profiling', 'sort', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
834 |
default='inlinetime', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
835 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
836 |
coreconfigitem('profiling', 'statformat', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
837 |
default='hotpath', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
838 |
) |
34412
83dfbda40e67
configitems: register the 'profiling.type' config
Boris Feld <boris.feld@octobus.net>
parents:
34411
diff
changeset
|
839 |
coreconfigitem('profiling', 'type', |
83dfbda40e67
configitems: register the 'profiling.type' config
Boris Feld <boris.feld@octobus.net>
parents:
34411
diff
changeset
|
840 |
default='stat', |
83dfbda40e67
configitems: register the 'profiling.type' config
Boris Feld <boris.feld@octobus.net>
parents:
34411
diff
changeset
|
841 |
) |
33248
be00b61e4c4a
configitems: register the 'progress.assume-tty' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33247
diff
changeset
|
842 |
coreconfigitem('progress', 'assume-tty', |
be00b61e4c4a
configitems: register the 'progress.assume-tty' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33247
diff
changeset
|
843 |
default=False, |
be00b61e4c4a
configitems: register the 'progress.assume-tty' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33247
diff
changeset
|
844 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
845 |
coreconfigitem('progress', 'changedelay', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
846 |
default=1, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
847 |
) |
33249
391da1416038
configitems: register the 'progress.clear-complete' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33248
diff
changeset
|
848 |
coreconfigitem('progress', 'clear-complete', |
391da1416038
configitems: register the 'progress.clear-complete' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33248
diff
changeset
|
849 |
default=True, |
391da1416038
configitems: register the 'progress.clear-complete' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33248
diff
changeset
|
850 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
851 |
coreconfigitem('progress', 'debug', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
852 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
853 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
854 |
coreconfigitem('progress', 'delay', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
855 |
default=3, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
856 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
857 |
coreconfigitem('progress', 'disable', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
858 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
859 |
) |
34314
a667f0ca1d5f
progress: make ETA only consider progress made in the last minute
Jun Wu <quark@fb.com>
parents:
34313
diff
changeset
|
860 |
coreconfigitem('progress', 'estimateinterval', |
a667f0ca1d5f
progress: make ETA only consider progress made in the last minute
Jun Wu <quark@fb.com>
parents:
34313
diff
changeset
|
861 |
default=60.0, |
a667f0ca1d5f
progress: make ETA only consider progress made in the last minute
Jun Wu <quark@fb.com>
parents:
34313
diff
changeset
|
862 |
) |
34746
54fa3db5becf
configitems: register the 'progress.format' config
Boris Feld <boris.feld@octobus.net>
parents:
34738
diff
changeset
|
863 |
coreconfigitem('progress', 'format', |
54fa3db5becf
configitems: register the 'progress.format' config
Boris Feld <boris.feld@octobus.net>
parents:
34738
diff
changeset
|
864 |
default=lambda: ['topic', 'bar', 'number', 'estimate'], |
54fa3db5becf
configitems: register the 'progress.format' config
Boris Feld <boris.feld@octobus.net>
parents:
34738
diff
changeset
|
865 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
866 |
coreconfigitem('progress', 'refresh', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
867 |
default=0.1, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
868 |
) |
33473
b78c59e41a65
configitems: register the 'progress.width' config
Boris Feld <boris.feld@octobus.net>
parents:
33472
diff
changeset
|
869 |
coreconfigitem('progress', 'width', |
b78c59e41a65
configitems: register the 'progress.width' config
Boris Feld <boris.feld@octobus.net>
parents:
33472
diff
changeset
|
870 |
default=dynamicdefault, |
b78c59e41a65
configitems: register the 'progress.width' config
Boris Feld <boris.feld@octobus.net>
parents:
33472
diff
changeset
|
871 |
) |
33835
057d31ceace3
pushvars: add a coreconfigitem for push.pushvars.server
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33772
diff
changeset
|
872 |
coreconfigitem('push', 'pushvars.server', |
057d31ceace3
pushvars: add a coreconfigitem for push.pushvars.server
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33772
diff
changeset
|
873 |
default=False, |
057d31ceace3
pushvars: add a coreconfigitem for push.pushvars.server
Pulkit Goyal <7895pulkit@gmail.com>
parents:
33772
diff
changeset
|
874 |
) |
35261
f392066d127c
bookmark: add pushkey hook compatiblity to the bundle2 part
Boris Feld <boris.feld@octobus.net>
parents:
35236
diff
changeset
|
875 |
coreconfigitem('server', 'bookmarks-pushkey-compat', |
f392066d127c
bookmark: add pushkey hook compatiblity to the bundle2 part
Boris Feld <boris.feld@octobus.net>
parents:
35236
diff
changeset
|
876 |
default=True, |
f392066d127c
bookmark: add pushkey hook compatiblity to the bundle2 part
Boris Feld <boris.feld@octobus.net>
parents:
35236
diff
changeset
|
877 |
) |
33219
ffb1d0f541f5
configitems: register the 'server.bundle1' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33218
diff
changeset
|
878 |
coreconfigitem('server', 'bundle1', |
ffb1d0f541f5
configitems: register the 'server.bundle1' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33218
diff
changeset
|
879 |
default=True, |
ffb1d0f541f5
configitems: register the 'server.bundle1' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33218
diff
changeset
|
880 |
) |
33220
40861b2254a5
configitems: register the 'server.bundle1gd' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33219
diff
changeset
|
881 |
coreconfigitem('server', 'bundle1gd', |
40861b2254a5
configitems: register the 'server.bundle1gd' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33219
diff
changeset
|
882 |
default=None, |
40861b2254a5
configitems: register the 'server.bundle1gd' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33219
diff
changeset
|
883 |
) |
34613
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
884 |
coreconfigitem('server', 'bundle1.pull', |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
885 |
default=None, |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
886 |
) |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
887 |
coreconfigitem('server', 'bundle1gd.pull', |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
888 |
default=None, |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
889 |
) |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
890 |
coreconfigitem('server', 'bundle1.push', |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
891 |
default=None, |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
892 |
) |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
893 |
coreconfigitem('server', 'bundle1gd.push', |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
894 |
default=None, |
5e61cd5fb0fc
configitems: register the 'server.bundle*' family of config
Boris Feld <boris.feld@octobus.net>
parents:
34612
diff
changeset
|
895 |
) |
33221
4237398c67c0
configitems: register the 'server.compressionengines' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33220
diff
changeset
|
896 |
coreconfigitem('server', 'compressionengines', |
4237398c67c0
configitems: register the 'server.compressionengines' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33220
diff
changeset
|
897 |
default=list, |
4237398c67c0
configitems: register the 'server.compressionengines' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33220
diff
changeset
|
898 |
) |
33222
593ad8df9dd2
configitems: register the 'server.concurrent-push-mode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33221
diff
changeset
|
899 |
coreconfigitem('server', 'concurrent-push-mode', |
593ad8df9dd2
configitems: register the 'server.concurrent-push-mode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33221
diff
changeset
|
900 |
default='strict', |
593ad8df9dd2
configitems: register the 'server.concurrent-push-mode' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33221
diff
changeset
|
901 |
) |
33223
d227451ee280
configitems: register the 'server.disablefullbundle' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33222
diff
changeset
|
902 |
coreconfigitem('server', 'disablefullbundle', |
d227451ee280
configitems: register the 'server.disablefullbundle' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33222
diff
changeset
|
903 |
default=False, |
d227451ee280
configitems: register the 'server.disablefullbundle' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33222
diff
changeset
|
904 |
) |
33224
ab9121fda8d2
configitems: register the 'server.maxhttpheaderlen' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33223
diff
changeset
|
905 |
coreconfigitem('server', 'maxhttpheaderlen', |
ab9121fda8d2
configitems: register the 'server.maxhttpheaderlen' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33223
diff
changeset
|
906 |
default=1024, |
ab9121fda8d2
configitems: register the 'server.maxhttpheaderlen' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33223
diff
changeset
|
907 |
) |
33225
90a1b62bdc91
configitems: register the 'server.preferuncompressed' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33224
diff
changeset
|
908 |
coreconfigitem('server', 'preferuncompressed', |
90a1b62bdc91
configitems: register the 'server.preferuncompressed' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33224
diff
changeset
|
909 |
default=False, |
90a1b62bdc91
configitems: register the 'server.preferuncompressed' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33224
diff
changeset
|
910 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
911 |
coreconfigitem('server', 'uncompressed', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
912 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
913 |
) |
33226
b045344fe35e
configitems: register the 'server.uncompressedallowsecret' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33225
diff
changeset
|
914 |
coreconfigitem('server', 'uncompressedallowsecret', |
b045344fe35e
configitems: register the 'server.uncompressedallowsecret' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33225
diff
changeset
|
915 |
default=False, |
b045344fe35e
configitems: register the 'server.uncompressedallowsecret' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33225
diff
changeset
|
916 |
) |
33227
86c9aa1d598f
configitems: register the 'server.validate' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33226
diff
changeset
|
917 |
coreconfigitem('server', 'validate', |
86c9aa1d598f
configitems: register the 'server.validate' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33226
diff
changeset
|
918 |
default=False, |
86c9aa1d598f
configitems: register the 'server.validate' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33226
diff
changeset
|
919 |
) |
33228
35c233975b78
configitems: register the 'server.zliblevel' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33227
diff
changeset
|
920 |
coreconfigitem('server', 'zliblevel', |
35c233975b78
configitems: register the 'server.zliblevel' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33227
diff
changeset
|
921 |
default=-1, |
35c233975b78
configitems: register the 'server.zliblevel' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33227
diff
changeset
|
922 |
) |
34982
0f5521e56b77
share: move config item declarations into core
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34942
diff
changeset
|
923 |
coreconfigitem('share', 'pool', |
0f5521e56b77
share: move config item declarations into core
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34942
diff
changeset
|
924 |
default=None, |
0f5521e56b77
share: move config item declarations into core
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34942
diff
changeset
|
925 |
) |
0f5521e56b77
share: move config item declarations into core
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34942
diff
changeset
|
926 |
coreconfigitem('share', 'poolnaming', |
0f5521e56b77
share: move config item declarations into core
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34942
diff
changeset
|
927 |
default='identity', |
0f5521e56b77
share: move config item declarations into core
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34942
diff
changeset
|
928 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
929 |
coreconfigitem('smtp', 'host', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
930 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
931 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
932 |
coreconfigitem('smtp', 'local_hostname', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
933 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
934 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
935 |
coreconfigitem('smtp', 'password', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
936 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
937 |
) |
34477
a27718efb290
configitems: register the 'smtp.port' config
Boris Feld <boris.feld@octobus.net>
parents:
34476
diff
changeset
|
938 |
coreconfigitem('smtp', 'port', |
a27718efb290
configitems: register the 'smtp.port' config
Boris Feld <boris.feld@octobus.net>
parents:
34476
diff
changeset
|
939 |
default=dynamicdefault, |
a27718efb290
configitems: register the 'smtp.port' config
Boris Feld <boris.feld@octobus.net>
parents:
34476
diff
changeset
|
940 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
941 |
coreconfigitem('smtp', 'tls', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
942 |
default='none', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
943 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
944 |
coreconfigitem('smtp', 'username', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
945 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
946 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
947 |
coreconfigitem('sparse', 'missingwarning', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
948 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
949 |
) |
34985
5e27afeddaee
subrepo: add config option to reject any subrepo operations (SEC)
Yuya Nishihara <yuya@tcha.org>
parents:
34942
diff
changeset
|
950 |
coreconfigitem('subrepos', 'allowed', |
5e27afeddaee
subrepo: add config option to reject any subrepo operations (SEC)
Yuya Nishihara <yuya@tcha.org>
parents:
34942
diff
changeset
|
951 |
default=dynamicdefault, # to make backporting simpler |
5e27afeddaee
subrepo: add config option to reject any subrepo operations (SEC)
Yuya Nishihara <yuya@tcha.org>
parents:
34942
diff
changeset
|
952 |
) |
34989
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
953 |
coreconfigitem('subrepos', 'hg:allowed', |
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
954 |
default=dynamicdefault, |
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
955 |
) |
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
956 |
coreconfigitem('subrepos', 'git:allowed', |
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
957 |
default=dynamicdefault, |
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
958 |
) |
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
959 |
coreconfigitem('subrepos', 'svn:allowed', |
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
960 |
default=dynamicdefault, |
1a314176da9c
subrepo: use per-type config options to enable subrepos
Gregory Szorc <gregory.szorc@gmail.com>
parents:
34985
diff
changeset
|
961 |
) |
34671
16d73491416b
configitems: register the 'templates' section
Boris Feld <boris.feld@octobus.net>
parents:
34670
diff
changeset
|
962 |
coreconfigitem('templates', '.*', |
16d73491416b
configitems: register the 'templates' section
Boris Feld <boris.feld@octobus.net>
parents:
34670
diff
changeset
|
963 |
default=None, |
16d73491416b
configitems: register the 'templates' section
Boris Feld <boris.feld@octobus.net>
parents:
34670
diff
changeset
|
964 |
generic=True, |
16d73491416b
configitems: register the 'templates' section
Boris Feld <boris.feld@octobus.net>
parents:
34670
diff
changeset
|
965 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
966 |
coreconfigitem('trusted', 'groups', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
967 |
default=list, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
968 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
969 |
coreconfigitem('trusted', 'users', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
970 |
default=list, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
971 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
972 |
coreconfigitem('ui', '_usedassubrepo', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
973 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
974 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
975 |
coreconfigitem('ui', 'allowemptycommit', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
976 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
977 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
978 |
coreconfigitem('ui', 'archivemeta', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
979 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
980 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
981 |
coreconfigitem('ui', 'askusername', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
982 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
983 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
984 |
coreconfigitem('ui', 'clonebundlefallback', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
985 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
986 |
) |
32991
03608e8d09e9
configitems: register 'ui.clonebundleprefers' as example for 'configlist'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32990
diff
changeset
|
987 |
coreconfigitem('ui', 'clonebundleprefers', |
33150
77e666f943a6
configitems: support callable as a default value
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33133
diff
changeset
|
988 |
default=list, |
32991
03608e8d09e9
configitems: register 'ui.clonebundleprefers' as example for 'configlist'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32990
diff
changeset
|
989 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
990 |
coreconfigitem('ui', 'clonebundles', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
991 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
992 |
) |
33522
62b29ca72d1a
configitems: register the 'ui.color' config
Boris Feld <boris.feld@octobus.net>
parents:
33520
diff
changeset
|
993 |
coreconfigitem('ui', 'color', |
62b29ca72d1a
configitems: register the 'ui.color' config
Boris Feld <boris.feld@octobus.net>
parents:
33520
diff
changeset
|
994 |
default='auto', |
62b29ca72d1a
configitems: register the 'ui.color' config
Boris Feld <boris.feld@octobus.net>
parents:
33520
diff
changeset
|
995 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
996 |
coreconfigitem('ui', 'commitsubrepos', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
997 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
998 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
999 |
coreconfigitem('ui', 'debug', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1000 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1001 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1002 |
coreconfigitem('ui', 'debugger', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1003 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1004 |
) |
34916
346781c41597
configitems: register 'ui.editor'
Yuya Nishihara <yuya@tcha.org>
parents:
34911
diff
changeset
|
1005 |
coreconfigitem('ui', 'editor', |
346781c41597
configitems: register 'ui.editor'
Yuya Nishihara <yuya@tcha.org>
parents:
34911
diff
changeset
|
1006 |
default=dynamicdefault, |
346781c41597
configitems: register 'ui.editor'
Yuya Nishihara <yuya@tcha.org>
parents:
34911
diff
changeset
|
1007 |
) |
33519
3b7e36f7e632
configitems: register the 'ui.fallbackencoding' config
Boris Feld <boris.feld@octobus.net>
parents:
33499
diff
changeset
|
1008 |
coreconfigitem('ui', 'fallbackencoding', |
3b7e36f7e632
configitems: register the 'ui.fallbackencoding' config
Boris Feld <boris.feld@octobus.net>
parents:
33499
diff
changeset
|
1009 |
default=None, |
3b7e36f7e632
configitems: register the 'ui.fallbackencoding' config
Boris Feld <boris.feld@octobus.net>
parents:
33499
diff
changeset
|
1010 |
) |
33520
6e19198cbe31
configitems: register the 'ui.forcecwd' config
Boris Feld <boris.feld@octobus.net>
parents:
33519
diff
changeset
|
1011 |
coreconfigitem('ui', 'forcecwd', |
6e19198cbe31
configitems: register the 'ui.forcecwd' config
Boris Feld <boris.feld@octobus.net>
parents:
33519
diff
changeset
|
1012 |
default=None, |
6e19198cbe31
configitems: register the 'ui.forcecwd' config
Boris Feld <boris.feld@octobus.net>
parents:
33519
diff
changeset
|
1013 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1014 |
coreconfigitem('ui', 'forcemerge', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1015 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1016 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1017 |
coreconfigitem('ui', 'formatdebug', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1018 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1019 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1020 |
coreconfigitem('ui', 'formatjson', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1021 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1022 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1023 |
coreconfigitem('ui', 'formatted', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1024 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1025 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1026 |
coreconfigitem('ui', 'graphnodetemplate', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1027 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1028 |
) |
33061
c41cbe98822c
configitems: register 'ui.interactive'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32991
diff
changeset
|
1029 |
coreconfigitem('ui', 'interactive', |
c41cbe98822c
configitems: register 'ui.interactive'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32991
diff
changeset
|
1030 |
default=None, |
c41cbe98822c
configitems: register 'ui.interactive'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32991
diff
changeset
|
1031 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1032 |
coreconfigitem('ui', 'interface', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1033 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1034 |
) |
34616
c0dabec35019
configitems: register the 'ui.interface.chunkselector' config
Boris Feld <boris.feld@octobus.net>
parents:
34615
diff
changeset
|
1035 |
coreconfigitem('ui', 'interface.chunkselector', |
c0dabec35019
configitems: register the 'ui.interface.chunkselector' config
Boris Feld <boris.feld@octobus.net>
parents:
34615
diff
changeset
|
1036 |
default=None, |
c0dabec35019
configitems: register the 'ui.interface.chunkselector' config
Boris Feld <boris.feld@octobus.net>
parents:
34615
diff
changeset
|
1037 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1038 |
coreconfigitem('ui', 'logblockedtimes', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1039 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1040 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1041 |
coreconfigitem('ui', 'logtemplate', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1042 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1043 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1044 |
coreconfigitem('ui', 'merge', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1045 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1046 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1047 |
coreconfigitem('ui', 'mergemarkers', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1048 |
default='basic', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1049 |
) |
33523
11025c4f1016
configitems: register the 'ui.mergemarkertemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
33522
diff
changeset
|
1050 |
coreconfigitem('ui', 'mergemarkertemplate', |
11025c4f1016
configitems: register the 'ui.mergemarkertemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
33522
diff
changeset
|
1051 |
default=('{node|short} ' |
11025c4f1016
configitems: register the 'ui.mergemarkertemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
33522
diff
changeset
|
1052 |
'{ifeq(tags, "tip", "", ' |
11025c4f1016
configitems: register the 'ui.mergemarkertemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
33522
diff
changeset
|
1053 |
'ifeq(tags, "", "", "{tags} "))}' |
11025c4f1016
configitems: register the 'ui.mergemarkertemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
33522
diff
changeset
|
1054 |
'{if(bookmarks, "{bookmarks} ")}' |
11025c4f1016
configitems: register the 'ui.mergemarkertemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
33522
diff
changeset
|
1055 |
'{ifeq(branch, "default", "", "{branch} ")}' |
11025c4f1016
configitems: register the 'ui.mergemarkertemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
33522
diff
changeset
|
1056 |
'- {author|user}: {desc|firstline}') |
11025c4f1016
configitems: register the 'ui.mergemarkertemplate' config
Boris Feld <boris.feld@octobus.net>
parents:
33522
diff
changeset
|
1057 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1058 |
coreconfigitem('ui', 'nontty', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1059 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1060 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1061 |
coreconfigitem('ui', 'origbackuppath', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1062 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1063 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1064 |
coreconfigitem('ui', 'paginate', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1065 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1066 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1067 |
coreconfigitem('ui', 'patch', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1068 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1069 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1070 |
coreconfigitem('ui', 'portablefilenames', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1071 |
default='warn', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1072 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1073 |
coreconfigitem('ui', 'promptecho', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1074 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1075 |
) |
32986
2529e2ae9f4c
configitems: register 'ui.quiet' as first example
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32984
diff
changeset
|
1076 |
coreconfigitem('ui', 'quiet', |
2529e2ae9f4c
configitems: register 'ui.quiet' as first example
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32984
diff
changeset
|
1077 |
default=False, |
2529e2ae9f4c
configitems: register 'ui.quiet' as first example
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
32984
diff
changeset
|
1078 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1079 |
coreconfigitem('ui', 'quietbookmarkmove', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1080 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1081 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1082 |
coreconfigitem('ui', 'remotecmd', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1083 |
default='hg', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1084 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1085 |
coreconfigitem('ui', 'report_untrusted', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1086 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1087 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1088 |
coreconfigitem('ui', 'rollback', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1089 |
default=True, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1090 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1091 |
coreconfigitem('ui', 'slash', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1092 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1093 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1094 |
coreconfigitem('ui', 'ssh', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1095 |
default='ssh', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1096 |
) |
35108
8b1c887d52e7
sshpeer: add a configurable hint for the ssh error message
Zuzanna Mroczek <zuza@fb.com>
parents:
35038
diff
changeset
|
1097 |
coreconfigitem('ui', 'ssherrorhint', |
8b1c887d52e7
sshpeer: add a configurable hint for the ssh error message
Zuzanna Mroczek <zuza@fb.com>
parents:
35038
diff
changeset
|
1098 |
default=None, |
8b1c887d52e7
sshpeer: add a configurable hint for the ssh error message
Zuzanna Mroczek <zuza@fb.com>
parents:
35038
diff
changeset
|
1099 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1100 |
coreconfigitem('ui', 'statuscopies', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1101 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1102 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1103 |
coreconfigitem('ui', 'strict', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1104 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1105 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1106 |
coreconfigitem('ui', 'style', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1107 |
default='', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1108 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1109 |
coreconfigitem('ui', 'supportcontact', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1110 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1111 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1112 |
coreconfigitem('ui', 'textwidth', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1113 |
default=78, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1114 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1115 |
coreconfigitem('ui', 'timeout', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1116 |
default='600', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1117 |
) |
35209
9153871d50e0
lock: allow to configure when the lock messages are displayed
Boris Feld <boris.feld@octobus.net>
parents:
35185
diff
changeset
|
1118 |
coreconfigitem('ui', 'timeout.warn', |
9153871d50e0
lock: allow to configure when the lock messages are displayed
Boris Feld <boris.feld@octobus.net>
parents:
35185
diff
changeset
|
1119 |
default=0, |
9153871d50e0
lock: allow to configure when the lock messages are displayed
Boris Feld <boris.feld@octobus.net>
parents:
35185
diff
changeset
|
1120 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1121 |
coreconfigitem('ui', 'traceback', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1122 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1123 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1124 |
coreconfigitem('ui', 'tweakdefaults', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1125 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1126 |
) |
33329
e714159860fd
configitems: add alias support in config
David Demelier <demelier.david@gmail.com>
parents:
33250
diff
changeset
|
1127 |
coreconfigitem('ui', 'username', |
e714159860fd
configitems: add alias support in config
David Demelier <demelier.david@gmail.com>
parents:
33250
diff
changeset
|
1128 |
alias=[('ui', 'user')] |
e714159860fd
configitems: add alias support in config
David Demelier <demelier.david@gmail.com>
parents:
33250
diff
changeset
|
1129 |
) |
33499
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1130 |
coreconfigitem('ui', 'verbose', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1131 |
default=False, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1132 |
) |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1133 |
coreconfigitem('verify', 'skipflags', |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1134 |
default=None, |
0407a51b9d8c
codemod: register core configitems using a script
Jun Wu <quark@fb.com>
parents:
33474
diff
changeset
|
1135 |
) |
34600
2d07d20d5a78
configitems: register the 'web.allowbz2' config
Boris Feld <boris.feld@octobus.net>
parents:
34599
diff
changeset
|
1136 |
coreconfigitem('web', 'allowbz2', |
34653
8bea493e7297
configitems: correct default values of web.allow<archtype> and web.hidden
Yuya Nishihara <yuya@tcha.org>
parents:
34618
diff
changeset
|
1137 |
default=False, |
34600
2d07d20d5a78
configitems: register the 'web.allowbz2' config
Boris Feld <boris.feld@octobus.net>
parents:
34599
diff
changeset
|
1138 |
) |
34601
8f4d54b74206
configitems: register the 'web.allowgz' config
Boris Feld <boris.feld@octobus.net>
parents:
34600
diff
changeset
|
1139 |
coreconfigitem('web', 'allowgz', |
34653
8bea493e7297
configitems: correct default values of web.allow<archtype> and web.hidden
Yuya Nishihara <yuya@tcha.org>
parents:
34618
diff
changeset
|
1140 |
default=False, |
34601
8f4d54b74206
configitems: register the 'web.allowgz' config
Boris Feld <boris.feld@octobus.net>
parents:
34600
diff
changeset
|
1141 |
) |
35037
da5d5ea7d696
config: rename allowpull to allow-pull
David Demelier <markand@malikania.fr>
parents:
34996
diff
changeset
|
1142 |
coreconfigitem('web', 'allow-pull', |
da5d5ea7d696
config: rename allowpull to allow-pull
David Demelier <markand@malikania.fr>
parents:
34996
diff
changeset
|
1143 |
alias=[('web', 'allowpull')], |
34602
56816cfc4951
configitems: register the 'web.allowpull' config
Boris Feld <boris.feld@octobus.net>
parents:
34601
diff
changeset
|
1144 |
default=True, |
56816cfc4951
configitems: register the 'web.allowpull' config
Boris Feld <boris.feld@octobus.net>
parents:
34601
diff
changeset
|
1145 |
) |
35038
6ef744a7df65
config: rename allow_push to allow-push
David Demelier <markand@malikania.fr>
parents:
35037
diff
changeset
|
1146 |
coreconfigitem('web', 'allow-push', |
6ef744a7df65
config: rename allow_push to allow-push
David Demelier <markand@malikania.fr>
parents:
35037
diff
changeset
|
1147 |
alias=[('web', 'allow_push')], |
34603
cc5445ced177
configitems: register the 'web.allow_push' config
Boris Feld <boris.feld@octobus.net>
parents:
34602
diff
changeset
|
1148 |
default=list, |
cc5445ced177
configitems: register the 'web.allow_push' config
Boris Feld <boris.feld@octobus.net>
parents:
34602
diff
changeset
|
1149 |
) |
34604
dcd6b6625e98
configitems: register the 'web.allowzip' config
Boris Feld <boris.feld@octobus.net>
parents:
34603
diff
changeset
|
1150 |
coreconfigitem('web', 'allowzip', |
34653
8bea493e7297
configitems: correct default values of web.allow<archtype> and web.hidden
Yuya Nishihara <yuya@tcha.org>
parents:
34618
diff
changeset
|
1151 |
default=False, |
34604
dcd6b6625e98
configitems: register the 'web.allowzip' config
Boris Feld <boris.feld@octobus.net>
parents:
34603
diff
changeset
|
1152 |
) |
34828
46610c851216
configitems: register the 'web.archivesubrepos' config
Boris Feld <boris.feld@octobus.net>
parents:
34827
diff
changeset
|
1153 |
coreconfigitem('web', 'archivesubrepos', |
46610c851216
configitems: register the 'web.archivesubrepos' config
Boris Feld <boris.feld@octobus.net>
parents:
34827
diff
changeset
|
1154 |
default=False, |
46610c851216
configitems: register the 'web.archivesubrepos' config
Boris Feld <boris.feld@octobus.net>
parents:
34827
diff
changeset
|
1155 |
) |
34605
625202a44d88
configitems: register the 'web.cache' config
Boris Feld <boris.feld@octobus.net>
parents:
34604
diff
changeset
|
1156 |
coreconfigitem('web', 'cache', |
625202a44d88
configitems: register the 'web.cache' config
Boris Feld <boris.feld@octobus.net>
parents:
34604
diff
changeset
|
1157 |
default=True, |
625202a44d88
configitems: register the 'web.cache' config
Boris Feld <boris.feld@octobus.net>
parents:
34604
diff
changeset
|
1158 |
) |
34606
db935a5ea364
configitems: register the 'web.contact' config
Boris Feld <boris.feld@octobus.net>
parents:
34605
diff
changeset
|
1159 |
coreconfigitem('web', 'contact', |
db935a5ea364
configitems: register the 'web.contact' config
Boris Feld <boris.feld@octobus.net>
parents:
34605
diff
changeset
|
1160 |
default=None, |
db935a5ea364
configitems: register the 'web.contact' config
Boris Feld <boris.feld@octobus.net>
parents:
34605
diff
changeset
|
1161 |
) |
34607
3e6b36ba16ac
configitems: register the 'web.deny_push' config
Boris Feld <boris.feld@octobus.net>
parents:
34606
diff
changeset
|
1162 |
coreconfigitem('web', 'deny_push', |
3e6b36ba16ac
configitems: register the 'web.deny_push' config
Boris Feld <boris.feld@octobus.net>
parents:
34606
diff
changeset
|
1163 |
default=list, |
3e6b36ba16ac
configitems: register the 'web.deny_push' config
Boris Feld <boris.feld@octobus.net>
parents:
34606
diff
changeset
|
1164 |
) |
34608
f12de15c5711
configitems: register the 'web.guessmime' config
Boris Feld <boris.feld@octobus.net>
parents:
34607
diff
changeset
|
1165 |
coreconfigitem('web', 'guessmime', |
f12de15c5711
configitems: register the 'web.guessmime' config
Boris Feld <boris.feld@octobus.net>
parents:
34607
diff
changeset
|
1166 |
default=False, |
f12de15c5711
configitems: register the 'web.guessmime' config
Boris Feld <boris.feld@octobus.net>
parents:
34607
diff
changeset
|
1167 |
) |
34609
9d97487514c7
configitems: register the 'web.hidden' config
Boris Feld <boris.feld@octobus.net>
parents:
34608
diff
changeset
|
1168 |
coreconfigitem('web', 'hidden', |
34653
8bea493e7297
configitems: correct default values of web.allow<archtype> and web.hidden
Yuya Nishihara <yuya@tcha.org>
parents:
34618
diff
changeset
|
1169 |
default=False, |
34609
9d97487514c7
configitems: register the 'web.hidden' config
Boris Feld <boris.feld@octobus.net>
parents:
34608
diff
changeset
|
1170 |
) |
34610
f3e090d0c6d6
configitems: register the 'web.labels' config
Boris Feld <boris.feld@octobus.net>
parents:
34609
diff
changeset
|
1171 |
coreconfigitem('web', 'labels', |
f3e090d0c6d6
configitems: register the 'web.labels' config
Boris Feld <boris.feld@octobus.net>
parents:
34609
diff
changeset
|
1172 |
default=list, |
f3e090d0c6d6
configitems: register the 'web.labels' config
Boris Feld <boris.feld@octobus.net>
parents:
34609
diff
changeset
|
1173 |
) |
34611
c879fc7bd71f
configitems: register the 'web.logoimg' config
Boris Feld <boris.feld@octobus.net>
parents:
34610
diff
changeset
|
1174 |
coreconfigitem('web', 'logoimg', |
c879fc7bd71f
configitems: register the 'web.logoimg' config
Boris Feld <boris.feld@octobus.net>
parents:
34610
diff
changeset
|
1175 |
default='hglogo.png', |
c879fc7bd71f
configitems: register the 'web.logoimg' config
Boris Feld <boris.feld@octobus.net>
parents:
34610
diff
changeset
|
1176 |
) |
34612
c2cb6be4212f
configitems: register the 'web.logourl' config
Boris Feld <boris.feld@octobus.net>
parents:
34611
diff
changeset
|
1177 |
coreconfigitem('web', 'logourl', |
c2cb6be4212f
configitems: register the 'web.logourl' config
Boris Feld <boris.feld@octobus.net>
parents:
34611
diff
changeset
|
1178 |
default='https://mercurial-scm.org/', |
c2cb6be4212f
configitems: register the 'web.logourl' config
Boris Feld <boris.feld@octobus.net>
parents:
34611
diff
changeset
|
1179 |
) |
34227
ac96ff471c9a
configitems: register the 'web.accesslog' config
Boris Feld <boris.feld@octobus.net>
parents:
34077
diff
changeset
|
1180 |
coreconfigitem('web', 'accesslog', |
ac96ff471c9a
configitems: register the 'web.accesslog' config
Boris Feld <boris.feld@octobus.net>
parents:
34077
diff
changeset
|
1181 |
default='-', |
ac96ff471c9a
configitems: register the 'web.accesslog' config
Boris Feld <boris.feld@octobus.net>
parents:
34077
diff
changeset
|
1182 |
) |
34228
af4f0c74f8b5
configitems: register the 'web.address' config
Boris Feld <boris.feld@octobus.net>
parents:
34227
diff
changeset
|
1183 |
coreconfigitem('web', 'address', |
af4f0c74f8b5
configitems: register the 'web.address' config
Boris Feld <boris.feld@octobus.net>
parents:
34227
diff
changeset
|
1184 |
default='', |
af4f0c74f8b5
configitems: register the 'web.address' config
Boris Feld <boris.feld@octobus.net>
parents:
34227
diff
changeset
|
1185 |
) |
34229
6742e18e41f0
configitems: register the 'web.allow_archive' config
Boris Feld <boris.feld@octobus.net>
parents:
34228
diff
changeset
|
1186 |
coreconfigitem('web', 'allow_archive', |
6742e18e41f0
configitems: register the 'web.allow_archive' config
Boris Feld <boris.feld@octobus.net>
parents:
34228
diff
changeset
|
1187 |
default=list, |
6742e18e41f0
configitems: register the 'web.allow_archive' config
Boris Feld <boris.feld@octobus.net>
parents:
34228
diff
changeset
|
1188 |
) |
34230
b0a567017647
configitems: register the 'web.allow_read' config
Boris Feld <boris.feld@octobus.net>
parents:
34229
diff
changeset
|
1189 |
coreconfigitem('web', 'allow_read', |
b0a567017647
configitems: register the 'web.allow_read' config
Boris Feld <boris.feld@octobus.net>
parents:
34229
diff
changeset
|
1190 |
default=list, |
b0a567017647
configitems: register the 'web.allow_read' config
Boris Feld <boris.feld@octobus.net>
parents:
34229
diff
changeset
|
1191 |
) |
34231
4a192d70502e
configitems: register the 'web.baseurl' config
Boris Feld <boris.feld@octobus.net>
parents:
34230
diff
changeset
|
1192 |
coreconfigitem('web', 'baseurl', |
4a192d70502e
configitems: register the 'web.baseurl' config
Boris Feld <boris.feld@octobus.net>
parents:
34230
diff
changeset
|
1193 |
default=None, |
4a192d70502e
configitems: register the 'web.baseurl' config
Boris Feld <boris.feld@octobus.net>
parents:
34230
diff
changeset
|
1194 |
) |
34232
f33904b8bb77
configitems: register the 'web.cacerts' config
Boris Feld <boris.feld@octobus.net>
parents:
34231
diff
changeset
|
1195 |
coreconfigitem('web', 'cacerts', |
f33904b8bb77
configitems: register the 'web.cacerts' config
Boris Feld <boris.feld@octobus.net>
parents:
34231
diff
changeset
|
1196 |
default=None, |
f33904b8bb77
configitems: register the 'web.cacerts' config
Boris Feld <boris.feld@octobus.net>
parents:
34231
diff
changeset
|
1197 |
) |
34233
25b24a3e5a9e
configitems: register the 'web.certificate' config
Boris Feld <boris.feld@octobus.net>
parents:
34232
diff
changeset
|
1198 |
coreconfigitem('web', 'certificate', |
25b24a3e5a9e
configitems: register the 'web.certificate' config
Boris Feld <boris.feld@octobus.net>
parents:
34232
diff
changeset
|
1199 |
default=None, |
25b24a3e5a9e
configitems: register the 'web.certificate' config
Boris Feld <boris.feld@octobus.net>
parents:
34232
diff
changeset
|
1200 |
) |
34234
f6d25ffc8b7f
configitems: register the 'web.collapse' config
Boris Feld <boris.feld@octobus.net>
parents:
34233
diff
changeset
|
1201 |
coreconfigitem('web', 'collapse', |
f6d25ffc8b7f
configitems: register the 'web.collapse' config
Boris Feld <boris.feld@octobus.net>
parents:
34233
diff
changeset
|
1202 |
default=False, |
f6d25ffc8b7f
configitems: register the 'web.collapse' config
Boris Feld <boris.feld@octobus.net>
parents:
34233
diff
changeset
|
1203 |
) |
34235
147104631eac
configitems: register the 'web.csp' config
Boris Feld <boris.feld@octobus.net>
parents:
34234
diff
changeset
|
1204 |
coreconfigitem('web', 'csp', |
147104631eac
configitems: register the 'web.csp' config
Boris Feld <boris.feld@octobus.net>
parents:
34234
diff
changeset
|
1205 |
default=None, |
147104631eac
configitems: register the 'web.csp' config
Boris Feld <boris.feld@octobus.net>
parents:
34234
diff
changeset
|
1206 |
) |
34236
9becd05476b8
configitems: register the 'web.deny_read' config
Boris Feld <boris.feld@octobus.net>
parents:
34235
diff
changeset
|
1207 |
coreconfigitem('web', 'deny_read', |
9becd05476b8
configitems: register the 'web.deny_read' config
Boris Feld <boris.feld@octobus.net>
parents:
34235
diff
changeset
|
1208 |
default=list, |
9becd05476b8
configitems: register the 'web.deny_read' config
Boris Feld <boris.feld@octobus.net>
parents:
34235
diff
changeset
|
1209 |
) |
34237
131f8cd2c2b4
configitems: register the 'web.descend' config
Boris Feld <boris.feld@octobus.net>
parents:
34236
diff
changeset
|
1210 |
coreconfigitem('web', 'descend', |
131f8cd2c2b4
configitems: register the 'web.descend' config
Boris Feld <boris.feld@octobus.net>
parents:
34236
diff
changeset
|
1211 |
default=True, |
131f8cd2c2b4
configitems: register the 'web.descend' config
Boris Feld <boris.feld@octobus.net>
parents:
34236
diff
changeset
|
1212 |
) |
34238
a6c18628dff1
configitems: register the 'web.description' config
Boris Feld <boris.feld@octobus.net>
parents:
34237
diff
changeset
|
1213 |
coreconfigitem('web', 'description', |
a6c18628dff1
configitems: register the 'web.description' config
Boris Feld <boris.feld@octobus.net>
parents:
34237
diff
changeset
|
1214 |
default="", |
a6c18628dff1
configitems: register the 'web.description' config
Boris Feld <boris.feld@octobus.net>
parents:
34237
diff
changeset
|
1215 |
) |
34239
344fd1fe237b
configitems: register the 'web.encoding' config
Boris Feld <boris.feld@octobus.net>
parents:
34238
diff
changeset
|
1216 |
coreconfigitem('web', 'encoding', |
344fd1fe237b
configitems: register the 'web.encoding' config
Boris Feld <boris.feld@octobus.net>
parents:
34238
diff
changeset
|
1217 |
default=lambda: encoding.encoding, |
344fd1fe237b
configitems: register the 'web.encoding' config
Boris Feld <boris.feld@octobus.net>
parents:
34238
diff
changeset
|
1218 |
) |
34240
c97a750c28a5
configitems: register the 'web.errorlog' config
Boris Feld <boris.feld@octobus.net>
parents:
34239
diff
changeset
|
1219 |
coreconfigitem('web', 'errorlog', |
c97a750c28a5
configitems: register the 'web.errorlog' config
Boris Feld <boris.feld@octobus.net>
parents:
34239
diff
changeset
|
1220 |
default='-', |
c97a750c28a5
configitems: register the 'web.errorlog' config
Boris Feld <boris.feld@octobus.net>
parents:
34239
diff
changeset
|
1221 |
) |
34241
98fa9183de54
configitems: register the 'web.ipv6' config
Boris Feld <boris.feld@octobus.net>
parents:
34240
diff
changeset
|
1222 |
coreconfigitem('web', 'ipv6', |
98fa9183de54
configitems: register the 'web.ipv6' config
Boris Feld <boris.feld@octobus.net>
parents:
34240
diff
changeset
|
1223 |
default=False, |
98fa9183de54
configitems: register the 'web.ipv6' config
Boris Feld <boris.feld@octobus.net>
parents:
34240
diff
changeset
|
1224 |
) |
34590
95f4e5b1ec92
configitems: register the 'web.maxchanges' config
Boris Feld <boris.feld@octobus.net>
parents:
34589
diff
changeset
|
1225 |
coreconfigitem('web', 'maxchanges', |
95f4e5b1ec92
configitems: register the 'web.maxchanges' config
Boris Feld <boris.feld@octobus.net>
parents:
34589
diff
changeset
|
1226 |
default=10, |
95f4e5b1ec92
configitems: register the 'web.maxchanges' config
Boris Feld <boris.feld@octobus.net>
parents:
34589
diff
changeset
|
1227 |
) |
34589
883d06211973
configitems: register the 'web.maxfiles' config
Boris Feld <boris.feld@octobus.net>
parents:
34588
diff
changeset
|
1228 |
coreconfigitem('web', 'maxfiles', |
883d06211973
configitems: register the 'web.maxfiles' config
Boris Feld <boris.feld@octobus.net>
parents:
34588
diff
changeset
|
1229 |
default=10, |
883d06211973
configitems: register the 'web.maxfiles' config
Boris Feld <boris.feld@octobus.net>
parents:
34588
diff
changeset
|
1230 |
) |
34588
0d9928a67254
configitems: register the 'web.maxshortchanges' config
Boris Feld <boris.feld@octobus.net>
parents:
34587
diff
changeset
|
1231 |
coreconfigitem('web', 'maxshortchanges', |
0d9928a67254
configitems: register the 'web.maxshortchanges' config
Boris Feld <boris.feld@octobus.net>
parents:
34587
diff
changeset
|
1232 |
default=60, |
0d9928a67254
configitems: register the 'web.maxshortchanges' config
Boris Feld <boris.feld@octobus.net>
parents:
34587
diff
changeset
|
1233 |
) |
34587
b50c036494dc
configitems: register the 'web.motd' config
Boris Feld <boris.feld@octobus.net>
parents:
34586
diff
changeset
|
1234 |
coreconfigitem('web', 'motd', |
b50c036494dc
configitems: register the 'web.motd' config
Boris Feld <boris.feld@octobus.net>
parents:
34586
diff
changeset
|
1235 |
default='', |
b50c036494dc
configitems: register the 'web.motd' config
Boris Feld <boris.feld@octobus.net>
parents:
34586
diff
changeset
|
1236 |
) |
34586
c364f3f73634
configitems: register the 'web.name' config
Boris Feld <boris.feld@octobus.net>
parents:
34585
diff
changeset
|
1237 |
coreconfigitem('web', 'name', |
c364f3f73634
configitems: register the 'web.name' config
Boris Feld <boris.feld@octobus.net>
parents:
34585
diff
changeset
|
1238 |
default=dynamicdefault, |
c364f3f73634
configitems: register the 'web.name' config
Boris Feld <boris.feld@octobus.net>
parents:
34585
diff
changeset
|
1239 |
) |
34242
e2d633f8ee65
configitems: register the 'web.port' config
Boris Feld <boris.feld@octobus.net>
parents:
34241
diff
changeset
|
1240 |
coreconfigitem('web', 'port', |
e2d633f8ee65
configitems: register the 'web.port' config
Boris Feld <boris.feld@octobus.net>
parents:
34241
diff
changeset
|
1241 |
default=8000, |
e2d633f8ee65
configitems: register the 'web.port' config
Boris Feld <boris.feld@octobus.net>
parents:
34241
diff
changeset
|
1242 |
) |
34243
d24816dfdcff
configitems: register the 'web.prefix' config
Boris Feld <boris.feld@octobus.net>
parents:
34242
diff
changeset
|
1243 |
coreconfigitem('web', 'prefix', |
d24816dfdcff
configitems: register the 'web.prefix' config
Boris Feld <boris.feld@octobus.net>
parents:
34242
diff
changeset
|
1244 |
default='', |
d24816dfdcff
configitems: register the 'web.prefix' config
Boris Feld <boris.feld@octobus.net>
parents:
34242
diff
changeset
|
1245 |
) |
34585
f28c85e29afc
configitems: register the 'web.push_ssl' config
Boris Feld <boris.feld@octobus.net>
parents:
34584
diff
changeset
|
1246 |
coreconfigitem('web', 'push_ssl', |
f28c85e29afc
configitems: register the 'web.push_ssl' config
Boris Feld <boris.feld@octobus.net>
parents:
34584
diff
changeset
|
1247 |
default=True, |
f28c85e29afc
configitems: register the 'web.push_ssl' config
Boris Feld <boris.feld@octobus.net>
parents:
34584
diff
changeset
|
1248 |
) |
34244
fe5202bef5ce
configitems: register the 'web.refreshinterval' config
Boris Feld <boris.feld@octobus.net>
parents:
34243
diff
changeset
|
1249 |
coreconfigitem('web', 'refreshinterval', |
fe5202bef5ce
configitems: register the 'web.refreshinterval' config
Boris Feld <boris.feld@octobus.net>
parents:
34243
diff
changeset
|
1250 |
default=20, |
fe5202bef5ce
configitems: register the 'web.refreshinterval' config
Boris Feld <boris.feld@octobus.net>
parents:
34243
diff
changeset
|
1251 |
) |
34759
cd7bf9ad0e69
configitems: register the 'web.staticurl' config
Boris Feld <boris.feld@octobus.net>
parents:
34751
diff
changeset
|
1252 |
coreconfigitem('web', 'staticurl', |
cd7bf9ad0e69
configitems: register the 'web.staticurl' config
Boris Feld <boris.feld@octobus.net>
parents:
34751
diff
changeset
|
1253 |
default=None, |
cd7bf9ad0e69
configitems: register the 'web.staticurl' config
Boris Feld <boris.feld@octobus.net>
parents:
34751
diff
changeset
|
1254 |
) |
34245
945c9816ec1d
configitems: register the 'web.stripes' config
Boris Feld <boris.feld@octobus.net>
parents:
34244
diff
changeset
|
1255 |
coreconfigitem('web', 'stripes', |
945c9816ec1d
configitems: register the 'web.stripes' config
Boris Feld <boris.feld@octobus.net>
parents:
34244
diff
changeset
|
1256 |
default=1, |
945c9816ec1d
configitems: register the 'web.stripes' config
Boris Feld <boris.feld@octobus.net>
parents:
34244
diff
changeset
|
1257 |
) |
34246
db63872e10cc
configitems: register the 'web.style' config
Boris Feld <boris.feld@octobus.net>
parents:
34245
diff
changeset
|
1258 |
coreconfigitem('web', 'style', |
db63872e10cc
configitems: register the 'web.style' config
Boris Feld <boris.feld@octobus.net>
parents:
34245
diff
changeset
|
1259 |
default='paper', |
db63872e10cc
configitems: register the 'web.style' config
Boris Feld <boris.feld@octobus.net>
parents:
34245
diff
changeset
|
1260 |
) |
34247
95f80c095804
configitems: register the 'web.templates' config
Boris Feld <boris.feld@octobus.net>
parents:
34246
diff
changeset
|
1261 |
coreconfigitem('web', 'templates', |
95f80c095804
configitems: register the 'web.templates' config
Boris Feld <boris.feld@octobus.net>
parents:
34246
diff
changeset
|
1262 |
default=None, |
95f80c095804
configitems: register the 'web.templates' config
Boris Feld <boris.feld@octobus.net>
parents:
34246
diff
changeset
|
1263 |
) |
34584
bf2389b1f15e
configitems: register the 'web.view' config
Boris Feld <boris.feld@octobus.net>
parents:
34575
diff
changeset
|
1264 |
coreconfigitem('web', 'view', |
bf2389b1f15e
configitems: register the 'web.view' config
Boris Feld <boris.feld@octobus.net>
parents:
34575
diff
changeset
|
1265 |
default='served', |
bf2389b1f15e
configitems: register the 'web.view' config
Boris Feld <boris.feld@octobus.net>
parents:
34575
diff
changeset
|
1266 |
) |
33474
c514b4fb5e27
configitems: register the 'worker.backgroundclose' config
Boris Feld <boris.feld@octobus.net>
parents:
33473
diff
changeset
|
1267 |
coreconfigitem('worker', 'backgroundclose', |
c514b4fb5e27
configitems: register the 'worker.backgroundclose' config
Boris Feld <boris.feld@octobus.net>
parents:
33473
diff
changeset
|
1268 |
default=dynamicdefault, |
c514b4fb5e27
configitems: register the 'worker.backgroundclose' config
Boris Feld <boris.feld@octobus.net>
parents:
33473
diff
changeset
|
1269 |
) |
33234
b62d13506860
configitems: gather comment related to 'worker.backgroundclosemaxqueue'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33233
diff
changeset
|
1270 |
# Windows defaults to a limit of 512 open files. A buffer of 128 |
b62d13506860
configitems: gather comment related to 'worker.backgroundclosemaxqueue'
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33233
diff
changeset
|
1271 |
# should give us enough headway. |
33230
5dcbd2045dcb
configitems: register the 'worker.backgroundclosemaxqueue' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33229
diff
changeset
|
1272 |
coreconfigitem('worker', 'backgroundclosemaxqueue', |
5dcbd2045dcb
configitems: register the 'worker.backgroundclosemaxqueue' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33229
diff
changeset
|
1273 |
default=384, |
5dcbd2045dcb
configitems: register the 'worker.backgroundclosemaxqueue' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33229
diff
changeset
|
1274 |
) |
33231
d19804c16710
configitems: register the 'worker.backgroundcloseminfilecount' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33230
diff
changeset
|
1275 |
coreconfigitem('worker', 'backgroundcloseminfilecount', |
d19804c16710
configitems: register the 'worker.backgroundcloseminfilecount' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33230
diff
changeset
|
1276 |
default=2048, |
d19804c16710
configitems: register the 'worker.backgroundcloseminfilecount' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33230
diff
changeset
|
1277 |
) |
33232
4531a967e7f1
configitems: register the 'worker.backgroundclosethreadcount' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33231
diff
changeset
|
1278 |
coreconfigitem('worker', 'backgroundclosethreadcount', |
4531a967e7f1
configitems: register the 'worker.backgroundclosethreadcount' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33231
diff
changeset
|
1279 |
default=4, |
4531a967e7f1
configitems: register the 'worker.backgroundclosethreadcount' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33231
diff
changeset
|
1280 |
) |
35431
471918fa7f46
workers: add config to enable/diable workers
Wojciech Lis <wlis@fb.com>
parents:
35388
diff
changeset
|
1281 |
coreconfigitem('worker', 'enabled', |
471918fa7f46
workers: add config to enable/diable workers
Wojciech Lis <wlis@fb.com>
parents:
35388
diff
changeset
|
1282 |
default=True, |
471918fa7f46
workers: add config to enable/diable workers
Wojciech Lis <wlis@fb.com>
parents:
35388
diff
changeset
|
1283 |
) |
33233
c9849bec227a
configitems: register the 'worker.numcpus' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33232
diff
changeset
|
1284 |
coreconfigitem('worker', 'numcpus', |
c9849bec227a
configitems: register the 'worker.numcpus' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33232
diff
changeset
|
1285 |
default=None, |
c9849bec227a
configitems: register the 'worker.numcpus' config
Pierre-Yves David <pierre-yves.david@octobus.net>
parents:
33232
diff
changeset
|
1286 |
) |
34831
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1287 |
|
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1288 |
# Rebase related configuration moved to core because other extension are doing |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1289 |
# strange things. For example, shelve import the extensions to reuse some bit |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1290 |
# without formally loading it. |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1291 |
coreconfigitem('commands', 'rebase.requiredest', |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1292 |
default=False, |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1293 |
) |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1294 |
coreconfigitem('experimental', 'rebaseskipobsolete', |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1295 |
default=True, |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1296 |
) |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1297 |
coreconfigitem('rebase', 'singletransaction', |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1298 |
default=False, |
44c4ed4ad032
configitems: move rebase config into core
Boris Feld <boris.feld@octobus.net>
parents:
34828
diff
changeset
|
1299 |
) |
35388
dd11df900f7f
rebase: replace --inmemory flag with rebase.experimental.inmemory config
Phil Cohen <phillco@fb.com>
parents:
35287
diff
changeset
|
1300 |
coreconfigitem('rebase', 'experimental.inmemory', |
dd11df900f7f
rebase: replace --inmemory flag with rebase.experimental.inmemory config
Phil Cohen <phillco@fb.com>
parents:
35287
diff
changeset
|
1301 |
default=False, |
dd11df900f7f
rebase: replace --inmemory flag with rebase.experimental.inmemory config
Phil Cohen <phillco@fb.com>
parents:
35287
diff
changeset
|
1302 |
) |