<%@ page import="org.opencms.workplace.commons.*" %><% // initialize the workplace class CmsEditPointer wp = new CmsEditPointer(pageContext, request, response); //////////////////// start of switch statement switch (wp.getAction()) { case CmsEditPointer.ACTION_CANCEL: //////////////////// ACTION: cancel button pressed wp.actionCloseDialog(); break; case CmsEditPointer.ACTION_OK: //////////////////// ACTION: main change link target action wp.actionChangeLinkTarget(); break; case CmsEditPointer.ACTION_DEFAULT: default: //////////////////// ACTION: show change link target dialog (default) wp.setParamAction(CmsEditPointer.DIALOG_OK); %><%= wp.htmlStart("help.explorer.new.link") %> <%= wp.bodyStart("dialog", null) %> <%= wp.dialogStart() %> <%= wp.dialogContentStart(wp.getParamTitle()) %> <%@ include file="includes/resourceinfo.txt" %> <%= wp.dialogSpacer() %>
<%= wp.paramsAsHidden() %>
<%= wp.key(Messages.GUI_EDIT_POINTER_LINK_URL_0) %>
<%= wp.dialogContentEnd() %> <%= wp.dialogButtonsOkCancel() %>
<%= wp.dialogEnd() %> <%= wp.bodyEnd() %> <%= wp.htmlEnd() %> <% } //////////////////// end of switch statement %>