| | |
| | | import org.apache.wicket.PageParameters;
|
| | | import org.apache.wicket.markup.html.basic.Label;
|
| | | import org.apache.wicket.markup.html.link.BookmarkablePageLink;
|
| | | import org.apache.wicket.markup.html.link.ExternalLink;
|
| | | import org.apache.wicket.markup.html.panel.Fragment;
|
| | | import org.eclipse.jgit.lib.Repository;
|
| | | import org.eclipse.jgit.revwalk.RevCommit;
|
| | |
|
| | | import com.gitblit.models.UserModel;
|
| | | import com.gitblit.servlet.RawServlet;
|
| | | import com.gitblit.utils.BugtraqProcessor;
|
| | | 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;
|
| | |
| | | super(params);
|
| | |
|
| | | final String path = WicketUtils.getPath(params).replace("%2f", "/").replace("%2F", "/");
|
| | | MarkupProcessor processor = new MarkupProcessor(app().settings());
|
| | |
|
| | | MarkupProcessor processor = new MarkupProcessor(app().settings(), app().xssFilter());
|
| | | UserModel currentUser = (GitBlitWebSession.get().getUser() != null) ? GitBlitWebSession.get().getUser() : UserModel.ANONYMOUS;
|
| | | final boolean userCanEdit = currentUser.canEdit(getRepositoryModel());
|
| | | |
| | | Repository r = getRepository();
|
| | | RevCommit commit = JGitUtils.getCommit(r, objectId);
|
| | | String [] encodings = getEncodings();
|
| | |
| | | }
|
| | | }
|
| | |
|
| | | if (markupText == null) {
|
| | | markupText = "";
|
| | | }
|
| | |
|
| | | BugtraqProcessor bugtraq = new BugtraqProcessor(app().settings());
|
| | | markupText = bugtraq.processText(getRepository(), repositoryName, markupText);
|
| | |
|
| | |
| | | }
|
| | |
|
| | | // document page links
|
| | | fragment.add(new BookmarkablePageLink<Void>("editLink", EditFilePage.class,
|
| | | WicketUtils.newPathParameter(repositoryName, objectId, documentPath))
|
| | | .setEnabled(userCanEdit));
|
| | | fragment.add(new BookmarkablePageLink<Void>("blameLink", BlamePage.class,
|
| | | WicketUtils.newPathParameter(repositoryName, objectId, documentPath)));
|
| | | fragment.add(new BookmarkablePageLink<Void>("historyLink", HistoryPage.class,
|
| | | WicketUtils.newPathParameter(repositoryName, objectId, documentPath)));
|
| | | fragment.add(new BookmarkablePageLink<Void>("rawLink", RawPage.class, WicketUtils.newPathParameter(
|
| | | repositoryName, objectId, documentPath)));
|
| | | String rawUrl = RawServlet.asLink(getContextUrl(), repositoryName, objectId, documentPath);
|
| | | fragment.add(new ExternalLink("rawLink", rawUrl));
|
| | |
|
| | | fragment.add(new Label("content", markupDoc.html).setEscapeModelStrings(false));
|
| | | add(fragment);
|
| | |
| | | }
|
| | |
|
| | | @Override
|
| | | protected boolean isCommitPage() {
|
| | | return true;
|
| | | }
|
| | |
|
| | | @Override
|
| | | protected Class<? extends BasePage> getRepoNavPageClass() {
|
| | | return DocsPage.class;
|
| | | }
|