| | |
| | | DataView<DailyLogEntry> pushView = new DataView<DailyLogEntry>("change", dp) {
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | @Override
|
| | | public void populateItem(final Item<DailyLogEntry> logItem) {
|
| | | final DailyLogEntry change = logItem.getModelObject();
|
| | | String fullRefName = change.getChangedRefs().get(0);
|
| | |
| | | DataView<RepositoryCommit> commitsView = new DataView<RepositoryCommit>("commit", cdp) {
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | @Override
|
| | | public void populateItem(final Item<RepositoryCommit> commitItem) {
|
| | | final RepositoryCommit commit = commitItem.getModelObject();
|
| | |
|