| | |
| | | import com.gitblit.models.SubmoduleModel;
|
| | | import com.gitblit.utils.ByteFormat;
|
| | | import com.gitblit.utils.JGitUtils;
|
| | | import com.gitblit.wicket.CacheControl;
|
| | | import com.gitblit.wicket.CacheControl.LastModified;
|
| | | import com.gitblit.wicket.WicketUtils;
|
| | | import com.gitblit.wicket.panels.CommitHeaderPanel;
|
| | | import com.gitblit.wicket.panels.CompressedDownloadsPanel;
|
| | | import com.gitblit.wicket.panels.LinkPanel;
|
| | | import com.gitblit.wicket.panels.PathBreadcrumbsPanel;
|
| | |
|
| | | @CacheControl(LastModified.BOOT)
|
| | | public class TreePage extends RepositoryPage {
|
| | |
|
| | | public TreePage(PageParameters params) {
|
| | |
| | | private static final long serialVersionUID = 1L;
|
| | | int counter;
|
| | |
|
| | | @Override
|
| | | public void populateItem(final Item<PathModel> item) {
|
| | | PathModel entry = item.getModelObject();
|
| | | item.add(new Label("pathPermissions", JGitUtils.getPermissionsFromMode(entry.mode)));
|
| | |
| | | entry.path)));
|
| | | links.add(new BookmarkablePageLink<Void>("history", HistoryPage.class,
|
| | | WicketUtils.newPathParameter(repositoryName, entry.commitId,
|
| | | entry.path))); |
| | | entry.path)));
|
| | | links.add(new CompressedDownloadsPanel("compressedLinks", baseUrl,
|
| | | repositoryName, objectId, entry.path));
|
| | |
|
| | | item.add(links);
|
| | | } else if (entry.isSubmodule()) {
|
| | | // submodule
|
| | | String submoduleId = entry.objectId; |
| | | String submoduleId = entry.objectId;
|
| | | String submodulePath;
|
| | | boolean hasSubmodule = false;
|
| | | SubmoduleModel submodule = getSubmodule(entry.path);
|
| | | submodulePath = submodule.gitblitPath;
|
| | | hasSubmodule = submodule.hasSubmodule;
|
| | | |
| | |
|
| | | item.add(WicketUtils.newImage("pathIcon", "git-orange-16x16.png"));
|
| | | item.add(new Label("pathSize", ""));
|
| | | item.add(new LinkPanel("pathName", "list", entry.name + " @ " + |
| | | item.add(new LinkPanel("pathName", "list", entry.name + " @ " +
|
| | | getShortObjectId(submoduleId), TreePage.class,
|
| | | WicketUtils.newPathParameter(submodulePath, submoduleId, "")).setEnabled(hasSubmodule));
|
| | | |
| | |
|
| | | Fragment links = new Fragment("pathLinks", "submoduleLinks", this);
|
| | | links.add(new BookmarkablePageLink<Void>("view", SummaryPage.class,
|
| | | WicketUtils.newRepositoryParameter(submodulePath)).setEnabled(hasSubmodule));
|
| | |
| | | entry.path)));
|
| | | links.add(new CompressedDownloadsPanel("compressedLinks", baseUrl,
|
| | | submodulePath, submoduleId, "").setEnabled(hasSubmodule));
|
| | | item.add(links); |
| | | item.add(links);
|
| | | } else {
|
| | | // blob link
|
| | | String displayPath = entry.name;
|