<%@ page session="false" buffer="none" import="java.util.*,org.opencms.search.*,org.opencms.frontend.templateone.*,org.opencms.util.*" %><%-- This is the search code page. --%><% // initialise the template bean CmsTemplateSearch cms = new CmsTemplateSearch(pageContext, request, response); // include the template head cms.includeWithPageUri("head"); %><%-- --%><%-- --%><% search.init(cms.getCmsObject()); search.setMatchesPerPage(10); search.setQueryLength(3); search.setDisplayPages(11); %><%-- --%><%-- --%>

<%= cms.buildSearchHeadline() %>

" onsubmit="return parseSearchQuery(document.forms['searchform'], '<%= cms.key("search.error.wordlength") %>');"> " class="formbutton" />
 <% if (cms.isSearchAllDisplayed()) { %>
> <%= cms.key("search.text.all") %><% } %>
 

<% // get the search results for the page List result = cms.getSearchResults(search); out.print(cms.buildSearchErrorMessages(search, result)); if (result != null && result.size() > 0) { // show the result list out.print(cms.buildSearchResultList(result)); // show the links to other result pages out.print(cms.buildSearchLinks(search)); } %>
<% // include the template head cms.includeWithPageUri("foot"); %>