📄 indexsource-overview.jsp
字号:
<%@ page import="org.opencms.workplace.tools.searchindex.*, org.opencms.jsp.CmsJspActionElement, org.opencms.workplace.CmsWidgetDialog, org.opencms.workplace.list.A_CmsListDialog" %>
<%
CmsJspActionElement actionElement = new CmsJspActionElement(pageContext, request, response);
CmsWidgetDialog wpWidget = new CmsOverviewIndexSourceDialog(actionElement);
// perform the widget actions
wpWidget.displayDialog(true);
if (wpWidget.isForwarded()) {
return;
}
// Document types list
A_CmsListDialog listDoctypes = new CmsDocumentTypeList(actionElement);
// perform the list actions
listDoctypes.displayDialog(true);
// Search resources list
A_CmsListDialog listResources = new CmsSearchResourcesList(actionElement);
// perform the list actions
listResources.displayDialog(true);
// write the content of widget dialog
wpWidget.writeDialog();
// write the content of list dialogs
listDoctypes.writeDialog();
listResources.writeDialog();
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -