blob: f40a0bd027723bc5b50c4f7635f1e22e92f3cd87 [file] [log] [blame]
<%--
Copyright (c) 2000, 2010 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
--%>
<%@ include file="header.jsp"%>
<%
SearchData data = new SearchData(application, request, response);
WebappPreferences prefs = data.getPrefs();
LayoutData ldata = new LayoutData(application,request, response);
%>
<html lang="<%=ServletResources.getString("locale", request)%>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
<%
if (data.isProgressRequest()) {
%>
<meta HTTP-EQUIV="REFRESH" CONTENT="2;URL=<%="searchView.jsp?"+UrlUtil.htmlEncode(request.getQueryString())%>">
<%
}
%>
<title><%=ServletResources.getString("SearchResults", request)%></title>
<base target="ContentViewFrame">
</head>
<body dir="<%=direction%>" bgcolor="<%=prefs.getBasicViewBackground()%>">
<%
if (data.isProgressRequest()) {
%>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<%=ServletResources.getString("Indexing", request)%>
</td>
</tr>
<tr>
<td>
<%=data.getIndexedPercentage()%>% <%=ServletResources.getString("complete", request)%>
</td>
</tr>
<tr>
<td>
<br>
<%=ServletResources.getString("IndexingPleaseWait", request)%>
</td>
</tr>
</table>
</body>
</html>
<%
return;
} else {
%>
<%@ include file="advanced.inc"%>
<%
if (data.isSearchRequest()) {
if (data.getResultsCount() == 0){
out.write(ServletResources.getString("Nothing_found", request));
} else {
%>
<table border="0" cellpadding="0" cellspacing="0">
<%
//boolean disabledSearchResults = false;
for (int topic = 0; topic < data.getResultsCount(); topic++){
// if(!data.isEnabled(topic)){
// continue;
// }
%>
<tr>
<td align='<%=isRTL?"left":"right"%>'><img src="<%=prefs.getImagesDirectory()%>/topic.gif" alt=""/></td>
<td align='<%=isRTL?"right":"left"%>' nowrap>
&nbsp;
<a <%=("a"+topic).equals(data.getSelectedTopicId())?" name=\"selectedItem\" ":""%>
href='<%=UrlUtil.htmlEncode(data.getTopicHref(topic))%>'
title="<%=UrlUtil.htmlEncode(data.getTopicTocLabel(topic))%>">
<%=UrlUtil.htmlEncode(data.getTopicLabel(topic))%>
</a>
</td>
</tr>
<%
}
%>
</table>
<%
}
}
}
%>
</body>
</html>