/[projects]/android/TrainInfoService/WebContent/statistics.jsp
ViewVC logotype

Diff of /android/TrainInfoService/WebContent/statistics.jsp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 712 by torben, Thu May 6 12:21:57 2010 UTC revision 965 by torben, Wed Jul 7 11:50:34 2010 UTC
# Line 2  Line 2 
2      pageEncoding="UTF-8"%>      pageEncoding="UTF-8"%>
3  <%@ page import="java.util.Date" %>  <%@ page import="java.util.Date" %>
4  <%@ page import="dk.thoerup.traininfoservice.Statistics" %>  <%@ page import="dk.thoerup.traininfoservice.Statistics" %>
5    <%@page import="java.text.NumberFormat"%>
6  <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
7    
8  <%@page import="java.text.NumberFormat"%><html>  <html>
9  <head>  <head>
10  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
11  <title>TrainInfoService statistics</title>  <title>TrainInfoService statistics</title>
# Line 79  form.setMinimumFractionDigits(1); Line 80  form.setMinimumFractionDigits(1);
80                  <td><%= form.format(stats.getDepartureCacheHits()/days) %></td>                  <td><%= form.format(stats.getDepartureCacheHits()/days) %></td>
81          </tr>          </tr>
82          <tr>          <tr>
83                    <td class="left">--failed</td>
84                    <td><%= stats.getDepartureErrors() %></td>
85                    <td><%= form.format(stats.getDepartureErrors()/days) %></td>
86            </tr>
87            <tr>
88                  <td class="left">Timetable Lookups</td>                  <td class="left">Timetable Lookups</td>
89                  <td><%= stats.getTimetableLookups() %></td>                  <td><%= stats.getTimetableLookups() %></td>
90                  <td><%= form.format(stats.getTimetableLookups()/days) %></td>                  <td><%= form.format(stats.getTimetableLookups()/days) %></td>
# Line 88  form.setMinimumFractionDigits(1); Line 94  form.setMinimumFractionDigits(1);
94                  <td><%= stats.getTimetableCacheHits() %></td>                  <td><%= stats.getTimetableCacheHits() %></td>
95                  <td><%= form.format(stats.getTimetableCacheHits()/days) %></td>                  <td><%= form.format(stats.getTimetableCacheHits()/days) %></td>
96          </tr>          </tr>
97            <tr>
98                    <td class="left">--failed</td>
99                    <td><%= stats.getTimetableErrors() %></td>
100                    <td><%= form.format(stats.getTimetableErrors()/days) %></td>
101            </tr>  
102  </table>  </table>
103    
104    <h2>Persistant statistics</h2>
105    <a href="SavedStatistics">Saved stats</a><br>
106  </body>  </body>
107  </html>  </html>

Legend:
Removed from v.712  
changed lines
  Added in v.965

  ViewVC Help
Powered by ViewVC 1.1.20