/[projects]/android/TrainInfoServiceGoogle/war/savedstatistics.jsp
ViewVC logotype

Annotation of /android/TrainInfoServiceGoogle/war/savedstatistics.jsp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1080 - (hide annotations) (download)
Mon Sep 20 20:11:55 2010 UTC (13 years, 9 months ago) by torben
File size: 1757 byte(s)
Add a copy with partial support for google app engine
1 torben 1080 <%@ page language="java" contentType="text/html; charset=UTF-8"
2     pageEncoding="UTF-8"%>
3    
4     <%@ page import="dk.thoerup.traininfoservice.SavedStatBean" %>
5    
6    
7     <!-- TODO: Fix to old-school jsp instead of JSTL+EL -->
8    
9    
10     <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
11     <html>
12     <head>
13     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
14     <title>TrainInfoService :: Saved Statistics</title>
15     </head>
16     <body>
17    
18     <h2>Average</h2>
19     <table border="1">
20     <tr><th width=100>Count</th><th>Station</th><th>byLocation</th><th>byName</th><th>byFavorites</th><th>Departure</th><th>depCache</th><th>depError</th><th>Timetable</th><th>timeCache</th><th>timeError</th></tr>
21     <tr>
22     <td>${avg.label}</td>
23     <td>${avg.station }</td>
24     <td>${avg.location }</td>
25     <td>${avg.name }</td>
26     <td>${avg.favorites }</td>
27     <td>${avg.departure }</td>
28     <td>${avg.depcache }</td>
29     <td>${avg.deperror }</td>
30     <td>${avg.timetable }</td>
31     <td>${avg.timecache }</td>
32     <td>${avg.timeerror }</td>
33     </tr>
34     </table>
35    
36     <br/><br/>
37    
38     <h2>Latest</h2>
39     <table border="1">
40     <tr><th width=100>Date</th><th>Station</th><th>byLocation</th><th>byName</th><th>byFavorites</th><th>Departure</th><th>depCache</th><th>depError</th><th>Timetable</th><th>timeCache</th><th>timeError</th></tr>
41    
42     <c-rt:forEach var="stat" items="${statbeans}">
43     <tr>
44     <td>${stat.label}</td>
45     <td>${stat.station }</td>
46     <td>${stat.location }</td>
47     <td>${stat.name }</td>
48     <td>${stat.favorites }</td>
49     <td>${stat.departure }</td>
50     <td>${stat.depcache }</td>
51     <td>${stat.deperror }</td>
52     <td>${stat.timetable }</td>
53     <td>${stat.timecache }</td>
54     <td>${stat.timeerror }</td>
55     </tr>
56     </c-rt:forEach>
57    
58    
59     </table>
60    
61     </body>
62     </html>

  ViewVC Help
Powered by ViewVC 1.1.20