| | |
| | | import org.apache.wicket.markup.html.link.BookmarkablePageLink;
|
| | |
|
| | | import com.gitblit.utils.StringUtils;
|
| | | import com.gitblit.wicket.CacheControl;
|
| | | import com.gitblit.wicket.CacheControl.LastModified;
|
| | | import com.gitblit.wicket.WicketUtils;
|
| | | import com.gitblit.wicket.panels.LogPanel;
|
| | |
|
| | | @CacheControl(LastModified.REPOSITORY)
|
| | | public class LogPage extends RepositoryPage {
|
| | |
|
| | | public LogPage(PageParameters params) {
|
| | |
| | | protected String getPageName() {
|
| | | return getString("gb.log");
|
| | | }
|
| | |
|
| | | @Override
|
| | | protected boolean isCommitPage() {
|
| | | return true;
|
| | | }
|
| | |
|
| | | }
|