Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/extensions.py @ 18629:013fcd112f13
extensions: obsolete and remove interhg extension
With the addition of the websub filter extension this extension is no longer
needed. We maintain a sort of backwards compatibility by reading the [interhg]
section and using it as we would use the [websub] section.
author | Angel Ezquerra <angel.ezquerra@gmail.com> |
---|---|
date | Sat, 09 Feb 2013 11:00:42 +0100 |
parents | 1b2b727a885f |
children | af4387d8d1c7 |
comparison
equal
deleted
inserted
replaced
18628:52305554fd6e | 18629:013fcd112f13 |
---|---|
9 import util, cmdutil, error | 9 import util, cmdutil, error |
10 from i18n import _, gettext | 10 from i18n import _, gettext |
11 | 11 |
12 _extensions = {} | 12 _extensions = {} |
13 _order = [] | 13 _order = [] |
14 _ignore = ['hbisect', 'bookmarks', 'parentrevspec'] | 14 _ignore = ['hbisect', 'bookmarks', 'parentrevspec', 'interhg'] |
15 | 15 |
16 def extensions(): | 16 def extensions(): |
17 for name in _order: | 17 for name in _order: |
18 module = _extensions[name] | 18 module = _extensions[name] |
19 if module: | 19 if module: |