Changeset 17556 for schedule


Ignore:
Timestamp:
02/13/14 18:19:12 (11 years ago)
Author:
tose
Message:
Included UTC clock update
File:
1 edited

Legend:

Unmodified
Added
Removed
  • schedule/authenticate/body.php

    r17546 r17556  
    66        <meta name="keywords" content="" />
    77        <meta name="description" content="" />
    8                 <script src="js/function.js"></script>
     8    <script src="js/function.js"></script>
     9    <script>
     10    var updateClock = function() {
     11        function pad(n) {
     12            return (n<10) ? '0' + n : n;
     13        }
     14        var now = new Date();
     15        var s = pad(now.getUTCDate())+'.'+pad(now.getUTCMonth()+1)+'.'+pad(now.getUTCFullYear())+' '+pad(now.getUTCHours())+':'+pad(now.getUTCMinutes())+' UTC';
     16        $('#clock').html(s);
     17        var delay = 1000 - (now % 1000);
     18        setTimeout(updateClock, delay);
     19    };
     20
     21    </script>
    922                <?php include 'Module/control.php'; ?>
    1023               <link href="css/styles.css" rel="stylesheet" type="text/css" media="screen" />
     
    2033                                        <div id="content_bg_top"></div>
    2134                                        <div id="content_box">
    22                                         <div id="column_box">
    23                                                 <div id="column1">
     35    <div id="column_box">
     36                                                <div id="column1">
    2437                                                        <div id="calendar" align="center"><?php require_once 'Module/calendar.php'; ?></div>
    2538                                                </div>
    2639                                        <div id="column3">
    2740                                        </div>
    28                                         <div class="clear">
     41                    <div class="clear">
     42                                   </div>
    2943                                        </div>
    30                                         </div>
    31                                         <div style="width:100%;" align="right" id='btn'>
    32                                                 <input type="button" id="save" value="SAVE" class="button" title="Click to save">&nbsp;&nbsp;&nbsp;
    33                                                 <input type="button" id="LoadPrev" value="Load Previous Night" class="button" title="Click to load previous night">
    34                                         </div>
     44                    <div style="width:100%;" align="right" id='btn'>
     45                           <table width="100%">
     46                                <tr>
     47                    <td align="left" width="10px" style="font-weight:bold;">TIME: </td>
     48                    <script>updateClock();</script><td align="left" id="clock" style="font-size:16px; font-weight:bold; color:#FFFF00"></td>
     49                    <script>$('#clock').html(updateClock());</script>
     50                                      <td align="right">
     51                                          <input type="button" id="save" value="SAVE" class="button" title="Click to save">&nbsp;
     52                                          <input type="button" id="LoadPrev" value="Load Previous Night" class="button" title="Click to load previous night">
     53&nbsp;
     54                                          <input type="button" id="help" value="HELP" class="button" title="Click to view help" align="left"></td>
     55                                </tr>
     56                           </table>
     57                    </div>
    3558                                        <div style="border:2px solid white; width:100%;" id="Scheduling">
    3659                                                <table width="100%" id="TableHolder" >
    3760                                                                <tr>
    38                                                                         <td width="184" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Time</td>
    39                                                                         <td width="170" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Measurement</td>
    40                                                                         <td width="145" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Source list</td>
    41                                                                         <td width="316" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Value</td>
    42                                                                         <td width="141" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center" >Transaction</td>
     61                                                                        <td width="15%" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Time</td>
     62                                                                        <td width="15%" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Measurement</td>
     63                                                                        <td width="15%" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Source list</td>
     64                                                                        <td style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center"  >Value</td>
     65                                                                        <td width="18%" style="border:1px solid white; color:#37DFB1; font-size:14px;" align="center" >Transaction</td>
    4366                                                                </tr>
    4467                                                </table>
Note: See TracChangeset for help on using the changeset viewer.