From patchwork Wed Dec 17 00:02:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [7,of,7] templatekw: remove unneeded showtags From: Sean Farley X-Patchwork-Id: 7134 Message-Id: To: mercurial-devel@selenic.com Date: Tue, 16 Dec 2014 16:02:01 -0800 # HG changeset patch # User Sean Farley # Date 1418665202 28800 # Mon Dec 15 09:40:02 2014 -0800 # Node ID afc6a00471fda3a8f3f17824b5ff4d2beb723924 # Parent 957096b720f355369f56ceebd088a11b7ed37ebc templatekw: remove unneeded showtags Now that we have the machinery of namespaces in-place, we use that instead of hand-rolling our own template function. diff --git a/mercurial/templatekw.py b/mercurial/templatekw.py --- a/mercurial/templatekw.py +++ b/mercurial/templatekw.py @@ -372,14 +372,10 @@ def showsubrepos(**args): for sub in psubstate: if sub not in substate: subrepos.append(sub) # removed in ctx return showlist('subrepo', sorted(subrepos), **args) -def showtags(**args): - """:tags: List of strings. Any tags associated with the changeset.""" - return showlist('tag', args['ctx'].tags(), **args) - def shownames(namespace, **args): """helper method to generate a template keyword for a namespace""" ctx = args['ctx'] repo = ctx._repo names = repo.names.names(repo, namespace, ctx.node()) @@ -422,11 +418,10 @@ keywords = { 'p2node': showp2node, 'phase': showphase, 'phaseidx': showphaseidx, 'rev': showrev, 'subrepos': showsubrepos, - 'tags': showtags, } def _showparents(**args): """:parents: List of strings. The parents of the changeset in "rev:node" format. If the changeset has only one "natural" parent (the predecessor