| | |
| | | public class ShortLogPage extends RepositoryPage {
|
| | |
|
| | | public ShortLogPage(PageParameters params) {
|
| | | super(params, "shortlog");
|
| | | super(params);
|
| | |
|
| | | Repository r = getRepository();
|
| | | final Map<ObjectId, List<String>> allRefs = JGitUtils.getAllRefs(r);
|
| | | List<RevCommit> commits = JGitUtils.getRevLog(r, 100);
|
| | | r.close();
|
| | |
|
| | | // shortlog
|
| | | add(new LinkPanel("summary", "title", repositoryName, SummaryPage.class, newRepositoryParameter()));
|
| | |
| | | // footer
|
| | | addFooter();
|
| | | }
|
| | | |
| | | @Override
|
| | | protected String getPageName() {
|
| | | return "shortlog";
|
| | | }
|
| | | }
|