adding all of botlist, initial add
[botlist.git] / openbotlist / WEB-INF / jsps / search / global_search.jsp
blob748fce835f5d277bd4ffc1b1ecfc437b7297432e
1 <%@ page contentType="text/html"%>
2 <%@include file="/WEB-INF/jsps/general/default_includes.jsp" %>
3 <%@include file="/WEB-INF/jsps/general/default_doc_type.jsp" %>
4 <html xmlns="http://www.w3.org/1999/xhtml">
5 <head>
6 <title><c:out value="${command.searchTerm}" /> (Botverse - Search Results)</title>
8 <META NAME="DESCRIPTION" CONTENT="BotList - Search Results">
9 <META NAME="keywords" CONTENT="listing, bot, botlist, botlisting, bot's list, list, ads, advertising">
11 <link type="application/rss+xml" rel="alternate" title="Botverse - Link Listings" href="<c:url value="/spring/botverse/rss/botverse_rss.html" />">
13 <link href="<c:url value="/company/stylesheets/scaffold.css" />" media="screen" rel="Stylesheet" type="text/css" />
14 <link href="<c:url value="/company/stylesheets/newspirit.css" />" media="screen" rel="Stylesheet" type="text/css" />
15 <link href="<c:url value="/company/stylesheets/botlist.css" />" media="screen" rel="Stylesheet" type="text/css" />
17 <style type="text/css">
18 <%@include file="/WEB-INF/jsps/general/botverse_link_css.jsp" %>
19 </style>
21 <script type="text/javascript">
23 function submitForm(operation, linkid) {
24 var theForm = document.forms[0];
25 theForm.ratingId.value = linkid;
26 theForm.operation.value = operation;
27 theForm.submit();
30 </script>
33 </head>
34 <body>
36 <div id="body_content_center">
38 <div style="border-bottom: 1px solid #816943;">
39 <img src="<c:url value="/company/images/building_orange_roof.jpg" />">
40 </div>
41 <h1 class="bot_titlelogo">Botverse - Interesting things online | Post Popular Links, it is ok!</h1>
43 <%-- Navigation Header --%>
44 <%@include file="/WEB-INF/jsps/general/default_navigation.jsp" %>
45 <%-- End of Navigation Header --%>
47 <div style="margin: 10px;">
49 <%-- Add Welcome user message and login content (above content border line) --%>
50 <%@include file="/WEB-INF/jsps/general/botverse_profile_nav.jsp" %>
51 <%-- End of Welcome Header --%>
53 <div style="border: 1px solid #DDD; padding: 10px; margin-right: 10px;">
54 <!-- Display the error message -->
55 <div class="bot_profile_sect_add_link ">
57 <p>
58 <!-- Begin Search Form -->
59 <form method="get" action="<c:url value="/spring/search/global_search.html" />" name="newsearch">
60 <table>
61 <tr>
62 <td>
63 <input name="query" size="26" />
64 </td>
65 <td>
66 <input type="submit" value=" Search " />
67 </td>
68 </tr>
69 </table>
70 <input type="hidden" name="querymode" value="enabled" />
71 </form>
72 <!-- End of Form -->
74 <table class="linklist_data" cellspacing="2" cellpadding="0">
75 <c:forEach items="${command.listings}" var="listing" varStatus="status">
76 <tr>
77 <td colspan="3">
78 <a class="linklist_objlinks" href="<c:url value="${listing.mainUrl}" />" >
79 <c:out value="${listing.urlTitle}" />
80 </a>
81 <%-- Add custom tag here, find hostname --%>
82 <span class="linklist_comments_host">
83 &nbsp;(<botlistutil:hostname value="${listing.mainUrl}" />)
84 </span>
85 </td>
86 </tr>
87 <tr>
88 <td>
89 <!-- == Keywords == -->
90 <span class="linklist_keywords">
91 <b>relevancy</b>=<c:out value="${listing.searchScore}" />
92 </span>
93 </td>
94 </tr>
95 </c:forEach>
96 </table>
97 </div>
99 </div>
101 </div>
103 <%@include file="/WEB-INF/jsps/general/default_footer.jsp"%>
104 </div>
106 <%-- Debug, how long to process page --%>
107 <div style="font-size: 10px; color: #888;text-align: right">
108 <i>(process in <c:out value="${processingtime}" />s)</i>
109 </div>
111 </body>
112 </html>