hgext: use templatekeyword to mark a function as template keyword
This patch replaces registration of template keyword function in
bundled extensions by registrar.templatekeyword decorator all at once.
--- a/hgext/convert/__init__.py Sun Mar 13 05:17:06 2016 +0900
+++ b/hgext/convert/__init__.py Sun Mar 13 05:17:06 2016 +0900
@@ -11,7 +11,7 @@
from mercurial import (
cmdutil,
- templatekw,
+ registrar,
)
from mercurial.i18n import _
@@ -437,22 +437,22 @@
return subversion.revsplit(rev)[0]
return rev
+templatekeyword = registrar.templatekeyword()
+
+@templatekeyword('svnrev')
def kwsvnrev(repo, ctx, **args):
- """:svnrev: String. Converted subversion revision number."""
+ """String. Converted subversion revision number."""
return kwconverted(ctx, 'svnrev')
+@templatekeyword('svnpath')
def kwsvnpath(repo, ctx, **args):
- """:svnpath: String. Converted subversion revision project path."""
+ """String. Converted subversion revision project path."""
return kwconverted(ctx, 'svnpath')
+@templatekeyword('svnuuid')
def kwsvnuuid(repo, ctx, **args):
- """:svnuuid: String. Converted subversion revision repository identifier."""
+ """String. Converted subversion revision repository identifier."""
return kwconverted(ctx, 'svnuuid')
-def extsetup(ui):
- templatekw.keywords['svnrev'] = kwsvnrev
- templatekw.keywords['svnpath'] = kwsvnpath
- templatekw.keywords['svnuuid'] = kwsvnuuid
-
# tell hggettext to extract docstrings from these functions:
i18nfunctions = [kwsvnrev, kwsvnpath, kwsvnuuid]
--- a/hgext/transplant.py Sun Mar 13 05:17:06 2016 +0900
+++ b/hgext/transplant.py Sun Mar 13 05:17:06 2016 +0900
@@ -32,7 +32,6 @@
revlog,
revset,
scmutil,
- templatekw,
util,
)
@@ -726,14 +725,16 @@
return revset.baseset([r for r in s if
repo[r].extra().get('transplant_source')])
+templatekeyword = registrar.templatekeyword()
+
+@templatekeyword('transplanted')
def kwtransplanted(repo, ctx, **args):
- """:transplanted: String. The node identifier of the transplanted
+ """String. The node identifier of the transplanted
changeset if any."""
n = ctx.extra().get('transplant_source')
return n and nodemod.hex(n) or ''
def extsetup(ui):
- templatekw.keywords['transplanted'] = kwtransplanted
cmdutil.unfinishedstates.append(
['transplant/journal', True, False, _('transplant in progress'),
_("use 'hg transplant --continue' or 'hg update' to abort")])