equal
deleted
inserted
replaced
1608 if self.ui.quiet: |
1608 if self.ui.quiet: |
1609 self.ui.write("%s\n" % scmutil.formatchangeid(ctx), |
1609 self.ui.write("%s\n" % scmutil.formatchangeid(ctx), |
1610 label='log.node') |
1610 label='log.node') |
1611 return |
1611 return |
1612 |
1612 |
1613 date = util.datestr(ctx.date()) |
|
1614 |
|
1615 # i18n: column positioning for "hg log" |
1613 # i18n: column positioning for "hg log" |
1616 self.ui.write(_("changeset: %s\n") % scmutil.formatchangeid(ctx), |
1614 self.ui.write(_("changeset: %s\n") % scmutil.formatchangeid(ctx), |
1617 label=_changesetlabels(ctx)) |
1615 label=_changesetlabels(ctx)) |
1618 |
1616 |
1619 # branches are shown first before any other names due to backwards |
1617 # branches are shown first before any other names due to backwards |
1654 label='ui.debug log.manifest') |
1652 label='ui.debug log.manifest') |
1655 # i18n: column positioning for "hg log" |
1653 # i18n: column positioning for "hg log" |
1656 self.ui.write(_("user: %s\n") % ctx.user(), |
1654 self.ui.write(_("user: %s\n") % ctx.user(), |
1657 label='log.user') |
1655 label='log.user') |
1658 # i18n: column positioning for "hg log" |
1656 # i18n: column positioning for "hg log" |
1659 self.ui.write(_("date: %s\n") % date, |
1657 self.ui.write(_("date: %s\n") % util.datestr(ctx.date()), |
1660 label='log.date') |
1658 label='log.date') |
1661 |
1659 |
1662 if ctx.isunstable(): |
1660 if ctx.isunstable(): |
1663 # i18n: column positioning for "hg log" |
1661 # i18n: column positioning for "hg log" |
1664 instabilities = ctx.instabilities() |
1662 instabilities = ctx.instabilities() |