source: ether_2012/trunk/web/init_sauv.jsp @ 345

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

install

File size: 2.6 KB
Line 
1<%@ page import="com.ether.Context" %>
2<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
3<%@ page contentType="text/html;charset=UTF-8" language="java" %>
4
5<html>
6<head>
7    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
8    <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
9
10    <script src="resources/js/autocomplete/javascript/prototype.js" type="text/javascript"></script>
11    <script src="resources/js/autocomplete/javascript/effects.js" type="text/javascript"></script>
12    <script src="resources/js/autocomplete/javascript/controls.js" type="text/javascript"></script>
13    <link rel="stylesheet" href="resources/css/autocomplete/style.css" type="text/css"/>
14
15
16    <title>Project source</title>
17</head>
18
19<body>
20
21
22<%=Context.getLocale( request )%>
23
24<spring:message code="label.language" htmlEscape="true"/> : <spring:message code="language" htmlEscape="true"/>
25
26<br/><br/>
27
28<spring:message code="text.change.language" htmlEscape="true"/>
29<br/>
30<spring:message code="label.language" htmlEscape="true"/> : <a
31        href="visualization?methodName=home&language=en"><spring:message code="label.language.en"
32                                                                         htmlEscape="true"/></a>
33| <a href="visualization?methodName=home&language=fr"><spring:message code="label.language.fr" htmlEscape="true"/></a>
34
35<hr>
36<h3><spring:message code="titre.init" htmlEscape="true"/></h3>
37<hr>
38
39<table width="100%">
40    <tr>
41        <td>
42            <a href="visualization?methodName=view"><spring:message code="text.visu.href" htmlEscape="true"/></a>
43        </td>
44        <td><spring:message code="text.visu" htmlEscape="true"/></td>
45    </tr>
46
47    <tr>
48        <td>
49            <a href="visualization?methodName=viewAllPlateforms"><spring:message code="text.visu.pf.href"
50                                                                                 htmlEscape="true"/></a>
51        </td>
52        <td><spring:message code="text.visu.pf" htmlEscape="true"/></td>
53    </tr>
54
55</table>
56
57<BR/><BR/>
58<hr>
59<h3>Auto-completion</h3>
60<hr>
61
62<div id="container">
63    <form method="get" action="">
64        <label for="testinput">Search for a country name</label><br/>
65        <input type="text" id="search" name="search" autocomplete="off" class="input" value=""/><br/>
66
67        <div id="update" style="display: none; position:relative;"></div>
68        <input type="image" name="register" class="submit-btn" src="http://www.roscripts.com/images/btn.gif"
69               alt="submit" title="submit"/>
70    </form>
71
72    <script type="text/javascript">
73        new Ajax.Autocompleter( 'search', 'update', 'response.php', { tokens: ','} );
74    </script>
75</div>
76
77</body>
78</html>
Note: See TracBrowser for help on using the repository browser.