%@ page import=" org.opencms.workplace.*, org.opencms.workplace.tools.searchindex.*, org.opencms.search.* "%><% // initialize the workplace class CmsIndexingReport wp = new CmsIndexingReport(pageContext, request, response); //////////////////// start of switch statement switch (wp.getAction()) { case CmsDialog.ACTION_CANCEL: //////////////////// ACTION: cancel button pressed wp.actionCloseDialog(); break; //////////////////// ACTION: other actions handled outside of this JSP case CmsDialog.ACTION_CONFIRMED: case CmsDialog.ACTION_REPORT_BEGIN: case CmsDialog.ACTION_REPORT_UPDATE: wp.actionReport(); break; //////////////////// ACTION: show start dialog case CmsDialog.ACTION_DEFAULT: case CmsDialog.ACTION_REPORT_END: default: wp.setParamAction(CmsDialog.DIALOG_CONFIRMED); %><%= wp.htmlStart() %> <%= wp.bodyStart("dialog") %> <%= wp.dialogStart() %> <%= wp.dialogContentStart(wp.getParamTitle()) %>
<%= wp.dialogEnd() %> <%= wp.bodyEnd() %> <%= wp.htmlEnd() %> <% } //////////////////// end of switch statement %>