source: ether_ndacc/trunk/web/visus_ecc_realtime.jsp @ 434

Last change on this file since 434 was 434, checked in by rboipsl, 12 years ago

infobulles

File size: 3.9 KB
Line 
1<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
2<%@ taglib prefix="ether" tagdir="/WEB-INF/tags" %>
3<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
4<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
5
6<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
7
8<html>
9<head>
10
11        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
12
13        <link rel="stylesheet" type="text/css" href="./resources/css/ndacc.css">
14               
15       
16        <title>OHP ECC REALTIME PLOTS</title>
17         
18        <meta name="generator" content="TYPO3 4.1 CMS" />
19        <script type="text/javascript" src="<c:url value="./resources/css/etherTypo.js"/>">
20       
21        </script>
22</head>
23
24<body class=plein>
25<form name="thisForm">
26<table cellpadding="2" cellspacing="2" border=0 width=100%>
27<input type="hidden" value="selectEccRT" name="methodName">
28<input type="hidden" value="ECC" name="instrument">
29<input type="hidden" value="${station}" name="station">
30<input type="hidden" value="rt" name="type">
31<input type="hidden" value="${firstDate}" id="di" name="dateinf">     <%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
32<%@ taglib prefix="ether" tagdir="/WEB-INF/tags" %>
33<tr>
34
35<td width=90px height=5 class=blanc1>${station} OZONE SONDE REALTIME</td>
36<td width=50px  class=blanc2 align=right><spring:message code="annee"/>&nbsp;
37<select id="year" onChange='loadVisus()'>
38    <option value='2012' <c:if test="${year == '2012'}">selected</c:if> >2012</option>
39    <option value='2011' <c:if test="${year == '2011'}">selected</c:if> >2011</option>
40</select>
41</td>
42
43<td width=50px class=blanc2 align=left><spring:message code="mois"/>&nbsp;
44<select id="month" onChange='loadVisus()'>
45        <option value='01' <c:if test="${month == '01'}">selected</c:if> ><spring:message code="janvier"/></option>
46        <option value='02' <c:if test="${month == '02'}">selected</c:if> ><spring:message code="fevrier"/></option>
47        <option value='03' <c:if test="${month == '03'}">selected</c:if> ><spring:message code="mars"/></option>
48        <option value='04' <c:if test="${month == '04'}">selected</c:if> ><spring:message code="avril"/></option>
49        <option value='05' <c:if test="${month == '05'}">selected</c:if> ><spring:message code="mai"/></option>
50        <option value='06' <c:if test="${month == '06'}">selected</c:if> ><spring:message code="juin"/></option>
51        <option value='07' <c:if test="${month == '07'}">selected</c:if> ><spring:message code="juillet"/></option>
52        <option value='08' <c:if test="${month == '08'}">selected</c:if> ><spring:message code="aout"/></option>
53        <option value='09' <c:if test="${month == '09'}">selected</c:if> ><spring:message code="septembre"/></option>
54        <option value='10' <c:if test="${month == '10'}">selected</c:if> ><spring:message code="octobre"/></option>
55        <option value='11' <c:if test="${month == '11'}">selected</c:if> ><spring:message code="novembre"/></option>
56        <option value='12' <c:if test="${month == '12'}">selected</c:if> ><spring:message code="decembre"/></option>
57</select>
58
59</tr>
60</table>
61<table width=100%>
62<tr>
63<td class=ciel width=200px colspan=5 valign=top>
64<table cellpadding="2" cellspacing="2" border=0>
65
66<c:choose>
67        <c:when test="${plotsList=='[]'}"><tr><td class="rougeb"><spring:message code="noplot.period"/></td></tr>
68        </c:when>
69        <c:otherwise>
70                <c:forEach items="${plotsList}" var="plot" varStatus="status">
71                <c:choose>
72                <c:when test="${(status.index) % 5 == 0}"><tr>
73                </c:when>
74                </c:choose>
75
76                <td align=center valign=top><a href="#" onclick="OuvrirFeuilleDynPL ('${rep}/${plot}');"><img border=2 width=100 height=120 src="${rep}/${plot}"></img></a>
77        <br>${labelPlots[status.index]}
78        </td>
79
80                <c:choose>
81                <c:when test="${(status.index+1) % 5 == 0}"></tr>
82                </c:when>
83                </c:choose>
84                </c:forEach>
85
86                <c:choose>
87                <c:when test="${(status.index+1) % 5 != 0}"></tr>
88                </c:when>
89                </c:choose>
90
91        </c:otherwise>
92</c:choose>
93</table>
94</td>
95
96
97</tr>
98
99
100
101<tr>
102<td height=500px>&nbsp;</td>
103</tr>
104</table>
105</form>
106</body>
107</html>
Note: See TracBrowser for help on using the repository browser.