lib/repos/index.jsView |
---|
509 | 509 … | .push({name: m[2], value: c.refs[name]}) |
510 | 510 … | } |
511 | 511 … | var numObjects = c.objects ? Object.keys(c.objects).length : 0 |
512 | 512 … | |
513 | | - var dateStr = new Date(msg.value.timestamp).toLocaleString(req._locale) |
| 513 … | + const dateStr = u.dateLocaleString(new Date(msg.value.timestamp), req._locale) |
514 | 514 … | |
515 | 515 … | this.web.about.getName(msg.value.author, function (err, name) { |
516 | 516 … | if (err) return cb(err) |
517 | 517 … | cb(null, '<section class="collapse">' + |
638 | 638 … | '</span>' + |
639 | 639 … | '<span class="float-right">' + |
640 | 640 … | req._t('LatestOn', { |
641 | 641 … | commitId: commitId && commitId.slice(0, 7), |
642 | | - date: commit[actor].date.toLocaleString(req._locale) |
| 642 … | + date: u.dateLocaleString(commit[actor].date, req._locale) |
643 | 643 … | }) + |
644 | 644 … | '</span>' |
645 | 645 … | ) |
646 | 646 … | }) |
762 | 762 … | '<h4>' + u.linkify(u.escape(commit.title)) + '</h4>' + |
763 | 763 … | (commit.body ? u.linkify(u.pre(commit.body)) : '') + |
764 | 764 … | (commit.separateAuthor ? req._t('AuthoredOn', { |
765 | 765 … | name: u.escape(commit.author.name), |
766 | | - date: commit.author.date.toLocaleString(req._locale) |
| 766 … | + date: u.dateLocaleString(commit.author.date, req._locale) |
767 | 767 … | }) + '<br/>' : '') + |
768 | 768 … | req._t('CommittedOn', { |
769 | 769 … | name: u.escape(commit.committer.name), |
770 | | - date: commit.committer.date.toLocaleString(req._locale) |
| 770 … | + date: u.dateLocaleString(commit.committer.date, req._locale) |
771 | 771 … | }) + '<br/>' + |
772 | 772 … | commit.parents.map(function (id) { |
773 | 773 … | return req._t('Parent') + ': ' + |
774 | 774 … | u.link([repo.id, 'commit', id], id) |