| | |
| | | public DocsPage(PageParameters params) {
|
| | | super(params);
|
| | |
|
| | | String objectId = WicketUtils.getObject(params);
|
| | |
|
| | | MarkupProcessor processor = new MarkupProcessor(app().settings(), app().xssFilter());
|
| | |
|
| | | Repository r = getRepository();
|
| | | RevCommit head = JGitUtils.getCommit(r, null);
|
| | | RevCommit head = JGitUtils.getCommit(r, objectId);
|
| | | final String commitId = getBestCommitId(head);
|
| | |
|
| | | List<String> extensions = processor.getAllExtensions();
|
| | | List<PathModel> paths = JGitUtils.getDocuments(r, extensions);
|
| | |
|
| | |
| | | }
|
| | |
|
| | | // document list
|
| | | final String id = getBestCommitId(head);
|
| | | final ByteFormat byteFormat = new ByteFormat();
|
| | | Fragment docs = new Fragment("documents", "documentsFragment", this);
|
| | | ListDataProvider<PathModel> pathsDp = new ListDataProvider<PathModel>(paths);
|
| | |
| | | item.add(WicketUtils.newImage("docIcon", "file_world_16x16.png"));
|
| | | item.add(new Label("docSize", byteFormat.format(entry.size)));
|
| | | item.add(new LinkPanel("docName", "list", StringUtils.stripFileExtension(entry.name),
|
| | | DocPage.class, WicketUtils.newPathParameter(repositoryName, id, entry.path)));
|
| | | DocPage.class, WicketUtils.newPathParameter(repositoryName, commitId, entry.path)));
|
| | |
|
| | | // links
|
| | | item.add(new BookmarkablePageLink<Void>("view", DocPage.class, WicketUtils
|
| | | .newPathParameter(repositoryName, id, entry.path)));
|
| | | String rawUrl = RawServlet.asLink(getContextUrl(), repositoryName, id, entry.path);
|
| | | .newPathParameter(repositoryName, commitId, entry.path)));
|
| | | String rawUrl = RawServlet.asLink(getContextUrl(), repositoryName, commitId, entry.path);
|
| | | item.add(new ExternalLink("raw", rawUrl));
|
| | | item.add(new BookmarkablePageLink<Void>("blame", BlamePage.class, WicketUtils
|
| | | .newPathParameter(repositoryName, id, entry.path)));
|
| | | .newPathParameter(repositoryName, commitId, entry.path)));
|
| | | item.add(new BookmarkablePageLink<Void>("history", HistoryPage.class, WicketUtils
|
| | | .newPathParameter(repositoryName, id, entry.path)));
|
| | | .newPathParameter(repositoryName, commitId, entry.path)));
|
| | | WicketUtils.setAlternatingBackground(item, counter);
|
| | | counter++;
|
| | | }
|