Web services status checking servlets, new clustalo x32 binary from Fabian, other...
[jabaws.git] / statpages / MonthlySummary.jsp
1 <%--\r
2 Author: Peter Troshin\r
3 Date: May 2011\r
4 --%>\r
5 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>\r
6 <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>\r
7 <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>\r
8 <%@ taglib uri="http://displaytag.sf.net" prefix="dt" %>\r
9 \r
10 <c:import url="header.jsp" >\r
11         <c:param name="title">JABAWS Usage Statistics</c:param>\r
12 </c:import>  \r
13 \r
14 <div style="margin: 20px ">  \r
15 \r
16 <h1>JABAWS Usage Statistics</h1>\r
17 <table class="center its" style="width: 600px "> \r
18 <thead>\r
19 <tr>\r
20 <th rowspan="2">Month</th>\r
21 <th colspan="4" style="text-align: center">Number of Jobs</th>\r
22 </tr>\r
23 <tr>\r
24 <th title="Total number of jobs received">Total</th>\r
25 <th title="The number of jobs with no result">Incomplete</th>\r
26 <th title="The number of cancelled jobs">Cancelled</th>\r
27 <th title="The number of jobs started but not collected by the user">Abandoned</th>\r
28 </tr>\r
29 </thead>\r
30 <tbody>\r
31 \r
32 <c:forEach items="${stat}" var="monthTotal" varStatus="status">\r
33 <c:choose>\r
34         <c:when test="${status.count%2==0}">\r
35                 <tr class="even">\r
36         </c:when>\r
37         <c:otherwise>\r
38                 <tr class="odd">\r
39         </c:otherwise>\r
40 </c:choose>\r
41 \r
42 <td>\r
43 <c:choose>\r
44 <c:when test="${isAdmin}">\r
45   <a title="Click to view the detailed statistics for the period" href="DisplayStat?datetime=${monthTotal.key.time}"><fmt:formatDate value="${monthTotal.key}" type="date" pattern="MMM yyyy"/></a>\r
46 </c:when>\r
47 <c:otherwise>\r
48    <fmt:formatDate value="${monthTotal.key}" type="date" pattern="MMM yyyy"/>\r
49 </c:otherwise>\r
50 </c:choose>\r
51 \r
52 </td>\r
53 <td>${monthTotal.value.total}</td>\r
54 <td>${monthTotal.value.incomplete}</td>\r
55 <td>${monthTotal.value.cancelled}</td>\r
56 <td>${monthTotal.value.abandoned}</td>\r
57 </tr>\r
58 </c:forEach>\r
59 <tr style="font-weight: bolder;">\r
60 <td>Total:</td>\r
61 <td>${total.total}</td>\r
62 <td>${total.incomplete}</td>\r
63 <td>${total.cancelled}</td>\r
64 <td>${total.abandoned}</td>\r
65 </tr>\r
66 </tbody>\r
67 </table>\r
68 \r
69 <div style="width: 600px">\r
70 <h3>Help</h3>\r
71 <p>\r
72 The table contains the number of jobs processed by JABAWS per month, for the whole \r
73 period when the statistics was collected</p> \r
74 For each month the table contains the following information.  \r
75 <ul>\r
76         <li>The period of time for which statistics is displayed. For example Jan 2011 means period of time from the first of \r
77         January to the 31 of January.</li>\r
78         <li>Total - the total number of jobs accepted by JABAWS</li>\r
79         <li>Incomplete - the number of jobs for which the result file was not found or was empty excluding cancelled</li>\r
80         <li>Cancelled - the number of jobs cancelled by the user</li>\r
81         <li>Abandoned - the number of jobs which result(s) were not collected</li>\r
82 </ul>\r
83 The summary for each column is displayed in the last row of the table.\r
84 </div> <!-- Help text enclosing dev end -->\r
85 <c:if test="${!isAdmin}">\r
86 <br/><p><a href="AnnualStat">Please login as administrator</a> to view the detailed statistics (<a href=man_stats.html#helpUsageStats>help</a>)</p>\r
87 </c:if>\r
88 \r
89 </div> <!-- page enclosing div end -->\r
90 <jsp:include page="footer.jsp" />