templater: introduce unified filter syntax for unary functions
"filter(expr)" is allowed already. This patch adds the opposite, "expr|func".
--- a/mercurial/templater.py Sat Jul 04 15:59:03 2015 +0900
+++ b/mercurial/templater.py Sat Jul 04 16:03:36 2015 +0900
@@ -252,6 +252,9 @@
if n in context._filters:
filt = context._filters[n]
return (runfilter, (func, data, filt))
+ if n in funcs:
+ f = funcs[n]
+ return (f, [(func, data)])
raise error.ParseError(_("unknown function '%s'") % n)
def runfilter(context, mapping, data):
--- a/tests/test-command-template.t Sat Jul 04 15:59:03 2015 +0900
+++ b/tests/test-command-template.t Sat Jul 04 16:03:36 2015 +0900
@@ -3117,6 +3117,8 @@
e777603221
bcc7ff960b
f7769ec2ab
+ $ hg log --template '{node|shortest}\n' -l1
+ e777
Test pad function