Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 27213:ccae1588117f
graphlog: move creation of workingdir-parent nodes to displaygraph()
Future patches will make a node symbol templatable. Because arguments of a
templatekw function are repo and ctx, "showparents" list will have to be
built from a repo object by that function.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sat, 14 Nov 2015 16:45:15 +0900 |
parents | 8d3c5797a175 |
children | 60af96494a76 |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Wed Nov 25 18:07:33 2015 +0800 +++ b/mercurial/cmdutil.py Sat Nov 14 16:45:15 2015 +0900 @@ -2159,8 +2159,9 @@ return revs, expr, filematcher -def displaygraph(ui, dag, displayer, showparents, edgefn, getrenamed=None, +def displaygraph(ui, repo, dag, displayer, edgefn, getrenamed=None, filematcher=None): + showparents = [ctx.node() for ctx in repo[None].parents()] seen, state = [], graphmod.asciistate() for rev, type, ctx, parents in dag: char = 'o' @@ -2202,9 +2203,8 @@ endrev = scmutil.revrange(repo, opts.get('rev')).max() + 1 getrenamed = templatekw.getrenamedfn(repo, endrev=endrev) displayer = show_changeset(ui, repo, opts, buffered=True) - showparents = [ctx.node() for ctx in repo[None].parents()] - displaygraph(ui, revdag, displayer, showparents, - graphmod.asciiedges, getrenamed, filematcher) + displaygraph(ui, repo, revdag, displayer, graphmod.asciiedges, getrenamed, + filematcher) def checkunsupportedgraphflags(pats, opts): for op in ["newest_first"]: