/[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 1956 by torben, Tue Mar 26 08:32:05 2013 UTC revision 1957 by torben, Tue Mar 26 13:15:05 2013 UTC
# Line 67  $(document).ready( function() { Line 67  $(document).ready( function() {
67                  var session = $(this).data('session');                  var session = $(this).data('session');
68                  var conurl = $(this).data('conurl');                  var conurl = $(this).data('conurl');
69                  var name = $(this).data('name');                  var name = $(this).data('name');
70                  console(conurl,session,name);                  openConsole(conurl,session,name);
71          });          });
72    
73          $('#logo').click( function(event) {          $('#logo').click( function() {
74                  //refreshData();                  refreshData();
75                  $('#menu').show().position( {my: "left top", of: event} );          });
76    
77            $('.settings').click( function(event) {
78    
79                  $('#menu').menu( {                  $('#menu').menu( {
80                          select: function(event2,ui) {                          select: function(event2,ui) {
81                                          alert( ui.item.text() );                                          alert( ui.item.text() );
                                         //closeMenu();  
82                                  },                                  },
83                          create: function(event3,ui) {                          create: function(event3,ui) {
84                                  menu = 1;                                  menu = 1;
# Line 86  $(document).ready( function() { Line 87  $(document).ready( function() {
87                                  my: "left", of: event                                  my: "left", of: event
88                          }*/                          }*/
89                  });                  });
90                    $('#menu').show().position( {my: "left top", of: event} );
91                  event.stopPropagation();                  event.stopPropagation();
92          });          });
93    
# Line 164  function refreshData() { Line 166  function refreshData() {
166                                  vm.find('.console').data('conurl', conurl);                                  vm.find('.console').data('conurl', conurl);
167                                  vm.find('.console').data('session', session);                                  vm.find('.console').data('session', session);
168                                  vm.find('.console').data('name', name);                                  vm.find('.console').data('name', name);
169                                    vm.find('.settings').hide();
170                                  vm.find('.actionstop').show();                                  vm.find('.actionstop').show();
171                                  vm.find('.actionstart').hide();                                  vm.find('.actionstart').hide();
172                                  vm.find('.os').text(' - ' + os);                                  vm.find('.os').text(' - ' + os);
# Line 186  function refreshData() { Line 189  function refreshData() {
189    
190                                  vm.find('.network').hide();                                  vm.find('.network').hide();
191                                  vm.find('.console').hide();                                  vm.find('.console').hide();
192                                    vm.find('.settings').show();
193                                  vm.find('.actionstop').hide();                                  vm.find('.actionstop').hide();
194                                  vm.find('.actionstart').show();                                  vm.find('.actionstart').show();
195                                  vm.find('.cpu_graph').hide();                                  vm.find('.cpu_graph').hide();
# Line 226  function doAction(action, uuid, vm) { Line 230  function doAction(action, uuid, vm) {
230          });          });
231  }  }
232    
233  function console(url, session, name) {  function openConsole(url, session, name) {
234          if (url == '')          if (url == '')
235                  return;                  return;
236    
# Line 345  foreach($vms_array as $vm) { Line 349  foreach($vms_array as $vm) {
349                                  <a href='#' style='display:none;' class='console'>                                  <a href='#' style='display:none;' class='console'>
350                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>                                          <img src='gfx/icon-terminal.png' style='vertical-align: middle;'>
351                                  </a>                                  </a>
352                                    <a href='#' style='display:none;' class='settings'>
353                                            <img src='gfx/icon-settings16.png' style='vertical-align: middle;'>
354                                    </a>
355                          </td>                          </td>
356                  </tr>                  </tr>
357    
# Line 398  foreach($vms_array as $vm) { Line 405  foreach($vms_array as $vm) {
405  <?PHP } ?>  <?PHP } ?>
406  </td></tr></table>  </td></tr></table>
407    
408    <br>
409    
410  <ul id="menu">  <ul id="menu">
411          <li><a href="#">Item 1</a></li>          <li><a href="#">Set Memory Size</a></li>
412          <li><a href="#">Item 2</a></li>          <li><a href="#">Set CPU Count</a></li>
413          <li><a href="#">Item 3</a>  
414    
415    <!--    <li><a href="#">Item 3</a>
416                  <ul>                  <ul>
417                          <li><a href="#">Item 3-1</a></li>                          <li><a href="#">Item 3-1</a></li>
418                          <li><a href="#">Item 3-2</a></li>                          <li><a href="#">Item 3-2</a></li>
# Line 411  foreach($vms_array as $vm) { Line 422  foreach($vms_array as $vm) {
422                  </ul>                  </ul>
423          </li>          </li>
424          <li><a href="#">Item 4</a></li>          <li><a href="#">Item 4</a></li>
425          <li><a href="#">Item 5</a></li>          <li><a href="#">Item 5</a></li>-->
426  </ul>  </ul>
427    
428  </body></html>  </body></html>

Legend:
Removed from v.1956  
changed lines
  Added in v.1957

  ViewVC Help
Powered by ViewVC 1.1.20