annotate WebContent/index.jsp @ 28:52adafab20c1

The Servlet now sends the audio file to the browser;
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 10 Dec 2013 12:02:46 +0000
parents 3b092b89c92e
children 0c66cff0d1cc
rev   line source
luis@0 1 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
luis@0 2 <html>
luis@0 3 <head>
luis@13 4 <title>Human Echolocation</title>
luis@0 5 <link rel="Stylesheet" type="text/css" media=all href="./StyleSheet.css" />
luis@0 6 <link href="StyleSheet.css" rel="stylesheet" type="text/css" />
luis@27 7
luis@27 8 <script type="text/javascript" src="script/jquery-1.10.2.min.js"></script>
luis@27 9 <script type="text/javascript" src="script/echo.js"></script>
luis@0 10 </head>
luis@0 11
luis@0 12 <body>
luis@28 13 <div style="text-align: center">
luis@28 14 <table width="760" cellpadding="0" cellspacing="0">
luis@28 15 <tr>
luis@28 16 <td><img src="header_bg.jpg" alt="Header Image Not Found" width="779" height="72" /></td>
luis@28 17 </tr>
luis@28 18 </table>
luis@28 19 <br />
luis@27 20
luis@28 21 <h1>Human Echolocation WebApp Example Page</h1>
luis@0 22
luis@28 23 Testing...<br />
luis@0 24
luis@28 25 Input parameters:
luis@28 26 <br>
luis@28 27 Distance:
luis@28 28 <input type="text" id="dist" "name="dist" size="8">
luis@28 29 <br>
luis@28 30 <input type="submit" value="Generate" id="generate">
luis@28 31 <br>
luis@26 32
luis@28 33 <div id="ajax-loading">
luis@28 34 <img src="ajax-loader.gif" class="ajax-loader" style="display:none" /></div>
luis@27 35
luis@28 36 <br />
luis@27 37
luis@28 38 <div id="responsetext"></div>
luis@17 39
luis@28 40 <br>
luis@0 41 </div>
luis@27 42
luis@0 43 </body>
luis@0 44 </html>
luis@0 45