source: ether_ndacc/trunk/web/visus_ecc.jsp @ 113

Last change on this file since 113 was 113, checked in by rboipsl, 13 years ago

Import du projet NDACC _ module web

File size: 4.7 KB
Line 
1<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
2<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
3
4<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
5
6<html>
7<head>
8
9        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
11        <link rel="stylesheet" type="text/css" href="./resources/css/ndacc.css">
12               
13       
14        <title>OHP LIDAR PLOTS</title>
15         
16        <meta name="generator" content="TYPO3 4.1 CMS" />
17        <script type="text/javascript" src="<c:url value="./resources/css/etherTypo.js"/>">
18       
19        </script>
20</head>
21
22<body class=plein>
23<form name="thisForm">
24<table cellpadding="2" cellspacing="2" border=0 width=100%>
25<input type="hidden" value="selectEcc" name="methodName">
26<input type="hidden" value="ECC" name="instrument">
27<input type="hidden" value="${station}" name="station">
28<input type="hidden" value="${firstDate}" id="di" name="dateinf">
29<tr>
30
31<td width=90px height=5 class=blanc1>${station} OZONE SONDE</td>
32<td width=50px  class=blanc2 align=right>Year&nbsp;
33<select id="year" onChange='loadVisus()'>
34
35        <option value='2010' <c:if test="${year == '2010'}">selected</c:if> >2010</option>
36        <option value='2009' <c:if test="${year == '2009'}">selected</c:if> >2009</option>
37        <option value='2008' <c:if test="${year == '2008'}">selected</c:if> >2008</option>
38        <option value='2007' <c:if test="${year == '2007'}">selected</c:if> >2007</option>
39        <option value='2006' <c:if test="${year == '2006'}">selected</c:if> >2006</option>
40        <option value='2005' <c:if test="${year == '2005'}">selected</c:if> >2005</option>
41        <option value='2004' <c:if test="${year == '2004'}">selected</c:if> >2004</option>
42        <option value='2003' <c:if test="${year == '2003'}">selected</c:if> >2003</option>
43        <option value='2002' <c:if test="${year == '2002'}">selected</c:if> >2002</option>
44        <option value='2001' <c:if test="${year == '2001'}">selected</c:if> >2001</option>
45        <option value='2000' <c:if test="${year == '2000'}">selected</c:if> >2000</option>
46        <option value='1999' <c:if test="${year == '1999'}">selected</c:if> >1999</option>
47        <option value='1998' <c:if test="${year == '1998'}">selected</c:if> >1998</option>
48        <option value='1997' <c:if test="${year == '1997'}">selected</c:if> >1997</option>
49        <option value='1996' <c:if test="${year == '1996'}">selected</c:if> >1996</option>
50        <option value='1995' <c:if test="${year == '1995'}">selected</c:if> >1995</option>
51        <option value='1994' <c:if test="${year == '1994'}">selected</c:if> >1994</option>
52        <option value='1993' <c:if test="${year == '1993'}">selected</c:if> >1993</option>
53        <option value='1992' <c:if test="${year == '1992'}">selected</c:if> >1992</option>
54        <option value='1991' <c:if test="${year == '1991'}">selected</c:if> >1991</option>
55       
56</select>
57</td>
58
59<td width=50px class=blanc2 align=left>Month&nbsp;
60<select id="month" onChange='loadVisus()'>
61        <option value='01' <c:if test="${month == '01'}">selected</c:if> >January</option>
62        <option value='02' <c:if test="${month == '02'}">selected</c:if> >Febuary</option>
63        <option value='03' <c:if test="${month == '03'}">selected</c:if> >March</option>
64        <option value='04' <c:if test="${month == '04'}">selected</c:if> >April</option>
65        <option value='05' <c:if test="${month == '05'}">selected</c:if> >May</option>
66        <option value='06' <c:if test="${month == '06'}">selected</c:if> >June</option>
67        <option value='07' <c:if test="${month == '07'}">selected</c:if> >July</option>
68        <option value='08' <c:if test="${month == '08'}">selected</c:if> >August</option>
69        <option value='09' <c:if test="${month == '09'}">selected</c:if> >September</option>
70        <option value='10' <c:if test="${month == '10'}">selected</c:if> >October</option>
71        <option value='11' <c:if test="${month == '11'}">selected</c:if> >November</option>
72        <option value='12' <c:if test="${month == '12'}">selected</c:if> >December</option>
73</select>
74
75</tr>
76</table>
77<table width=100%>
78<tr>
79<td class=ciel width=200px colspan=5 valign=top>
80<table cellpadding="2" cellspacing="2" border=0>
81
82<c:choose>
83        <c:when test="${plotsList=='[]'}"><tr><td class="rougeb">No plots for this period</td></tr>
84        </c:when>
85        <c:otherwise>
86                <c:forEach items="${plotsList}" var="plot" varStatus="status">
87                <c:choose>
88                <c:when test="${(status.index) % 5 == 0}"><tr>
89                </c:when>
90                </c:choose>
91       
92                <td align=center valign=top><a href="#" onclick="OuvrirFeuilleDynPL ('${rep}/${plot}');"><img border=2 width=100 height=120 src="${rep}/${plot}"></img></a></td>
93       
94                <c:choose>
95                <c:when test="${(status.index+1) % 5 == 0}"></tr>
96                </c:when>
97                </c:choose>
98                </c:forEach>
99
100                <c:choose>
101                <c:when test="${(status.index+1) % 5 != 0}"></tr>
102                </c:when>
103                </c:choose>
104
105        </c:otherwise>
106</c:choose>
107</table>
108</td>
109
110
111</tr>
112
113
114
115<tr>
116<td height=500px>&nbsp;</td>
117</tr>
118</table>
119</form>
120</body>
121</html>
Note: See TracBrowser for help on using the repository browser.