Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Stryker2018-01-25 18:11:24 +0000
committerRob Stryker2018-01-25 18:11:24 +0000
commit932502c1094bdefdc463690b2292589b72f0cae4 (patch)
treeb958d9097b645946999f9b1f0e3eb33ad94d84b3 /core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/otherActions.jsp
parenta3b4f57ca16c1d8b05dd04e23e374ca080d2f2f1 (diff)
downloadwebtools.webservices-932502c1094bdefdc463690b2292589b72f0cae4.tar.gz
webtools.webservices-932502c1094bdefdc463690b2292589b72f0cae4.tar.xz
webtools.webservices-932502c1094bdefdc463690b2292589b72f0cae4.zip
Move all files into core subdirectory
Signed-off-by: Rob Stryker <rob@oxbeef.net>
Diffstat (limited to 'core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/otherActions.jsp')
-rw-r--r--core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/otherActions.jsp55
1 files changed, 55 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/otherActions.jsp b/core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/otherActions.jsp
new file mode 100644
index 000000000..dde615688
--- /dev/null
+++ b/core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/otherActions.jsp
@@ -0,0 +1,55 @@
+<%
+/*******************************************************************************
+ * Copyright (c) 2001, 2004 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+%>
+
+<%@ page contentType="text/html; charset=UTF-8" import="org.eclipse.wst.ws.internal.explorer.platform.perspective.*,
+ org.eclipse.wst.ws.internal.explorer.platform.constants.*" %>
+
+<jsp:useBean id="controller" class="org.eclipse.wst.ws.internal.explorer.platform.perspective.Controller" scope="session"/>
+<jsp:useBean id="currentToolManagerHash" class="java.util.Hashtable" scope="request"/>
+<%
+ ToolManager currentToolManager = (ToolManager)currentToolManagerHash.get(ActionInputs.CURRENT_TOOL_MANAGER);
+ int numberOfTools = currentToolManager.getNumberOfTools();
+ if (numberOfTools > 1)
+ {
+%>
+<table>
+ <tr>
+ <td height=20>&nbsp;</td>
+ </tr>
+</table>
+<table width="95%" border=0 cellpadding=3 cellspacing=0>
+ <tr>
+ <td>
+ <strong><%=controller.getMessage("ALT_OTHER_ACTIONS")%></strong>
+ </td>
+ </tr>
+ <tr>
+ <td height=20> <img height=2 width="100%" align="top" src="<%=response.encodeURL(controller.getPathWithContext("images/keyline.gif"))%>" alt=""> </td>
+ </tr>
+</table>
+<table>
+<%
+ for (int i=1;i<numberOfTools;i++)
+ {
+ Tool t = currentToolManager.getTool(i);
+%>
+ <tr>
+ <td><a href="<%=response.encodeURL(controller.getPathWithContext(t.getSelectToolActionHref(false)))%>" target="<%=t.getSelectToolActionTarget()%>"><%=t.getAltText()%></a></td>
+ </tr>
+<%
+ }
+%>
+</table>
+<%
+ }
+%>

Back to the top