Corrected timestamp on activity panel from author time to committer time
| | |
| | | return commit.getAuthorIdent();
|
| | | }
|
| | |
|
| | | public PersonIdent getCommitterIdent() {
|
| | | return commit.getCommitterIdent();
|
| | | }
|
| | |
|
| | | @Override
|
| | | public boolean equals(Object o) {
|
| | | if (o instanceof RepositoryCommit) {
|
| | |
| | | final RepositoryCommit commit = item.getModelObject();
|
| | | Fragment fragment = new Fragment("commit", "commitFragment", this);
|
| | |
|
| | | // time of day
|
| | | fragment.add(WicketUtils.createTimeLabel("time", commit.getAuthorIdent()
|
| | | // commit time of day
|
| | | fragment.add(WicketUtils.createTimeLabel("time", commit.getCommitterIdent()
|
| | | .getWhen(), getTimeZone()));
|
| | |
|
| | | // avatar
|