equal
deleted
inserted
replaced
1131 label = 'branches.current' |
1131 label = 'branches.current' |
1132 |
1132 |
1133 fm.startitem() |
1133 fm.startitem() |
1134 fm.write('branch', '%s', tag, label=label) |
1134 fm.write('branch', '%s', tag, label=label) |
1135 rev = ctx.rev() |
1135 rev = ctx.rev() |
1136 padsize = max(31 - len(str(rev)) - encoding.colwidth(tag), 0) |
1136 padsize = max(31 - len("%d" % rev) - encoding.colwidth(tag), 0) |
1137 fmt = ' ' * padsize + ' %d:%s' |
1137 fmt = ' ' * padsize + ' %d:%s' |
1138 fm.condwrite(not ui.quiet, 'rev node', fmt, rev, hexfunc(ctx.node()), |
1138 fm.condwrite(not ui.quiet, 'rev node', fmt, rev, hexfunc(ctx.node()), |
1139 label='log.changeset changeset.%s' % ctx.phasestr()) |
1139 label='log.changeset changeset.%s' % ctx.phasestr()) |
1140 fm.context(ctx=ctx) |
1140 fm.context(ctx=ctx) |
1141 fm.data(active=isactive, closed=not isopen, current=current) |
1141 fm.data(active=isactive, closed=not isopen, current=current) |