diff options
Diffstat (limited to 'panes/topmenu.html')
-rw-r--r-- | panes/topmenu.html | 572 |
1 files changed, 286 insertions, 286 deletions
diff --git a/panes/topmenu.html b/panes/topmenu.html index 7042455..98563ce 100644 --- a/panes/topmenu.html +++ b/panes/topmenu.html @@ -1,287 +1,287 @@ -<!--
-
- Main / Top menu
- Copyright (C) 2010-2015 Ian Moore (imoore76 at yahoo dot com)
-
- $Id: topmenu.html 595 2015-04-17 09:50:36Z imoore76 $
-
- -->
-<span></span>
-<script type='text/javascript'>
-/*
- *
- * Main menu at top of interface
- *
- *
- */
-
-// Top menu
-var vboxTopMenuBar = new vboxMenuBar({name: 'vboxTop', language_context: 'UIActionPool'});
-
-var menu = {
- 'name':'vboxTopFile',
- 'label': 'File',
- 'menu':[
- {
- 'name':'fileVMM',
- 'label':'Virtual Media Manager...',
- 'icon':'diskimage',
- 'click':function(){vboxVMMDialog();}
- },
- {
- 'name':'fileImport',
- 'label':'Import Appliance...',
- 'icon':'import',
- 'click':function(){
-
- new vboxWizardImportApplianceDialog().run();
- },
- 'separator': true
- },
- {
- 'name':'fileExport',
- 'label':'Export Appliance...',
- 'icon':'export',
- 'click':function(){new vboxWizardExportApplianceDialog().run();}
- },
- {
- 'name':'filePrefs',
- 'label':'Preferences...',
- 'icon':'global_settings',
- 'click':function(){vboxGlobalPrefsDialog();},
- 'separator':true
- }
- ]
-};
-
-if($('#vboxPane').data('vboxSession').user) {
- if ( $('#vboxPane').data('vboxConfig').authCapabilities.canChangePassword )
- menu['menu'][menu['menu'].length] = {
- 'name' : 'fileChangePW',
- 'label' : 'Change Password',
- 'language_context': 'UIUsers',
- 'icon' : 'register',
- 'click': function() {
- var l = new vboxLoader();
- l.addFileToDOM('panes/userEdit.html');
- l.onLoad = function(){
-
- // Set mode
- $('#vboxUserEdit').trigger('setMode','changePassword');
-
- var buttons = {};
- buttons[trans('OK','QIMessageBox')] = function() {
- var o = $('#vboxUserEdit').find('input[name=opass]').first().val();
- var n1 = $('#vboxUserEdit').find('input[name=npass1]').first().val();
- var n2 = $('#vboxUserEdit').find('input[name=npass2]').first().val();
- if(o.length == 0) {
- vboxAlert(trans('The password you have entered is invalid.','UIUsers'),{'width':'auto'});
- return;
- }
- if(n1.length == 0 || (n1 != n2)) {
- vboxAlert(trans('The passwords you have entered do not match.','UIUsers'),{'width':'auto'});
- return;
- }
- var dialog = this;
- var chp = new vboxLoader();
- chp.add('changePassword',function(d){
- if(d) {
- if(d.success) {
- vboxAlert(trans('Password changed.','UIUsers'),{'width':'auto'});
- $(dialog).remove();
- } else {
- vboxAlert(trans('The password you have entered is invalid.','UIUsers'),{'width':'auto'});
- }
- } else {
- // unknown error
- $(dialog).remove();
- }
- },{'old':o,'new':n1});
- chp.run();
- };
- buttons[trans('Cancel','QIMessageBox')] = function(){
- $(this).remove();
- };
- $('#vboxUserEdit').dialog({'closeOnEscape':false,'width':400,'height':200,'buttons':buttons,'modal':true,'autoOpen':true,'dialogClass':'vboxDialogContent','title':'<img src="images/vbox/register_16px.png" class="vboxDialogTitleIcon" /> '+trans('Change Password','UIUsers')});
- };
- l.run();
- },
- 'separator':true
- };
-
- if ( $('#vboxPane').data('vboxConfig').authCapabilities.canLogout )
- {
- menu['menu'][menu['menu'].length] = {
- 'name' : 'fileLogout',
- // Pre-translated title to append username
- 'label' : trans('Log out - %1','VBoxSelectorWnd').replace('%1',$('#vboxPane').data('vboxSession').user),
- 'icon' : 'exit',
- 'click': function() {
-
- // Show loading screen
- var lm = new vboxLoader();
- lm.showLoading();
-
- // Expire data mediator data
- vboxVMDataMediator.expireAll();
-
- // Unsubscribe from events
- $.when(vboxEventListener.stop()).done(function() {
-
- // remove loading screen
- lm.removeLoading();
-
- var l = new vboxLoader();
- l.noLoadingScreen = true;
- l.add('logout',function(r){
- if ( typeof(r.responseData.url) == 'string' )
- {
- window.location = r.responseData.url;
- }
- else
- {
- location.reload(true);
- }
- });
- l.onLoad = function(loader){
- loader.hideRoot = false;
- };
- l.hideRoot = true;
- l.run();
- });
- }
- };
- }
- else
- {
- menu['menu'][menu['menu'].length] = {
- 'name' : 'fileLogout',
- 'label' : trans('Logged in as %1','VBoxSelectorWnd').replace('%1',$('#vboxPane').data('vboxSession').user),
- 'icon' : 'exit',
- 'click': function() {
- return false;
- }
- };
- }
-
-}
-
-vboxTopMenuBar.addMenu(menu);
-
-//VM List Context menu for each VM
-var sChildren = [];
-for(var i = 0; i < vboxVMActions.stop_actions.length; i++) {
- sChildren[sChildren.length] = vboxVMActions[vboxVMActions.stop_actions[i]];
-}
-
-
-vboxTopMenuBar.addMenu({
- 'name': 'vboxTopMachine',
- 'label': 'Machine',
- 'enabled' : function(chooser) {
- return (!chooser || (chooser.selectionMode != vboxSelectionModeSingleGroup));
- },
- 'menu':[
- vboxVMActions['new'],
- vboxVMActions['add'],
- vboxVMActions['settings'],
- vboxVMActions['clone'],
- vboxVMActions['remove'],
- vboxVMActions['group'],
- $.extend({},vboxVMActions['start'],{'separator':true}),
- vboxVMActions['pause'],
- vboxVMActions['reset'],
- $.extend({},vboxVMActions['stop'],{'children':sChildren}),
- $.extend({},vboxVMActions['discard'],{'separator':true}),
- vboxVMActions['logs'],
- vboxVMActions['refresh'],
- ]
-});
-
-
-vboxTopMenuBar.addMenu({
- 'name':'vboxTopGroup',
- 'label':'Group',
- 'enabled' : function(chooser) {
- return (chooser && (chooser.selectionMode == vboxSelectionModeSingleGroup));
- },
- 'menu':[
- vboxVMGroupActions['newmachine'],
- vboxVMGroupActions['addmachine'],
- $.extend({}, vboxVMGroupActions['rename'], {separator:true}),
- vboxVMGroupActions['ungroup'],
- $.extend({},vboxVMActions['start'],{'name':'start','separator' : true}),
- vboxVMActions['pause'],
- vboxVMActions['reset'],
- $.extend({},vboxVMActions['stop'],{'children':sChildren}),
- $.extend({},vboxVMActions['discard'],{'separator' : true}),
- vboxVMActions['refresh'],
- $.extend({}, vboxVMGroupActions['sort'], {separator:true})
- ]
-});
-
-vboxTopMenuBar.addMenu({
- 'name':'vboxTopHelp',
- 'label': 'Help',
- 'language_context': 'UIHelpButton',
- 'menu':[
- {
- 'name':'helpvbox',
- 'label':'VirtualBox User Manual',
- 'icon':'site',
- 'click':function(){
- window.open('http://www.virtualbox.org/manual/','manual');
- }
- },
-
- {
- 'name':'helpAbout',
- 'label':'About',
- 'icon':'help',
- 'click':function(){
-
- $('#vboxPane').append($('<div />').attr({'id':'vboxAbout','class':'vboxDialogContent','style':'display: none; width: 500px;'}));
-
- var l = new vboxLoader();
- l.addFileToDOM('panes/about.html',$('#vboxAbout'));
- l.onLoad = function() {
- var buttons = {};
- buttons[trans('Close','UIVMLogViewer')] = function() { $(this).empty().remove(); };
-
- $('#vboxAbout').dialog({'closeOnEscape':false,'width':500,'height':'auto','buttons':buttons,'modal':true,'autoOpen':true,'dialogClass':'vboxDialogContent','title':'<img src="images/vbox/help_16px.png" class="vboxDialogTitleIcon" /> phpVirtualBox'});
- };
- l.run();
- }
- }
-
- ]
-});
-
-vboxTopMenuBar.renderTo('vboxMenu');
-
-$('#vboxPane').on('vmSelectionListChanged vmGroupDefsSaving vmGroupDefsSaved',function(e){
- vboxTopMenuBar.update(vboxChooser);
-
-}).on('vboxEvents', function(e, eventList) {
-
- var updateMenuBar = false;
- for(var i = 0; i < eventList.length && !updateMenuBar; i++) {
-
- switch(eventList[i].eventType) {
- case 'OnMachineStateChanged':
- case 'OnSessionStateChanged':
- if(vboxChooser.isVMSelected(eventList[i].machineId)) {
- updateMenuBar = true;
- }
- break;
- }
- }
-
- if(updateMenuBar) {
- vboxTopMenuBar.update(vboxChooser);
- }
-
-});
-
-
+<!-- + + Main / Top menu + Copyright (C) 2010-2015 Ian Moore (imoore76 at yahoo dot com) + + $Id: topmenu.html 595 2015-04-17 09:50:36Z imoore76 $ + + --> +<span></span> +<script type='text/javascript'> +/* + * + * Main menu at top of interface + * + * + */ + +// Top menu +var vboxTopMenuBar = new vboxMenuBar({name: 'vboxTop', language_context: 'UIActionPool'}); + +var menu = { + 'name':'vboxTopFile', + 'label': 'File', + 'menu':[ + { + 'name':'fileVMM', + 'label':'Virtual Media Manager...', + 'icon':'diskimage', + 'click':function(){vboxVMMDialog();} + }, + { + 'name':'fileImport', + 'label':'Import Appliance...', + 'icon':'import', + 'click':function(){ + + new vboxWizardImportApplianceDialog().run(); + }, + 'separator': true + }, + { + 'name':'fileExport', + 'label':'Export Appliance...', + 'icon':'export', + 'click':function(){new vboxWizardExportApplianceDialog().run();} + }, + { + 'name':'filePrefs', + 'label':'Preferences...', + 'icon':'global_settings', + 'click':function(){vboxGlobalPrefsDialog();}, + 'separator':true + } + ] +}; + +if($('#vboxPane').data('vboxSession').user) { + if ( $('#vboxPane').data('vboxConfig').authCapabilities.canChangePassword ) + menu['menu'][menu['menu'].length] = { + 'name' : 'fileChangePW', + 'label' : 'Change Password', + 'language_context': 'UIUsers', + 'icon' : 'register', + 'click': function() { + var l = new vboxLoader(); + l.addFileToDOM('panes/userEdit.html'); + l.onLoad = function(){ + + // Set mode + $('#vboxUserEdit').trigger('setMode','changePassword'); + + var buttons = {}; + buttons[trans('OK','QIMessageBox')] = function() { + var o = $('#vboxUserEdit').find('input[name=opass]').first().val(); + var n1 = $('#vboxUserEdit').find('input[name=npass1]').first().val(); + var n2 = $('#vboxUserEdit').find('input[name=npass2]').first().val(); + if(o.length == 0) { + vboxAlert(trans('The password you have entered is invalid.','UIUsers'),{'width':'auto'}); + return; + } + if(n1.length == 0 || (n1 != n2)) { + vboxAlert(trans('The passwords you have entered do not match.','UIUsers'),{'width':'auto'}); + return; + } + var dialog = this; + var chp = new vboxLoader(); + chp.add('changePassword',function(d){ + if(d) { + if(d.success) { + vboxAlert(trans('Password changed.','UIUsers'),{'width':'auto'}); + $(dialog).remove(); + } else { + vboxAlert(trans('The password you have entered is invalid.','UIUsers'),{'width':'auto'}); + } + } else { + // unknown error + $(dialog).remove(); + } + },{'old':o,'new':n1}); + chp.run(); + }; + buttons[trans('Cancel','QIMessageBox')] = function(){ + $(this).remove(); + }; + $('#vboxUserEdit').dialog({'closeOnEscape':false,'width':400,'height':200,'buttons':buttons,'modal':true,'autoOpen':true,'dialogClass':'vboxDialogContent','title':'<img src="images/vbox/register_16px.png" class="vboxDialogTitleIcon" /> '+trans('Change Password','UIUsers')}); + }; + l.run(); + }, + 'separator':true + }; + + if ( $('#vboxPane').data('vboxConfig').authCapabilities.canLogout ) + { + menu['menu'][menu['menu'].length] = { + 'name' : 'fileLogout', + // Pre-translated title to append username + 'label' : trans('Log out - %1','VBoxSelectorWnd').replace('%1',$('#vboxPane').data('vboxSession').user), + 'icon' : 'exit', + 'click': function() { + + // Show loading screen + var lm = new vboxLoader(); + lm.showLoading(); + + // Expire data mediator data + vboxVMDataMediator.expireAll(); + + // Unsubscribe from events + $.when(vboxEventListener.stop()).done(function() { + + // remove loading screen + lm.removeLoading(); + + var l = new vboxLoader(); + l.noLoadingScreen = true; + l.add('logout',function(r){ + if ( typeof(r.responseData.url) == 'string' ) + { + window.location = r.responseData.url; + } + else + { + location.reload(true); + } + }); + l.onLoad = function(loader){ + loader.hideRoot = false; + }; + l.hideRoot = true; + l.run(); + }); + } + }; + } + else + { + menu['menu'][menu['menu'].length] = { + 'name' : 'fileLogout', + 'label' : trans('Logged in as %1','VBoxSelectorWnd').replace('%1',$('#vboxPane').data('vboxSession').user), + 'icon' : 'exit', + 'click': function() { + return false; + } + }; + } + +} + +vboxTopMenuBar.addMenu(menu); + +//VM List Context menu for each VM +var sChildren = []; +for(var i = 0; i < vboxVMActions.stop_actions.length; i++) { + sChildren[sChildren.length] = vboxVMActions[vboxVMActions.stop_actions[i]]; +} + + +vboxTopMenuBar.addMenu({ + 'name': 'vboxTopMachine', + 'label': 'Machine', + 'enabled' : function(chooser) { + return (!chooser || (chooser.selectionMode != vboxSelectionModeSingleGroup)); + }, + 'menu':[ + vboxVMActions['new'], + vboxVMActions['add'], + vboxVMActions['settings'], + vboxVMActions['clone'], + vboxVMActions['remove'], + vboxVMActions['group'], + $.extend({},vboxVMActions['start'],{'separator':true}), + vboxVMActions['pause'], + vboxVMActions['reset'], + $.extend({},vboxVMActions['stop'],{'children':sChildren}), + $.extend({},vboxVMActions['discard'],{'separator':true}), + vboxVMActions['logs'], + vboxVMActions['refresh'], + ] +}); + + +vboxTopMenuBar.addMenu({ + 'name':'vboxTopGroup', + 'label':'Group', + 'enabled' : function(chooser) { + return (chooser && (chooser.selectionMode == vboxSelectionModeSingleGroup)); + }, + 'menu':[ + vboxVMGroupActions['newmachine'], + vboxVMGroupActions['addmachine'], + $.extend({}, vboxVMGroupActions['rename'], {separator:true}), + vboxVMGroupActions['ungroup'], + $.extend({},vboxVMActions['start'],{'name':'start','separator' : true}), + vboxVMActions['pause'], + vboxVMActions['reset'], + $.extend({},vboxVMActions['stop'],{'children':sChildren}), + $.extend({},vboxVMActions['discard'],{'separator' : true}), + vboxVMActions['refresh'], + $.extend({}, vboxVMGroupActions['sort'], {separator:true}) + ] +}); + +vboxTopMenuBar.addMenu({ + 'name':'vboxTopHelp', + 'label': 'Help', + 'language_context': 'UIHelpButton', + 'menu':[ + { + 'name':'helpvbox', + 'label':'VirtualBox User Manual', + 'icon':'site', + 'click':function(){ + window.open('http://www.virtualbox.org/manual/','manual'); + } + }, + + { + 'name':'helpAbout', + 'label':'About', + 'icon':'help', + 'click':function(){ + + $('#vboxPane').append($('<div />').attr({'id':'vboxAbout','class':'vboxDialogContent','style':'display: none; width: 500px;'})); + + var l = new vboxLoader(); + l.addFileToDOM('panes/about.html',$('#vboxAbout')); + l.onLoad = function() { + var buttons = {}; + buttons[trans('Close','UIVMLogViewer')] = function() { $(this).empty().remove(); }; + + $('#vboxAbout').dialog({'closeOnEscape':false,'width':500,'height':'auto','buttons':buttons,'modal':true,'autoOpen':true,'dialogClass':'vboxDialogContent','title':'<img src="images/vbox/help_16px.png" class="vboxDialogTitleIcon" /> phpVirtualBox'}); + }; + l.run(); + } + } + + ] +}); + +vboxTopMenuBar.renderTo('vboxMenu'); + +$('#vboxPane').on('vmSelectionListChanged vmGroupDefsSaving vmGroupDefsSaved',function(e){ + vboxTopMenuBar.update(vboxChooser); + +}).on('vboxEvents', function(e, eventList) { + + var updateMenuBar = false; + for(var i = 0; i < eventList.length && !updateMenuBar; i++) { + + switch(eventList[i].eventType) { + case 'OnMachineStateChanged': + case 'OnSessionStateChanged': + if(vboxChooser.isVMSelected(eventList[i].machineId)) { + updateMenuBar = true; + } + break; + } + } + + if(updateMenuBar) { + vboxTopMenuBar.update(vboxChooser); + } + +}); + + </script>
\ No newline at end of file |