blob: 0ca7c97e53b7191685df102c422baa82e18f84c6 [file] [log] [blame]
<%--
Copyright (c) 2000, 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
--%>
<%@ include file="header.jsp"%>
<%
SearchData data = new SearchData(application, request, response);
WebappPreferences prefs = data.getPrefs();
%>
<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">
<title><%=ServletResources.getString("SearchResults", request)%></title>
<style type="text/css">
<%@ include file="searchList.css"%>
</style>
<base target="ContentViewFrame">
<script type="text/javascript" src="utils.js"></script>
<script type="text/javascript" src="list.js"></script>
<script type="text/javascript" src="view.js"></script>
<script type="text/javascript">
var cookiesRequired = "<%=UrlUtil.JavaScriptEncode(ServletResources.getString("cookiesRequired", request))%>";
var showCategories = <%=data.isShowCategories()%>;
var scope ="<%=UrlUtil.JavaScriptEncode(data.getScope())%>";
function refresh() {
window.location.replace("searchView.jsp?<%=UrlUtil.JavaScriptEncode(request.getQueryString())%>");
}
function isShowDescriptions() {
var value = getCookie("showDescriptions");
return value ? value == "true" : true;
}
function setShowCategories(value) {
parent.searchToolbarFrame.setButtonState("show_categories", value);
var searchWord = "<%=UrlUtil.JavaScriptEncode(data.getSearchWord())%>";
window.location="searchView.jsp?searchWord=" + encodeURIComponent(searchWord)
+ "&showSearchCategories=" + value +
"&scope=" + encodeURIComponent(scope);
}
function setShowDescriptions(value) {
setCookie("showDescriptions", value);
var newValue = isShowDescriptions();
parent.searchToolbarFrame.setButtonState("show_descriptions", newValue);
if (value != newValue) {
alert(cookiesRequired);
} else {
setCSSRule(".description", "display", value ? "block" : "none");
}
}
function toggleShowCategories() {
setShowCategories(!showCategories);
}
function toggleShowDescriptions() {
setShowDescriptions(!isShowDescriptions());
}
function onShow() {
}
</script>
</head>
<body dir="<%=direction%>">
<%
String preResults = data.getPreProcessorResults();
if (!preResults.equals(""))
{
out.write(preResults);
out.write("<HR/>");
}
if (!data.isSearchRequest()) {
out.write(ServletResources.getString("doSearch", request));
} else if (data.getQueryExceptionMessage()!=null) {
out.write(data.getQueryExceptionMessage());
} else if (data.isProgressRequest()) {
%>
<CENTER>
<TABLE BORDER='0'>
<TR><TD><%=ServletResources.getString("Indexing", request)%></TD></TR>
<TR><TD ALIGN='<%=isRTL?"RIGHT":"LEFT"%>'>
<DIV STYLE='width:100px;height:16px;border:1px solid ThreeDShadow;'>
<DIV ID='divProgress' STYLE='width:<%=data.getIndexedPercentage()%>px;height:100%;background-color:Highlight'></DIV>
</DIV>
</TD></TR>
<TR><TD><%=data.getIndexedPercentage()%>% <%=ServletResources.getString("complete", request)%></TD></TR>
<TR><TD><br><%=ServletResources.getString("IndexingPleaseWait", request)%></TD></TR>
</TABLE>
</CENTER>
<script language='JavaScript'>
setTimeout('refresh()', 2000);
</script>
</body>
</html>
<%
return;
} else if (data.getResultsCount() == 0){
out.write(UrlUtil.htmlEncode(data.getNotFoundMessage()));
if (data.isScopeActive()) {
%>
<a class="showall" onclick="showAll();" ><%=ServletResources.getString("showAllLink", request)%></a>
<%
}
} else { // data.getResultsCount() != 0
%>
<p><b><%=UrlUtil.htmlEncode(data.getMatchesInScopeMessage())%></b>
<%
if (data.isScopeActive()) {
%>
&nbsp;<a class="showall" onclick="showAll();" ><%=ServletResources.getString("showAllLink", request)%></a>
<%
} else {
%>
&nbsp;<a class="showall" onclick="rescope();" ><%=ServletResources.getString("changeScopeLink", request)%></a>
<%
}
%>
</p>
<table class="results" cellspacing='0'>
<%
String oldCat = null;
for (int topic = 0; topic < data.getResultsCount(); topic++)
{
if(data.isActivityFiltering() && !data.isEnabled(topic)){
continue;
}
String cat = data.getCategoryLabel(topic);
if (data.isShowCategories() && cat != null
&& (oldCat == null || !oldCat.equals(cat))) {
%>
</table>
<table class="category" cellspacing='0'>
<tr class='list' id='r<%=topic%>c'>
<td>
<a href="<%=UrlUtil.htmlEncode(data.getCategoryHref(topic))%>"
id="a<%=topic%>c"'
class="link"
onmouseover="showStatus(event);return true;"
onmouseout="clearStatus();return true;">
<%=UrlUtil.htmlEncode(cat)%>
</a>
</td>
</tr>
</table>
<table class="results" cellspacing='0'>
<%
oldCat = cat;
}
%>
<tr class='list' id='r<%=topic%>'>
<td class='icon'>
<%
boolean isPotentialHit = data.isPotentialHit(topic);
if (isPotentialHit) {
%>
<img src="<%=prefs.getImagesDirectory()%>/d_topic.gif" alt=""/>
<%
}
else {
%>
<img src="<%=prefs.getImagesDirectory()%>/topic.gif" alt=""/>
<%
}
%>
</td>
<td align='<%=isRTL?"right":"left"%>'>
<a class='link' id='a<%=topic%>'
href="<%=UrlUtil.htmlEncode(data.getTopicHref(topic))%>"
onmouseover="showStatus(event);return true;"
onmouseout="clearStatus();return true;"
title="<%=data.getTopicTocLabel(topic)%>">
<%
String label = null;
if (isPotentialHit) {
label = ServletResources.getString("PotentialHit", data.getTopicLabel(topic), request);
}
else {
label = data.getTopicLabel(topic);
}
%>
<%=label%></a>
</td>
</tr>
<%
String desc = data.getTopicDescription(topic);
if (desc!=null) {
%>
<tr id='d<%=topic%>'>
<td class='icon'>
</td>
<td align='<%=isRTL?"right":"left"%>'>
<div class="description">
<%=desc%>
</div>
</td>
</tr>
<%
}
}
%>
</table>
<%
}
%>
<script type="text/javascript">
selectTopicById('<%=UrlUtil.JavaScriptEncode(data.getSelectedTopicId())%>');
</script>
</body>
</html>