www-thermferm/index.php

changeset 97
4a9dbee41a6c
child 98
6e7e69f3493a
equal deleted inserted replaced
96:d08bf980ff28 97:4a9dbee41a6c
1 <?php
2 /*****************************************************************************
3 * Copyright (C) 2014
4 *
5 * Michiel Broek <mbroek at mbse dot eu>
6 *
7 * This file is part of ThermFerm
8 *
9 * This is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2, or (at your option) any
12 * later version.
13 *
14 * ThermFerm is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with ThermFerm; see the file COPYING. If not, write to the Free
21 * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 *****************************************************************************/
23 ?>
24 <!DOCTYPE html>
25 <html>
26 <head>
27 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
28 <title>ThermFerm monitor</title>
29 <link type="text/css" href="css/redmond/jquery-ui-1.10.3.custom.css" rel="stylesheet" />
30 <link type="text/css" href="css/style.css" rel="stylesheet"/>
31 </head>
32 <body>
33 <div id="beer-panel" class="ui-widget ui-widget-content ui-corner-all"> <?php include 'beer-panel.php'; ?> </div>
34 <?php /* <div id="control-panel" style="display:none"> <!--// hide while loading -->
35 <?php
36 include 'control-panel.php';
37 ?>
38 </div>
39 <div id="maintenance-panel" style="display:none"> <!--// hide while loading -->
40 <?php
41 include 'maintenance-panel.php';
42 ?>
43 </div> */ ?>
44 <!-- Load scripts after the body, so they don't block rendering of the page -->
45 <script type="text/javascript" src="js/jquery-1.9.1.js"></script>
46 <script type="text/javascript" src="js/jquery-ui-1.10.3.custom.min.js"></script>
47 <script type="text/javascript" src="js/jquery-ui-timepicker-addon.js"></script>
48 <!-- <script type="text/javascript" src="http://www.google.com/jsapi"></script> -->
49 <script type="text/javascript" src="js/spin.js"></script>
50 <!-- <script type="text/javascript" src="js/dygraph-combined.js"></script> -->
51 <!-- <script type="text/javascript">
52 // pass parameters to JavaScript
53 window.tempFormat = <?php echo "'$tempFormat'" ?>;
54 window.beerName = <?php echo "\"$beerName\""?>;
55 window.profileName = <?php echo "\"$profileName\""?>;
56 window.dateTimeFormat = <?php echo "\"$dateTimeFormat\""?>;
57 window.dateTimeFormatDisplay = <?php echo "\"$dateTimeFormatDisplay\""?>;
58 </script>
59 <script type="text/javascript" src="js/main.js"></script>
60 <script type="text/javascript" src="js/device-config.js"></script>
61 <script type="text/javascript" src="js/control-panel.js"></script>
62 <script type="text/javascript" src="js/maintenance-panel.js"></script>
63 <script type="text/javascript" src="js/beer-chart.js"></script>
64 <script type="text/javascript" src="js/profile-table.js"></script> -->
65 </body>
66 </html>

mercurial