# HG changeset patch # User Yuya Nishihara # Date 1520515236 -32400 # Node ID 543afbdc8e591e7271f19e96ca08f3bd924083dc # Parent f0a851542a0596b6746bf44a5aa12ecd189a0a25 templater: move function table to the "context" object Prepares for splitting template functions from templater.py. diff -r f0a851542a05 -r 543afbdc8e59 mercurial/templater.py --- a/mercurial/templater.py Sun Mar 11 16:29:54 2018 -0700 +++ b/mercurial/templater.py Thu Mar 08 22:20:36 2018 +0900 @@ -493,8 +493,8 @@ filt = context._filters[n] arg = compileexp(exp[1], context, methods) return (runfilter, (arg, filt)) - if n in funcs: - f = funcs[n] + if n in context._funcs: + f = context._funcs[n] args = _buildfuncargs(exp[1], context, methods, n, f._argspec) return (f, args) raise error.ParseError(_("unknown function '%s'") % n) @@ -595,8 +595,8 @@ def buildfunc(exp, context): n = getsymbol(exp[1]) - if n in funcs: - f = funcs[n] + if n in context._funcs: + f = context._funcs[n] args = _buildfuncargs(exp[2], context, exprmethods, n, f._argspec) return (f, args) if n in context._filters: @@ -1376,6 +1376,7 @@ if filters is None: filters = {} self._filters = filters + self._funcs = funcs # make this a parameter if needed if defaults is None: defaults = {} if resources is None: