vzlogger/frontend/index.html

52 lines
2.2 KiB
HTML
Raw Normal View History

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>volkszaehler.org - web frontend</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="javascript/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="javascript/jqplot/jquery.jqplot.min.js"></script>
<script type="text/javascript" src="javascript/jqplot/plugins/jqplot.canvasTextRenderer.min.js"></script>
<script type="text/javascript" src="javascript/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js"></script>
<script type="text/javascript" src="javascript/jqplot/plugins/jqplot.canvasAxisTickRenderer.min.js"></script>
<script type="text/javascript" src="javascript/jqplot/plugins/jqplot.dateAxisRenderer.min.js"></script>
<script type="text/javascript" src="javascript/jqplot/plugins/jqplot.cursor.min.js"></script>
2010-06-08 21:26:02 +02:00
<script type="text/javascript" src="javascript/jqplot/plugins/jqplot.categoryAxisRenderer.min.js"></script>
<script type="text/javascript" src="javascript/jqplot/plugins/jqplot.barRenderer.min.js"></script>
<script type="text/javascript" src="javascript/jqplot/plugins/jqplot.highlighter.min.js"></script>
<script type="text/javascript" src="javascript/functions.js"></script>
<script type="text/javascript" src="javascript/script.js"></script>
<link rel="stylesheet" type="text/css" href="javascript/jqplot/jquery.jqplot.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
2010-09-27 01:33:49 +02:00
<body style="background-color: #9ACC67;">
2010-09-27 01:33:49 +02:00
<div id="vz">
<div id="chart">
2010-09-24 02:30:31 +02:00
<!-- keep some space free for the chart -->
<div id="ChartPlot" style="height:100%">
2010-09-27 01:33:49 +02:00
<!-- jqplot draws the chart into the following DIV -->
<div id="ChartDIV" style="height:100%;width:100%;"></div>
</div>
2010-09-27 01:33:49 +02:00
<div id="ChartInfo" style="display:none;"></div>
</div>
2010-09-27 01:33:49 +02:00
<table id="move">
<tr>
<td><a id="moveBack" href="#" onclick="moveWindow('back');">&laquo;</a></td>
<td><a id="moveNow" href="#" onclick="moveWindow('last');">&raquo;&raquo;</a></td>
<td><a id="moveForward" href="#" onclick="moveWindow('forward');">&raquo;</a></td>
</tr>
</table>
</div>
2010-09-24 02:30:31 +02:00
<!-- uncomment the following line to activate debugging -->
2010-09-27 01:33:49 +02:00
<div id="debug"></div>
</body>
2010-09-11 05:09:00 +02:00
</html>