view templates/index.html @ 13:a0213f0e707b

- Update for v12.10 - Plot raw data to show more up to date data - Average/peak winds so they don't spam the display. - Display the time of the most recent data.
author Daniel O'Connor <darius@dons.net.au>
date Thu, 10 Jan 2013 16:38:36 +1030
parents 2d9ee2b3ae82
children
line wrap: on
line source

<!doctype html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>iWWS</title>
    <link rel="apple-touch-icon" href="static/icon.png">
    <style type="text/css" media="screen">@import "static/jqtouch.css";</style>
    <style type="text/css" media="screen">@import "static/themes/apple/theme.css";</style>
    <style type="text/css" media="screen">@import "static/iwws.css";</style>
    <script src="static/jquery-1.6.2.js" type="application/x-javascript" charset="utf-8"></script>
    <script src="static/jqtouch.js" type="application/x-javascript" charset="utf-8"></script>
    <script type="text/javascript" src="static/jquery.log.js"></script> 
    <script type="text/javascript" src="static/jquery.flot.js"></script> 
    <script type="text/javascript" src="static/jquery.flot.direction.js"></script> 
    <script type="text/javascript" src="static/sprintf.js"></script> 
    <script src="static/iwws.js" type="application/x-javascript" charset="utf-8"></script>
  </head>
  <body>
    <div id="jqt">
      <div id="home">
	<div class="toolbar">
	  <h1>iWWS</h1>
	  <a href="#home" onclick="update_data()" class="button leftButton slideleft submit">Update</a>
	</div>
	<div id="container">
	  <div id="stamp">&nbsp</div>
	  <div id="graph1"></div> 
	  <div id="graph2"></div> 
	</div>
      </div>
    </div>
  </body>
</html>