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

Contents of /android/TrainInfoService/WebContent/savedstatistics.jsp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 961 - (show annotations) (download)
Wed Jul 7 09:12:32 2010 UTC (13 years, 10 months ago) by torben
File size: 1310 byte(s)
Begin moving saved statistics to seperate servlet+jsp
1 <%@ page language="java" contentType="text/html; charset=UTF-8"
2 pageEncoding="UTF-8"%>
3 <%@ page import="java.util.List" %>
4 <%@ page import="dk.thoerup.traininfoservice.SavedStatBean" %>
5 <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
6 <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c-rt" %>
7
8 <c-rt:set var="statbeans" value="${requestScope.stats}"/>
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
19
20
21 <table border="1">
22 <tr><th>&nbsp;</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>
23
24 <c-rt:forEach var="stat" items="${statbeans}">
25 <tr>
26 <td>${stat.statisticsdate}</td>
27 <td>${stat.station }</td>
28 <td>${stat.location }</td>
29 <td>${stat.name }</td>
30 <td>${stat.favorites }</td>
31 <td>${stat.departure }</td>
32 <td>${stat.depcache }</td>
33 <td>${stat.deperror }</td>
34 <td>${stat.timetable }</td>
35 <td>${stat.timecache }</td>
36 <td>${stat.timeerror }</td>
37 </tr>
38 </c-rt:forEach>
39
40
41 </table>
42
43 </body>
44 </html>

  ViewVC Help
Powered by ViewVC 1.1.20