comparison hgext/children.py @ 10152:56284451a22c

Added support for templatevar "footer" to cmdutil.py
author Robert Bachmann <rbachm@gmail.com>
date Mon, 28 Dec 2009 17:55:52 +0100
parents d6d811d90976
children d6512b3e9ac0
comparison
equal deleted inserted replaced
10151:c7355a0e1f39 10152:56284451a22c
31 ctx = repo[rev] 31 ctx = repo[rev]
32 32
33 displayer = cmdutil.show_changeset(ui, repo, opts) 33 displayer = cmdutil.show_changeset(ui, repo, opts)
34 for cctx in ctx.children(): 34 for cctx in ctx.children():
35 displayer.show(cctx) 35 displayer.show(cctx)
36 36 displayer.close()
37 37
38 cmdtable = { 38 cmdtable = {
39 "children": 39 "children":
40 (children, 40 (children,
41 [('r', 'rev', '', _('show children of the specified revision')), 41 [('r', 'rev', '', _('show children of the specified revision')),