bca8cd3c20e688debb4576e7689a99795bb240c2
[utils] / crawler / kissweb / WebRoot / WEB-INF / overview.jsp
1
2 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
3 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
4
5 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
6 <html>
7   <head>
8     <title>KiSS Crawler overview page</title>
9     
10     <meta http-equiv="pragma" content="no-cache">
11     <meta http-equiv="cache-control" content="no-cache">
12     <meta http-equiv="expires" content="0">
13     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
14     <meta http-equiv="description" content="This is my page">
15     
16     <!--
17     <link rel="stylesheet" type="text/css" href="styles.css">
18     -->
19   </head>
20   
21   <body>
22     <h1>KiSS Crawler Overview</h1>
23     
24     <TABLE border="1">
25       <tr>
26         <td>
27            Currently running:
28         </td>
29         <td>
30            <c:out value="${running}"/>
31         </td>
32       </tr>
33       <tr>
34         <td>
35           Last executed at:
36         </td>
37         <td>
38           <c:out value="${lastExecuted}"/>
39         </td>
40       </tr>
41       <tr>
42         <td>
43           Last result: 
44         </td>
45         <td>
46           <c:out value="${lastResult}"/>
47         </td>
48       </tr>
49       <tr>
50         <td>
51           Last message: 
52         </td>
53         <td>
54           <c:out value="${lastMessage}" escapeXml="false"/>
55         </td>
56       </tr>
57     </TABLE>
58     <c:if test="${!running}">
59     <FORM action="runnow">
60       <INPUT type="submit" name="runnow" value="Run Crawler as soon as possible">
61     </FORM>
62     </c:if>
63   </body>
64 </html>