Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.ws.explorer/wsexplorer/wsexplorer.jsp')
-rw-r--r--bundles/org.eclipse.wst.ws.explorer/wsexplorer/wsexplorer.jsp98
1 files changed, 0 insertions, 98 deletions
diff --git a/bundles/org.eclipse.wst.ws.explorer/wsexplorer/wsexplorer.jsp b/bundles/org.eclipse.wst.ws.explorer/wsexplorer/wsexplorer.jsp
deleted file mode 100644
index de00c1334..000000000
--- a/bundles/org.eclipse.wst.ws.explorer/wsexplorer/wsexplorer.jsp
+++ /dev/null
@@ -1,98 +0,0 @@
-<%
-/*******************************************************************************
- * 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.*,
- org.eclipse.wst.ws.internal.explorer.*,
- org.eclipse.wst.ws.internal.explorer.platform.util.URLUtils,
- java.util.Enumeration,
- java.net.*,
- java.io.*"%>
-
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
-<html lang="<%=response.getLocale().getLanguage()%>">
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <script language="javascript">
- function initWindowName(name)
- {
- window.name = name;
- }
- </script>
- <%
- String sessionId = session.getId();
- %>
- <jsp:useBean id="controller" class="org.eclipse.wst.ws.internal.explorer.platform.perspective.Controller" scope="session">
- <%!
- private void resetController(ServletContext application,String sessionId,HttpSession session,HttpServletRequest request,Controller controller){
- // Add the session to the application. This allows us to resurrect the session even if the browser chooses not to participate.
- application.setAttribute(sessionId,session);
-
- // Set Max inactivity time out value to 30mins.
- session.setMaxInactiveInterval(1800);
-
- // LaunchOptionManager (below) handles most options,
- // but need to get state and install locations earlier,
- // specifically before controller.init().
- Enumeration paramNames = request.getParameterNames();
- while (paramNames.hasMoreElements())
- {
- String paramName = (String)paramNames.nextElement();
- String[] paramValues = request.getParameterValues(paramName);
- if (paramValues != null && paramValues.length > 0)
- {
- String decodedParamName = URLUtils.decode(paramName);
- if (decodedParamName.equals(LaunchOptions.DEFAULT_FAVORITES_LOCATION))
- {
- controller.setDefaultFavoritesLocation(paramValues[0]);
- }
- else if (decodedParamName.equals(LaunchOptions.STATE_LOCATION))
- {
- controller.setStateLocation(paramValues[0]);
- }
- }
- }
-
- // controller.init()
- controller.init(sessionId,application,request.getContextPath());
- }
- %>
- <%//resetController(application,sessionId,session,request,controller);%>
- </jsp:useBean>
- <%
- // Check if session Controller needs to be re-initialized
- if (controller.getSessionId()==null){
- resetController(application,sessionId,session,request,controller);
- }
-
- // preload from LaunchOptionManager
- String key = request.getParameter(URLUtils.encode(WSExplorerContext.ID));
- if (key != null && key.length() > 0)
- {
- LaunchOptionsManager manager = LaunchOptionsManager.getInstance();
- manager.manage(key, sessionId, application);
- }
-
- %>
- <jsp:include page="/actionengine.jsp" flush="true"/>
- <title><%=controller.getMessage("TITLE_WSEXPLORER")%></title>
-</head>
-<%
-// reset perspective content to blank
-controller.enablePerspectiveContentBlank(true);
-%>
-<frameset rows="0,35,*" border=0 onload="initWindowName('<%=FrameNames.WINDOW_NAME_WSEXPLORER_JSP%>')">
- <frame name="<%=FrameNames.PERSPECTIVE_WORKAREA%>" title="<%=controller.getMessage("FRAME_TITLE_PERSPECTIVE_WORKAREA")%>" frameborder=0 noresize>
- <frame name="<%=FrameNames.PERSPECTIVE_TOOLBAR%>" title="<%=controller.getMessage("FRAME_TITLE_PERSPECTIVE_TOOLBAR")%>" src="<%=response.encodeURL(controller.getPathWithContext("perspective_toolbar.jsp"))%>" marginwidth=0 marginheight=0 scrolling="no" frameborder=0 noresize>
- <frame name="<%=FrameNames.PERSPECTIVE_CONTENT%>" title="<%=controller.getMessage("FRAME_TITLE_PERSPECTIVE_CONTENT")%>" src="<%=response.encodeURL(controller.getPathWithContext("perspective_content.jsp"))%>" marginwidth=0 marginheight=0 scrolling="no" frameborder=0>
-</frameset>
-</html>

Back to the top