<%@ page import="org.opencms.workplace.explorer.*" %><% CmsNewResource wp = new CmsNewResource(pageContext, request, response); switch (wp.getAction()) { case CmsNewResource.ACTION_NEWFORM: //////////////////// ACTION: show the form to specify the resource name and the edit properties checkbox wp.setParamAction(wp.DIALOG_SUBMITFORM); %><%= wp.htmlStart("help.explorer.new.file") %> <%= wp.bodyStart("dialog") %> <%= wp.dialogStart() %> <%= wp.dialogContentStart(wp.getParamTitle()) %>
<%= wp.paramsAsHidden() %>
<%= wp.key(Messages.GUI_RESOURCE_NAME_0) %>
   <%= wp.key(Messages.GUI_NEWFILE_EDITPROPERTIES_0) %>
<%= wp.dialogSpacer() %>
<%= wp.dialogContentEnd() %> <%= wp.dialogButtonsNextCancel("id=\"nextButton\" disabled=\"disabled\"", null) %>
<%= wp.dialogEnd() %> <%= wp.bodyEnd() %> <%= wp.htmlEnd() %> <% break; default: wp.displayDialog(); } //////////////////// end of switch statement %>