| | |
| | | import org.apache.wicket.markup.repeater.Item;
|
| | | import org.apache.wicket.markup.repeater.data.DataView;
|
| | | import org.apache.wicket.markup.repeater.data.ListDataProvider;
|
| | | import org.apache.wicket.model.StringResourceModel;
|
| | | import org.eclipse.jgit.diff.DiffEntry.ChangeType;
|
| | | import org.eclipse.jgit.lib.Repository;
|
| | | import org.eclipse.jgit.revwalk.RevCommit;
|
| | |
|
| | | import com.gitblit.models.PathModel;
|
| | | import com.gitblit.models.UserModel;
|
| | | import com.gitblit.servlet.RawServlet;
|
| | | import com.gitblit.utils.ByteFormat;
|
| | | import com.gitblit.utils.JGitUtils;
|
| | | import com.gitblit.utils.StringUtils;
|
| | | import com.gitblit.wicket.CacheControl;
|
| | | import com.gitblit.wicket.GitBlitWebSession;
|
| | | import com.gitblit.wicket.CacheControl.LastModified;
|
| | | import com.gitblit.wicket.MarkupProcessor;
|
| | | import com.gitblit.wicket.MarkupProcessor.MarkupDocument;
|
| | |
| | | public DocsPage(PageParameters params) {
|
| | | super(params);
|
| | |
|
| | | MarkupProcessor processor = new MarkupProcessor(app().settings());
|
| | | String objectId = WicketUtils.getObject(params);
|
| | |
|
| | | MarkupProcessor processor = new MarkupProcessor(app().settings(), app().xssFilter());
|
| | |
|
| | | Repository r = getRepository();
|
| | | RevCommit head = JGitUtils.getCommit(r, null);
|
| | | UserModel currentUser = (GitBlitWebSession.get().getUser() != null) ? GitBlitWebSession.get().getUser() : UserModel.ANONYMOUS;
|
| | | final boolean userCanEdit = currentUser.canEdit(getRepositoryModel());
|
| | | |
| | | RevCommit head = JGitUtils.getCommit(r, objectId);
|
| | | final String commitId = getBestCommitId(head);
|
| | |
|
| | | List<String> extensions = processor.getAllExtensions();
|
| | | List<PathModel> paths = JGitUtils.getDocuments(r, extensions);
|
| | |
|
| | |
| | | @Override
|
| | | public void populateItem(final Item<MarkupDocument> item) {
|
| | | MarkupDocument doc = item.getModelObject();
|
| | | // document page links
|
| | | |
| | | item.add(new BookmarkablePageLink<Void>("editLink", EditFilePage.class,
|
| | | WicketUtils.newPathParameter(repositoryName, commitId, doc.documentPath))
|
| | | .setEnabled(userCanEdit));
|
| | | |
| | | // document page links |
| | | item.add(new BookmarkablePageLink<Void>("blameLink", BlamePage.class,
|
| | | WicketUtils.newPathParameter(repositoryName, commitId, doc.documentPath)));
|
| | | item.add(new BookmarkablePageLink<Void>("historyLink", HistoryPage.class,
|
| | |
| | | }
|
| | |
|
| | | // 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)));
|
| | | item.add(new BookmarkablePageLink<Void>("edit", EditFilePage.class, WicketUtils
|
| | | .newPathParameter(repositoryName, commitId, entry.path))
|
| | | .setEnabled(userCanEdit));
|
| | | 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++;
|
| | | }
|
| | |
| | | protected String getPageName() {
|
| | | return getString("gb.docs");
|
| | | }
|
| | |
|
| | | @Override
|
| | | protected boolean isCommitPage() {
|
| | | return true;
|
| | | }
|
| | |
|
| | | }
|