source: ether_statistics/web/project/statistics.jsp @ 596

Last change on this file since 596 was 596, checked in by vmipsl, 12 years ago

wijmo (linechart, barchart), credits, mentions

File size: 4.4 KB
Line 
1<%@ page language="java" %>
2<%@ taglib prefix="ether" tagdir="/WEB-INF/tags" %>
3<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
4
5<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
6
7<HTML>
8<HEAD>
9    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
10    <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
11
12    <title><spring:message code="title"/></title>
13    <link rel="shortcut icon" href="<html:rewrite page='/resources/images/megapoli/favicon.ico'/>">
14
15    <ether:htmlCss cssFile="button"/>
16    <%--<ether:htmlCss cssFile="jquery-ui-1.8.16.custom/jquery-ui-1.8.16.custom"/>--%>
17    <%-- WIJMO --%>
18    <ether:htmlCss cssFile="Wijmo/rocket/jquery-wijmo"/>
19    <ether:htmlCss cssFile="Wijmo/jquery.wijmo-complete.all.2.0.0.min"/>
20
21    <ether:htmlCss cssFile="ether"/>
22    <ether:htmlCss cssFile="statistics"/>
23
24    <ether:htmlJs jsFile="library/jquery-1.8.2"/>
25    <ether:htmlJs jsFile="library/jquery-ui-1.9.0.custom"/>
26    <ether:htmlJs jsFile="library/jquery.class"/>
27    <ether:htmlJs jsFile="library/jquery.protify-0.3"/>
28    <ether:htmlJs jsFile="classesForJQuery/etherHelper"/>
29    <ether:htmlJs jsFile="classesForJQuery/Button"/>
30    <ether:htmlJs jsFile="classesForJQuery/DragSlide"/>
31
32    <%-- WIJMO --%>
33    <ether:htmlJs jsFile="Wijmo.2.2.2/Wijmo-Open/js/jquery.wijmo-open.all.2.2.2.min"/>
34    <ether:htmlJs jsFile="Wijmo.2.2.2/Wijmo-Complete/js/jquery.wijmo-complete.all.2.2.2.min"/>
35
36    <ether:htmlJsp jspFile="statistics-script"/>
37
38</HEAD>
39
40<BODY>
41
42<div class="pageWrapper">
43
44    <%-- ****************** TITLE & TOOLS ****************** --%>
45    <div class="containerTop">
46        <div id="title" class="containerTitle containerToDrag">
47            <div><spring:message code="title"/></div>
48            <div>&nbsp;&nbsp;&nbsp;&nbsp;<img src="resources/images/cloud_half.png" width="88px" height="35px"/></div>
49        </div>
50
51        <div id="login" class="containerToDrag">
52            <img id="login_bg" src='resources/images/cloud.png' width="88px" height="71px"/>
53            <img id="login_button" src='resources/images/Milky/Chat.png' width="30px" height="30px"/>
54
55            <div id="login_text">
56                <div id="login_text_title"><spring:message code="label.connection"/></div>
57                <div id="login_text_content">
58                    <spring:message code="label.firstname"/> : <input type="text" size="30"><BR/><BR/>
59                    <spring:message code="label.lastname"/> : <input type="text" size="30"><BR/><BR/><BR/>
60
61                    <div style="float:right">
62                        <button><spring:message code="label.connection"/></button>
63                    </div>
64                </div>
65            </div>
66        </div>
67
68        <div id="home" class="cloud containerCloud containerToDrag"><img id="home_button" src="resources/images/Milky/Home.png" width="40px" height="40px"/></div>
69        <div id="language" class="cloud containerCloud containerToDrag">
70            <img id="language_button" src='resources/images/<spring:message code="label.language.to.switch"/>.png' width="30px" height="30px"/>
71        </div>
72        <div id="mail" class="cloud containerCloud containerToDrag"><img id="mail_button" src='resources/images/Milky/mail_add.png' width="40px" height="40px"/></div>
73        <div id="copy" class="cloud containerCloud containerToDrag">
74            <div id="copy1">&copy; 2012-2013</div>
75            <div id="copy2">ETHER / CNRS</div>
76        </div>
77
78        <div id="help" class="containerToDrag"><img id="help" src='resources/images/help.gif' width="40px" height="40px"/></div>
79
80        <div id="credits" class="containerToDrag">
81            <img id="credits_bg" src='resources/images/cloud.png' width="59px" height="42px"/>
82            <div id="credits_title"><spring:message code="label.credits"/></div>
83            <div id="credits_text"></div>
84        </div>
85
86        <div id="mentions" class="containerToDrag">
87            <img id="mentions_bg" src='resources/images/cloud.png' width="59px" height="42px"/>
88            <div id="mentions_title"><spring:message code="label.mentions"/></div>
89            <div id="mentions_text"></div>
90        </div>
91
92    </div>
93
94    <div class="menuCircle" id="menuCircle"></div>
95
96    <div id="containerMiddle"></div>
97
98    <script type="text/javascript">
99        var texts = $A( "" );
100
101        new InterfaceStatistics();
102    </script>
103
104</BODY>
105</HTML>
Note: See TracBrowser for help on using the repository browser.