blob: a546513cb7da5a9503cb21ae62e4499e496c3074 [file] [log] [blame]
<%--
Copyright (c) 2011, 2018 IBM Corporation and others.
This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-2.0/
SPDX-License-Identifier: EPL-2.0
Contributors:
IBM Corporation - initial API and implementation
--%>
<%@ page import="org.eclipse.help.internal.webapp.data.*" errorPage="/advanced/err.jsp" contentType="text/html; charset=UTF-8"%>
<%
SearchData data = new ScopeSavingSearchData(application, request, response);
String workingSet = request.getParameter("workingSet");
String args = "?searchWord=" + data.getSearchWord();
if (workingSet != null) {
args += "&workingSet=" + workingSet;
}
%>
<html lang="<%=ServletResources.getString("locale", request)%>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><%=ServletResources.getString("Loading", request)%></title>
<script type="text/javascript">
function onloadHandler() {
location.href="advanced/searchScoped.jsp<%=UrlUtil.JavaScriptEncode(args)%>";
}
</script>
</head>
<body onload="onloadHandler()">
</body>
</html>