/[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 1896 by torben, Mon Dec 10 12:20:57 2012 UTC revision 1900 by torben, Mon Dec 10 14:58:53 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();                          var curmem = $(this).find('curmem').text();
103                          var maxmem = $(this).find('maxmem').text();                          var maxmem = $(this).find('maxmem').text();
# Line 110  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 135  function refreshData() { Line 140  function refreshData() {
140                                  } else {                                  } else {
141                                          vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");                                          vm.find('.state').css("background-image", "url('gfx/vps_topyellow.png')");
142                                  }                                  }
143                                    vm.find('.os').text('');
144    
145                                  vm.find('.network').hide();                                  vm.find('.network').hide();
146                                  vm.find('.console').hide();                                  vm.find('.console').hide();
147                                  vm.find('.actionstop').hide();                                  vm.find('.actionstop').hide();
# Line 252  foreach($vms_array as $vm) { Line 259  foreach($vms_array as $vm) {
259          }          }
260    
261          $name = $vm["name_label"];          $name = $vm["name_label"];
262            $description = $vm["name_description"];
263          $uuid = $vm["uuid"];          $uuid = $vm["uuid"];
264          $state = $vm["power_state"] ;          $state = $vm["power_state"] ;
265          $memory = $vm['memory_target'];          $memory = $vm['memory_target'];
# Line 277  foreach($vms_array as $vm) { Line 285  foreach($vms_array as $vm) {
285          <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;?>'>
286                  <tr background='gfx/vps_topbg.png'  >                  <tr background='gfx/vps_topbg.png'  >
287                          <td width='10' class='small state'>&nbsp;</td>                          <td width='10' class='small state'>&nbsp;</td>
288                          <td colspan='2' class='small'><b><?php echo $name; ?></b><span class='os'></span></td>                          <td colspan='3' class='small' title='<?php echo $description;?>'><b><?php echo $name; ?></b><span class='os'></span></td>
289                          <td colspan='2' class='small' align='right'>                          <td colspan='1' class='small' align='right'>
290                                  <span class='network'></span>                                  <span class='network'></span>
291                                  <a href='#' style='display:none;' class='console'>                                  <a href='#' style='display:none;' class='console'>
292                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
# Line 320  foreach($vms_array as $vm) { Line 328  foreach($vms_array as $vm) {
328                          <span id='vps_net_usage_txt_UID'>na</span>                          <span id='vps_net_usage_txt_UID'>na</span>
329                  </td>                  </td>
330  -->  -->
331                  <td width='100' align='right' class='small' valign='top'>                  <td width='100' align='right' class='small' valign='bottom'>
332                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>                          <img src='gfx/icon-disk.png' style='vertical-align: middle;'>
333                          <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>
334                  </td>                  </td>

Legend:
Removed from v.1896  
changed lines
  Added in v.1900

  ViewVC Help
Powered by ViewVC 1.1.20