Mercurial > public > mercurial-scm > hg
comparison mercurial/extensions.py @ 29162:5a3197cbe415
hgcia: remove hgcia (BC)
As discussed at:
https://www.mercurial-scm.org/pipermail/mercurial-devel/2016-March/081018.html,
cia service is down for years. It also uses socket.setdefaulttimeout() which
will break chg. This patch removes the extension.
author | Jun Wu <quark@fb.com> |
---|---|
date | Thu, 12 May 2016 01:03:19 +0100 |
parents | 4b81487a01d4 |
children | 7d88fde2309f |
comparison
equal
deleted
inserted
replaced
29161:f8b274df33dc | 29162:5a3197cbe415 |
---|---|
23 | 23 |
24 _extensions = {} | 24 _extensions = {} |
25 _aftercallbacks = {} | 25 _aftercallbacks = {} |
26 _order = [] | 26 _order = [] |
27 _builtin = set(['hbisect', 'bookmarks', 'parentrevspec', 'progress', 'interhg', | 27 _builtin = set(['hbisect', 'bookmarks', 'parentrevspec', 'progress', 'interhg', |
28 'inotify']) | 28 'inotify', 'hgcia']) |
29 | 29 |
30 def extensions(ui=None): | 30 def extensions(ui=None): |
31 if ui: | 31 if ui: |
32 def enabled(name): | 32 def enabled(name): |
33 for format in ['%s', 'hgext.%s']: | 33 for format in ['%s', 'hgext.%s']: |