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/ProxyLoadContent.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/ProxyLoadContent.jsp')
-rw-r--r--core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/ProxyLoadContent.jsp74
1 files changed, 74 insertions, 0 deletions
diff --git a/core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/ProxyLoadContent.jsp b/core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/ProxyLoadContent.jsp
new file mode 100644
index 000000000..6d6693755
--- /dev/null
+++ b/core/bundles/org.eclipse.wst.ws.explorer/wsexplorer/forms/ProxyLoadContent.jsp
@@ -0,0 +1,74 @@
+<%
+/*******************************************************************************
+ * 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.*" %>
+
+<%
+ String sessionId = request.getParameter(ActionInputs.SESSIONID);
+ Controller controller;
+ StringBuffer targetContentLink = new StringBuffer(request.getParameter(ActionInputs.TARGET_PAGE));
+ if (sessionId != null)
+ {
+ HttpSession currentSession = (HttpSession)application.getAttribute(sessionId);
+ controller = (Controller)currentSession.getAttribute("controller");
+ if (targetContentLink.toString().indexOf("?") != -1)
+ targetContentLink.append('&');
+ else
+ targetContentLink.append('?');
+ targetContentLink.append(ActionInputs.SESSIONID).append('=').append(sessionId);
+ }
+ else
+ controller = (Controller)session.getAttribute("controller");
+
+%>
+<!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">
+ <title><%=controller.getMessage("FORM_TITLE_PAGE_LOADER")%></title>
+ <link rel="stylesheet" type="text/css" href="<%=response.encodeURL(controller.getPathWithContext("css/windows.css"))%>">
+<script language="javascript">
+ function loadContent()
+ {
+ var frameset = parent.document.getElementById("proxyPage");
+ var contentFrame = frameset.getElementsByTagName("frame").item(1);
+ contentFrame.src = "<%=response.encodeURL(controller.getPathWithContext(targetContentLink.toString()))%>";
+ }
+
+ function handleCompletion()
+ {
+ var table = document.getElementsByTagName("table").item(0);
+ var tBody = table.getElementsByTagName("TBODY").item(0);
+ var doneRow = document.createElement("tr");
+ var doneColumn = document.createElement("td");
+ doneColumn.appendChild(document.createTextNode("Page loaded."));
+ doneRow.appendChild(doneColumn);
+ tBody.appendChild(doneRow);
+ }
+</script>
+</head>
+<body dir="<%=org.eclipse.wst.ws.internal.explorer.platform.util.DirUtils.getDir()%>" class="contentbodymargin">
+ <div id="contentborder">
+ <table>
+ <tr>
+ <td class="labels">
+ <%=controller.getMessage("MSG_LOAD_IN_PROGRESS")%>
+ </td>
+ </tr>
+ </table>
+ </div>
+<script language="javascript">
+ loadContent();
+</script>
+</body>
+</html>

Back to the top