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

Last change on this file since 840 was 840, checked in by npipsl, 8 years ago

Mise à jour copyright 2016, date menu déroulant ecc ohp, date ecc ddu , état instrument Salekhard, date menu déroulant par défaut ladoar o3 tropo et aérosols ohp

File size: 4.1 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='2016' <c:if test="${year == '2016'}">selected</c:if> >2016</option>
39    <option value='2015' <c:if test="${year == '2015'}">selected</c:if> >2015</option>
40    <option value='2014' <c:if test="${year == '2014'}">selected</c:if> >2014</option>
41    <!--<option value='2013' <c:if test="${year == '2013'}">selected</c:if> >2013</option> -->
42</select>
43</td>
44
45<td width=50px class=blanc2 align=left><spring:message code="mois"/>&nbsp;
46<select id="month" onChange='loadVisus()'>
47        <option value='01' <c:if test="${month == '01'}">selected</c:if> ><spring:message code="janvier"/></option>
48        <option value='02' <c:if test="${month == '02'}">selected</c:if> ><spring:message code="fevrier"/></option>
49        <option value='03' <c:if test="${month == '03'}">selected</c:if> ><spring:message code="mars"/></option>
50        <option value='04' <c:if test="${month == '04'}">selected</c:if> ><spring:message code="avril"/></option>
51        <option value='05' <c:if test="${month == '05'}">selected</c:if> ><spring:message code="mai"/></option>
52        <option value='06' <c:if test="${month == '06'}">selected</c:if> ><spring:message code="juin"/></option>
53        <option value='07' <c:if test="${month == '07'}">selected</c:if> ><spring:message code="juillet"/></option>
54        <option value='08' <c:if test="${month == '08'}">selected</c:if> ><spring:message code="aout"/></option>
55        <option value='09' <c:if test="${month == '09'}">selected</c:if> ><spring:message code="septembre"/></option>
56        <option value='10' <c:if test="${month == '10'}">selected</c:if> ><spring:message code="octobre"/></option>
57        <option value='11' <c:if test="${month == '11'}">selected</c:if> ><spring:message code="novembre"/></option>
58        <option value='12' <c:if test="${month == '12'}">selected</c:if> ><spring:message code="decembre"/></option>
59</select>
60
61</tr>
62</table>
63<table width=100%>
64<tr>
65<td class=ciel width=200px colspan=5 valign=top>
66<table cellpadding="2" cellspacing="2" border=0>
67
68<c:choose>
69        <c:when test="${plotsList=='[]'}"><tr><td class="rougeb"><spring:message code="noplot.period"/></td></tr>
70        </c:when>
71        <c:otherwise>
72                <c:forEach items="${plotsList}" var="plot" varStatus="status">
73                <c:choose>
74                <c:when test="${(status.index) % 5 == 0}"><tr>
75                </c:when>
76                </c:choose>
77       
78                <td align=center valign=top><a href="#" onclick="OuvrirFeuilleDynPL ('${rep}/${plot}');"><img border=2 width=100 height=120 src="${rep}/${plot}"></img></a></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.