index.jsp
来自「cms是开源的框架」· JSP 代码 · 共 18 行
JSP
18 行
<%@ page import="org.opencms.workplace.commons.*,org.opencms.workplace.comparison.*" %>
<%
// initialize the widget dialog
CmsFileInfoDialog wpWidget = new CmsFileInfoDialog(pageContext, request, response);
// perform the widget actions
wpWidget.displayDialog(true);
if (wpWidget.isForwarded()) {
return;
}
// initialize the list dialog
CmsHistoryList wpList = new CmsHistoryList(wpWidget.getJsp());
// perform the list actions
wpList.displayDialog(true);
// write the content of widget dialog
wpWidget.writeDialog();
// write the content of list dialog
wpList.writeDialog();
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?