| | |
| | | WicketUtils.newPathParameter(submodulePath, submoduleId,
|
| | | "")).setEnabled(hasSubmodule));
|
| | | links.add(new BookmarkablePageLink<Void>("history", HistoryPage.class,
|
| | | WicketUtils.newPathParameter(submodulePath, submoduleId,
|
| | | "")).setEnabled(hasSubmodule));
|
| | | WicketUtils.newPathParameter(repositoryName, entry.commitId,
|
| | | entry.path)));
|
| | | links.add(new CompressedDownloadsPanel("compressedLinks", baseUrl,
|
| | | submodulePath, submoduleId, "").setEnabled(hasSubmodule));
|
| | | item.add(links);
|
| | | } else {
|
| | | // blob link
|
| | | String displayPath = entry.path;
|
| | | String displayPath = entry.name;
|
| | | String path = entry.path;
|
| | | if (entry.isSymlink()) {
|
| | | path = JGitUtils.getStringContent(getRepository(), getCommit().getTree(), path);
|
| | | displayPath = entry.path + " -> " + path;
|
| | | displayPath = entry.name + " -> " + path;
|
| | | }
|
| | | item.add(WicketUtils.getFileImage("pathIcon", entry.name));
|
| | | item.add(new Label("pathSize", byteFormat.format(entry.size)));
|