/[projects]/misc/xenconsole/index.php
ViewVC logotype

Diff of /misc/xenconsole/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1895 by torben, Sun Dec 9 19:57:00 2012 UTC revision 1898 by torben, Mon Dec 10 12:40:58 2012 UTC
# Line 97  function refreshData() { Line 97  function refreshData() {
97                          var conurl = $(this).find('conurl').text();                          var conurl = $(this).find('conurl').text();
98                          var session = $(this).find('session').text();                          var session = $(this).find('session').text();
99                          var os = $(this).find('os').text();                          var os = $(this).find('os').text();
100                            var guestversion = $(this).find('guestversion').text();
101                          var cpuavg = $(this).find('cpuavg').text();                          var cpuavg = $(this).find('cpuavg').text();
102                            var curmem = $(this).find('curmem').text();
103                            var maxmem = $(this).find('maxmem').text();
104    
105                            var mempercent = Math.round( (curmem*100) / maxmem );
106    
107                          name = name.replace(" ", "_");                          name = name.replace(" ", "_");
108                          name = name.replace(".", "_");                          name = name.replace(".", "_");
# Line 106  function refreshData() { Line 111  function refreshData() {
111    
112                          var vm = $(id);                                          var vm = $(id);                
113    
114                            if (guestversion != '') {
115                                    os += ' Guest Tools: ' + guestversion;
116                            }
117    
118                          if (state == "Running") {                          if (state == "Running") {
119                                  vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");                                  vm.find('.state').css("background-image", "url('gfx/vps_topgreen.png')");
120                                  vm.find('.network').show();                                  vm.find('.network').show();
# Line 121  function refreshData() { Line 130  function refreshData() {
130                                  vm.find('.cpu_graph').show();                                  vm.find('.cpu_graph').show();
131                                  vm.find('.cpu_graph').attr('src', 'usagebar.php?usage=' + cpuavg);                                  vm.find('.cpu_graph').attr('src', 'usagebar.php?usage=' + cpuavg);
132                                  vm.find('.cpu_graph').attr('title',  cpuavg + '%');                                  vm.find('.cpu_graph').attr('title',  cpuavg + '%');
133    
134                                  vm.find('.mem_graph').show();                                  vm.find('.mem_graph').show();
135                                    vm.find('.mem_graph').attr('src', 'usagebar.php?usage=' + mempercent);
136                                    vm.find('.mem_graph').attr('title',  curmem + ' / ' + maxmem + ' MB' );
137                          } else {                          } else {
138                                  if (state == "Halted") {                                  if (state == "Halted") {
139                                          vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");                                          vm.find('.state').css("background-image", "url('gfx/vps_topred.png')");
# Line 270  foreach($vms_array as $vm) { Line 282  foreach($vms_array as $vm) {
282          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>          <table width='99%' cellpadding='3' cellspacing='0' border='0' class='vps' id='vm_<?php echo $clean_name;?>'>
283                  <tr background='gfx/vps_topbg.png'  >                  <tr background='gfx/vps_topbg.png'  >
284                          <td width='10' class='small state'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
285                          <td colspan='2' class='small'><b><?php echo $name; ?></b><span class='os'></span></td>                          <td colspan='3' class='small'><b><?php echo $name; ?></b><span class='os'></span></td>
286                          <td colspan='2' class='small' align='right'>                          <td colspan='1' class='small' align='right'>
287                                  <span class='network'></span>                                  <span class='network'></span>
288                                  <a href='#' style='display:none;' class='console'>                                  <a href='#' style='display:none;' class='console'>
289                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
# Line 313  foreach($vms_array as $vm) { Line 325  foreach($vms_array as $vm) {
325                          <span id='vps_net_usage_txt_UID'>na</span>                          <span id='vps_net_usage_txt_UID'>na</span>
326                  </td>                  </td>
327  -->  -->
328                  <td width='100' align='right' class='small' valign='top'>                  <td width='100' align='right' class='small' valign='bottom'>
329                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>
330                          <span id='vps_disk_usage_txt_UID'><?php echo format_storage($harddrive_size); ?></span>                          <span id='vps_disk_usage_txt_UID'><?php echo format_storage($harddrive_size); ?></span>
331                  </td>                  </td>

Legend:
Removed from v.1895  
changed lines
  Added in v.1898

  ViewVC Help
Powered by ViewVC 1.1.20