Comments
Patch
@@ -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