| | |
| | | add(new Label("commitid"));
|
| | | add(new Label("author"));
|
| | | add(new Label("date"));
|
| | | add(new Label("authorAvatar"));
|
| | | }
|
| | |
|
| | | public CommitHeaderPanel(String id, String repositoryName, RevCommit c) {
|
| | |
| | | add(new Label("commitid", c.getName()));
|
| | | add(new Label("author", c.getAuthorIdent().getName()));
|
| | | add(WicketUtils.createDateLabel("date", c.getAuthorIdent().getWhen(), getTimeZone(), getTimeUtils()));
|
| | | add(new GravatarImage("authorAvatar", c.getAuthorIdent()));
|
| | | add(new AvatarImage("authorAvatar", c.getAuthorIdent()));
|
| | | }
|
| | | } |