]> git.proxmox.com Git - pve-manager.git/blobdiff - www/manager6/Utils.js
use Proxmox.Utils instead of PVE.Utils
[pve-manager.git] / www / manager6 / Utils.js
index 578ba81ece2b9ed04a0e9a6555214584007467e4..e9d382f5bff737eca4f091bf81fda3a34469b453 100644 (file)
@@ -185,24 +185,9 @@ Ext.define('PVE.Utils', { utilities: {
        return fa.join(', ');
     },
 
-    network_iface_types: {
-       eth: gettext("Network Device"),
-       bridge: 'Linux Bridge',
-       bond: 'Linux Bond',
-       OVSBridge: 'OVS Bridge',
-       OVSBond: 'OVS Bond',
-       OVSPort: 'OVS Port',
-       OVSIntPort: 'OVS IntPort'
-    },
-
-    render_network_iface_type: function(value) {
-       return PVE.Utils.network_iface_types[value] ||
-           PVE.Utils.unknownText;
-    },
-
     render_qemu_bios: function(value) {
        if (!value) {
-           return PVE.Utils.defaultText + ' (SeaBIOS)';
+           return Proxmox.Utils.defaultText + ' (SeaBIOS)';
        } else if (value === 'seabios') {
            return "SeaBIOS";
        } else if (value === 'ovmf') {
@@ -214,7 +199,7 @@ Ext.define('PVE.Utils', { utilities: {
 
     render_scsihw: function(value) {
        if (!value) {
-           return PVE.Utils.defaultText + ' (LSI 53C895A)';
+           return Proxmox.Utils.defaultText + ' (LSI 53C895A)';
        } else if (value === 'lsi') {
            return 'LSI 53C895A';
        } else if (value === 'lsi53c810') {
@@ -284,8 +269,8 @@ Ext.define('PVE.Utils', { utilities: {
     },
 
     render_kvm_language: function (value) {
-       if (!value) {
-           return PVE.Utils.defaultText;
+       if (!value || value === '__default__') {
+           return Proxmox.Utils.defaultText;
        }
        var text = PVE.Utils.kvm_keymaps[value];
        if (text) {
@@ -305,7 +290,7 @@ Ext.define('PVE.Utils', { utilities: {
 
     render_console_viewer: function(value) {
        if (!value || value === '__default__') {
-           return PVE.Utils.defaultText + ' (HTML5)';
+           return Proxmox.Utils.defaultText + ' (HTML5)';
        } else if (value === 'vv') {
            return  'SPICE (remote-viewer)';
        } else if (value === 'html5') {
@@ -315,51 +300,9 @@ Ext.define('PVE.Utils', { utilities: {
        }
     },
 
-    language_map: {
-       zh_CN: 'Chinese',
-       ca: 'Catalan',
-       da: 'Danish',
-       en: 'English',
-       eu: 'Euskera (Basque)',
-       fr: 'French',
-       de: 'German',
-       it: 'Italian',
-       ja: 'Japanese',
-       nb: 'Norwegian (Bokmal)',
-       nn: 'Norwegian (Nynorsk)',
-       fa: 'Persian (Farsi)',
-       pl: 'Polish',
-       pt_BR: 'Portuguese (Brazil)',
-       ru: 'Russian',
-       sl: 'Slovenian',
-       es: 'Spanish',
-       sv: 'Swedish',
-       tr: 'Turkish'
-    },
-
-    render_language: function (value) {
-       if (!value) {
-           return PVE.Utils.defaultText + ' (English)';
-       }
-       var text = PVE.Utils.language_map[value];
-       if (text) {
-           return text + ' (' + value + ')';
-       }
-       return value;
-    },
-
-    language_array: function() {
-       var data = [['__default__', PVE.Utils.render_language('')]];
-       Ext.Object.each(PVE.Utils.language_map, function(key, value) {
-           data.push([key, PVE.Utils.render_language(value)]);
-       });
-
-       return data;
-    },
-
     render_kvm_vga_driver: function (value) {
        if (!value) {
-           return PVE.Utils.defaultText;
+           return Proxmox.Utils.defaultText;
        }
        var text = PVE.Utils.kvm_vga_drivers[value];
        if (text) {
@@ -396,46 +339,6 @@ Ext.define('PVE.Utils', { utilities: {
        return res;
     },
 
-    authOK: function() {
-       return Ext.util.Cookies.get('PVEAuthCookie');
-    },
-
-    authClear: function() {
-       Ext.util.Cookies.clear("PVEAuthCookie");
-    },
-
-    // fixme: remove - not needed?
-    gridLineHeigh: function() {
-       return 21;
-
-       //if (Ext.isGecko)
-       //return 23;
-       //return 21;
-    },
-
-    extractRequestError: function(result, verbose) {
-       var msg = gettext('Successful');
-
-       if (!result.success) {
-           msg = gettext("Unknown error");
-           if (result.message) {
-               msg = result.message;
-               if (result.status) {
-                   msg += ' (' + result.status + ')';
-               }
-           }
-           if (verbose && Ext.isObject(result.errors)) {
-               msg += "<br>";
-               Ext.Object.each(result.errors, function(prop, desc) {
-                   msg += "<br><b>" + Ext.htmlEncode(prop) + "</b>: " +
-                       Ext.htmlEncode(desc);
-               });
-           }
-       }
-
-       return msg;
-    },
-
     extractFormActionError: function(action) {
        var msg;
        switch (action.failureType) {
@@ -451,299 +354,12 @@ Ext.define('PVE.Utils', { utilities: {
            break;
        case Ext.form.action.Action.LOAD_FAILURE:
        case Ext.form.action.Action.SERVER_INVALID:
-           msg = PVE.Utils.extractRequestError(action.result, true);
+           msg = Proxmox.Utils.extractRequestError(action.result, true);
            break;
        }
        return msg;
     },
 
-    // Ext.Ajax.request
-    API2Request: function(reqOpts) {
-
-       var newopts = Ext.apply({
-           waitMsg: gettext('Please wait...')
-       }, reqOpts);
-
-       if (!newopts.url.match(/^\/api2/)) {
-           newopts.url = '/api2/extjs' + newopts.url;
-       }
-       delete newopts.callback;
-
-       var createWrapper = function(successFn, callbackFn, failureFn) {
-           Ext.apply(newopts, {
-               success: function(response, options) {
-                   if (options.waitMsgTarget) {
-                       if (PVE.Utils.toolkit === 'touch') {
-                           options.waitMsgTarget.setMasked(false);
-                       } else {
-                           options.waitMsgTarget.setLoading(false);
-                       }
-                   }
-                   var result = Ext.decode(response.responseText);
-                   response.result = result;
-                   if (!result.success) {
-                       response.htmlStatus = PVE.Utils.extractRequestError(result, true);
-                       Ext.callback(callbackFn, options.scope, [options, false, response]);
-                       Ext.callback(failureFn, options.scope, [response, options]);
-                       return;
-                   }
-                   Ext.callback(callbackFn, options.scope, [options, true, response]);
-                   Ext.callback(successFn, options.scope, [response, options]);
-               },
-               failure: function(response, options) {
-                   if (options.waitMsgTarget) {
-                       if (PVE.Utils.toolkit === 'touch') {
-                           options.waitMsgTarget.setMasked(false);
-                       } else {
-                           options.waitMsgTarget.setLoading(false);
-                       }
-                   }
-                   response.result = {};
-                   try {
-                       response.result = Ext.decode(response.responseText);
-                   } catch(e) {}
-                   var msg = gettext('Connection error') + ' - server offline?';
-                   if (response.aborted) {
-                       msg = gettext('Connection error') + ' - aborted.';
-                   } else if (response.timedout) {
-                       msg = gettext('Connection error') + ' - Timeout.';
-                   } else if (response.status && response.statusText) {
-                       msg = gettext('Connection error') + ' ' + response.status + ': ' + response.statusText;
-                   }
-                   response.htmlStatus = msg;
-                   Ext.callback(callbackFn, options.scope, [options, false, response]);
-                   Ext.callback(failureFn, options.scope, [response, options]);
-               }
-           });
-       };
-
-       createWrapper(reqOpts.success, reqOpts.callback, reqOpts.failure);
-
-       var target = newopts.waitMsgTarget;
-       if (target) {
-           if (PVE.Utils.toolkit === 'touch') {
-               target.setMasked({ xtype: 'loadmask', message: newopts.waitMsg} );
-           } else {
-               // Note: ExtJS bug - this does not work when component is not rendered
-               target.setLoading(newopts.waitMsg);
-           }
-       }
-       Ext.Ajax.request(newopts);
-    },
-
-    assemble_field_data: function(values, data) {
-        if (Ext.isObject(data)) {
-           Ext.Object.each(data, function(name, val) {
-               if (values.hasOwnProperty(name)) {
-                    var bucket = values[name];
-                    if (!Ext.isArray(bucket)) {
-                        bucket = values[name] = [bucket];
-                    }
-                    if (Ext.isArray(val)) {
-                        values[name] = bucket.concat(val);
-                    } else {
-                        bucket.push(val);
-                    }
-                } else {
-                   values[name] = val;
-                }
-            });
-       }
-    },
-
-    checked_command: function(orig_cmd) {
-       PVE.Utils.API2Request({
-           url: '/nodes/localhost/subscription',
-           method: 'GET',
-           //waitMsgTarget: me,
-           failure: function(response, opts) {
-               Ext.Msg.alert(gettext('Error'), response.htmlStatus);
-           },
-           success: function(response, opts) {
-               var data = response.result.data;
-
-               if (data.status !== 'Active') {
-                   Ext.Msg.show({
-                       title: gettext('No valid subscription'),
-                       icon: Ext.Msg.WARNING,
-                       msg: PVE.Utils.noSubKeyHtml,
-                       buttons: Ext.Msg.OK,
-                       callback: function(btn) {
-                           if (btn !== 'ok') {
-                               return;
-                           }
-                           orig_cmd();
-                       }
-                   });
-               } else {
-                   orig_cmd();
-               }
-           }
-       });
-    },
-
-    task_desc_table: {
-       diskinit: [ 'Disk', gettext('Initialize Disk with GPT') ],
-       vncproxy: [ 'VM/CT', gettext('Console') ],
-       spiceproxy: [ 'VM/CT', gettext('Console') + ' (Spice)' ],
-       vncshell: [ '', gettext('Shell') ],
-       spiceshell: [ '', gettext('Shell')  + ' (Spice)' ],
-       qmsnapshot: [ 'VM', gettext('Snapshot') ],
-       qmrollback: [ 'VM', gettext('Rollback') ],
-       qmdelsnapshot: [ 'VM', gettext('Delete Snapshot') ],
-       qmcreate: [ 'VM', gettext('Create') ],
-       qmrestore: [ 'VM', gettext('Restore') ],
-       qmdestroy: [ 'VM', gettext('Destroy') ],
-       qmigrate: [ 'VM', gettext('Migrate') ],
-       qmclone: [ 'VM', gettext('Clone') ],
-       qmmove: [ 'VM', gettext('Move disk') ],
-       qmtemplate: [ 'VM', gettext('Convert to template') ],
-       qmstart: [ 'VM', gettext('Start') ],
-       qmstop: [ 'VM', gettext('Stop') ],
-       qmreset: [ 'VM', gettext('Reset') ],
-       qmshutdown: [ 'VM', gettext('Shutdown') ],
-       qmsuspend: [ 'VM', gettext('Suspend') ],
-       qmresume: [ 'VM', gettext('Resume') ],
-       qmconfig: [ 'VM', gettext('Configure') ],
-       vzsnapshot: [ 'CT', gettext('Snapshot') ],
-       vzrollback: [ 'CT', gettext('Rollback') ],
-       vzdelsnapshot: [ 'CT', gettext('Delete Snapshot') ],
-       vzcreate: ['CT', gettext('Create') ],
-       vzrestore: ['CT', gettext('Restore') ],
-       vzdestroy: ['CT', gettext('Destroy') ],
-       vzmigrate: [ 'CT', gettext('Migrate') ],
-       vzclone: [ 'CT', gettext('Clone') ],
-       vztemplate: [ 'CT', gettext('Convert to template') ],
-       vzstart: ['CT', gettext('Start') ],
-       vzstop: ['CT', gettext('Stop') ],
-       vzmount: ['CT', gettext('Mount') ],
-       vzumount: ['CT', gettext('Unmount') ],
-       vzshutdown: ['CT', gettext('Shutdown') ],
-       vzsuspend: [ 'CT', gettext('Suspend') ],
-       vzresume: [ 'CT', gettext('Resume') ],
-       hamigrate: [ 'HA', gettext('Migrate') ],
-       hastart: [ 'HA', gettext('Start') ],
-       hastop: [ 'HA', gettext('Stop') ],
-       srvstart: ['SRV', gettext('Start') ],
-       srvstop: ['SRV', gettext('Stop') ],
-       srvrestart: ['SRV', gettext('Restart') ],
-       srvreload: ['SRV', gettext('Reload') ],
-       cephcreatemon: ['Ceph Monitor', gettext('Create') ],
-       cephdestroymon: ['Ceph Monitor', gettext('Destroy') ],
-       cephcreateosd: ['Ceph OSD', gettext('Create') ],
-       cephdestroyosd: ['Ceph OSD', gettext('Destroy') ],
-       cephcreatepool: ['Ceph Pool', gettext('Create') ],
-       cephdestroypool: ['Ceph Pool', gettext('Destroy') ],
-       imgcopy: ['', gettext('Copy data') ],
-       imgdel: ['', gettext('Erase data') ],
-       download: ['', gettext('Download') ],
-       vzdump: ['', gettext('Backup') ],
-       aptupdate: ['', gettext('Update package database') ],
-       startall: [ '', gettext('Start all VMs and Containers') ],
-       stopall: [ '', gettext('Stop all VMs and Containers') ],
-       migrateall: [ '', gettext('Migrate all VMs and Containers') ]
-    },
-
-    format_task_description: function(type, id) {
-       var farray = PVE.Utils.task_desc_table[type];
-       if (!farray) {
-           return type;
-       }
-       var prefix = farray[0];
-       var text = farray[1];
-       if (prefix) {
-           return prefix + ' ' + id + ' - ' + text;
-       }
-       return text;
-    },
-
-    parse_task_upid: function(upid) {
-       var task = {};
-
-       var res = upid.match(/^UPID:(\S+):([0-9A-Fa-f]{8}):([0-9A-Fa-f]{8,9}):([0-9A-Fa-f]{8}):([^:\s]+):([^:\s]*):([^:\s]+):$/);
-       if (!res) {
-           throw "unable to parse upid '" + upid + "'";
-       }
-       task.node = res[1];
-       task.pid = parseInt(res[2], 16);
-       task.pstart = parseInt(res[3], 16);
-       task.starttime = parseInt(res[4], 16);
-       task.type = res[5];
-       task.id = res[6];
-       task.user = res[7];
-
-       task.desc = PVE.Utils.format_task_description(task.type, task.id);
-
-       return task;
-    },
-
-    format_size: function(size) {
-       /*jslint confusion: true */
-
-       var units = ['', 'Ki', 'Mi', 'Gi', 'Ti', 'Pi', 'Ei', 'Zi', 'Yi'];
-       var num = 0;
-
-       while (size >= 1024 && ((num++)+1) < units.length) {
-           size = size / 1024;
-       }
-
-       return size.toFixed((num > 0)?2:0) + " " + units[num] + "B";
-    },
-
-    format_html_bar: function(per, text) {
-
-       return "<div class='pve-bar-wrap'>" + text + "<div class='pve-bar-border'>" +
-           "<div class='pve-bar-inner' style='width:" + per + "%;'></div>" +
-           "</div></div>";
-
-    },
-
-    format_cpu_bar: function(per1, per2, text) {
-
-       return "<div class='pve-bar-border'>" +
-           "<div class='pve-bar-inner' style='width:" + per1 + "%;'></div>" +
-           "<div class='pve-bar-inner2' style='width:" + per2 + "%;'></div>" +
-           "<div class='pve-bar-text'>" + text + "</div>" +
-           "</div>";
-    },
-
-    format_large_bar: function(per, text) {
-
-       if (!text) {
-           text = per.toFixed(1) + "%";
-       }
-
-       return "<div class='pve-largebar-border'>" +
-           "<div class='pve-largebar-inner' style='width:" + per + "%;'></div>" +
-           "<div class='pve-largebar-text'>" + text + "</div>" +
-           "</div>";
-    },
-
-    format_duration_long: function(ut) {
-
-       var days = Math.floor(ut / 86400);
-       ut -= days*86400;
-       var hours = Math.floor(ut / 3600);
-       ut -= hours*3600;
-       var mins = Math.floor(ut / 60);
-       ut -= mins*60;
-
-       var hours_str = '00' + hours.toString();
-       hours_str = hours_str.substr(hours_str.length - 2);
-       var mins_str = "00" + mins.toString();
-       mins_str = mins_str.substr(mins_str.length - 2);
-       var ut_str = "00" + ut.toString();
-       ut_str = ut_str.substr(ut_str.length - 2);
-
-       if (days) {
-           var ds = days > 1 ? PVE.Utils.daysText : PVE.Utils.dayText;
-           return days.toString() + ' ' + ds + ' ' +
-               hours_str + ':' + mins_str + ':' + ut_str;
-       } else {
-           return hours_str + ':' + mins_str + ':' + ut_str;
-       }
-    },
-
     format_duration_short: function(ut) {
 
        if (ut < 60) {
@@ -764,43 +380,18 @@ Ext.define('PVE.Utils', { utilities: {
        return days.toFixed(1) + 'd';
     },
 
-    yesText: gettext('Yes'),
-    noText: gettext('No'),
-    enabledText: gettext('Enabled'),
-    disabledText: gettext('Disabled'),
-    noneText: gettext('none'),
-    errorText: gettext('Error'),
-    unknownText: gettext('Unknown'),
-    defaultText: gettext('Default'),
-    daysText: gettext('days'),
-    dayText: gettext('day'),
-    runningText: gettext('running'),
-    stoppedText: gettext('stopped'),
-    neverText: gettext('never'),
-    totalText: gettext('Total'),
-    usedText: gettext('Used'),
-    directoryText: gettext('Directory'),
     imagesText: gettext('Disk image'),
     backupFileText: gettext('VZDump backup file'),
     vztmplText: gettext('Container template'),
     isoImageText: gettext('ISO image'),
     containersText: gettext('Container'),
-    stateText: gettext('State'),
-    groupText: gettext('Group'),
-
-    format_expire: function(date) {
-       if (!date) {
-           return PVE.Utils.neverText;
-       }
-       return Ext.Date.format(date, "Y-m-d");
-    },
 
     format_storage_type: function(value, md, record) {
        if (value === 'rbd' && record) {
            value = (record.get('monhost')?'rbd_ext':'pveceph');
        }
        if (value === 'dir') {
-           return PVE.Utils.directoryText;
+           return Proxmox.Utils.directoryText;
        } else if (value === 'nfs') {
            return 'NFS';
        } else if (value === 'glusterfs') {
@@ -828,37 +419,18 @@ Ext.define('PVE.Utils', { utilities: {
        } else if (value === 'drbd') {
            return 'DRBD';
        } else {
-           return PVE.Utils.unknownText;
-       }
-    },
-
-    format_boolean_with_default: function(value) {
-       if (Ext.isDefined(value) && value !== '__default__') {
-           return value ? PVE.Utils.yesText : PVE.Utils.noText;
+           return Proxmox.Utils.unknownText;
        }
-       return PVE.Utils.defaultText;
-    },
-
-    format_boolean: function(value) {
-       return value ? PVE.Utils.yesText : PVE.Utils.noText;
-    },
-
-    format_neg_boolean: function(value) {
-       return !value ? PVE.Utils.yesText : PVE.Utils.noText;
-    },
-
-    format_enabled_toggle: function(value) {
-       return value ? PVE.Utils.enabledText :PVE.Utils.disabledText;
     },
 
     format_ha: function(value) {
-       var text = PVE.Utils.noneText;
+       var text = Proxmox.Utils.noneText;
 
        if (value.managed) {
-           text = value.state || PVE.Utils.noneText;
+           text = value.state || Proxmox.Utils.noneText;
 
-           text += ', ' +  PVE.Utils.groupText + ': ';
-           text += value.group || PVE.Utils.noneText;
+           text += ', ' +  Proxmox.Utils.groupText + ': ';
+           text += value.group || Proxmox.Utils.noneText;
        }
 
        return text;
@@ -924,7 +496,7 @@ Ext.define('PVE.Utils', { utilities: {
            return '';
        }
 
-       return PVE.Utils.format_size(value);
+       return Proxmox.Utils.format_size(value);
     },
 
     render_bandwidth: function(value) {
@@ -932,12 +504,7 @@ Ext.define('PVE.Utils', { utilities: {
            return '';
        }
 
-       return PVE.Utils.format_size(value) + '/s';
-    },
-
-    render_timestamp: function(value, metaData, record, rowIndex, colIndex, store) {
-       var servertime = new Date(value * 1000);
-       return Ext.Date.format(servertime, 'Y-m-d H:i:s');
+       return Proxmox.Utils.format_size(value) + '/s';
     },
 
     render_timestamp_human_readable: function(value) {
@@ -1065,21 +632,6 @@ Ext.define('PVE.Utils', { utilities: {
        return fa + value;
     },
 
-    render_uptime: function(value, metaData, record, rowIndex, colIndex, store) {
-
-       var uptime = value;
-
-       if (uptime === undefined) {
-           return '';
-       }
-
-       if (uptime <= 0) {
-           return '-';
-       }
-
-       return PVE.Utils.format_duration_long(uptime);
-    },
-
     render_support_level: function(value, metaData, record) {
        return PVE.Utils.support_level_hash[value] || '-';
     },
@@ -1088,7 +640,7 @@ Ext.define('PVE.Utils', { utilities: {
        var type = record.data.type;
        var id = record.data.id;
 
-       return PVE.Utils.format_task_description(type, id);
+       return Proxmox.Utils.format_task_description(type, id);
     },
 
     /* render functions for new status panel */
@@ -1121,20 +673,8 @@ Ext.define('PVE.Utils', { utilities: {
        return PVE.Utils.render_size_usage(record.used, record.total);
     },
 
-    dialog_title: function(subject, create, isAdd) {
-       if (create) {
-           if (isAdd) {
-               return gettext('Add') + ': ' + subject;
-           } else {
-               return gettext('Create') + ': ' + subject;
-           }
-       } else {
-           return gettext('Edit') + ': ' + subject;
-       }
-    },
-
     windowHostname: function() {
-       return window.location.hostname.replace(PVE.Utils.IP6_bracket_match,
+       return window.location.hostname.replace(Proxmox.Utils.IP6_bracket_match,
             function(m, addr, offset, original) { return addr; });
     },
 
@@ -1157,7 +697,7 @@ Ext.define('PVE.Utils', { utilities: {
        if (viewer === 'html5') {
            PVE.Utils.openVNCViewer(vmtype, vmid, nodename, vmname);
        } else if (viewer === 'xtermjs') {
-           PVE.Utils.openXtermJSviewer(vmtype, vmid, nodename, vmname);
+           Proxmox.Utils.openXtermJsViewer(vmtype, vmid, nodename, vmname);
        } else if (viewer === 'vv') {
            var url;
            var params = { proxy: PVE.Utils.windowHostname() };
@@ -1190,18 +730,6 @@ Ext.define('PVE.Utils', { utilities: {
        return dv;
     },
 
-    openXtermJSviewer: function(vmtype, vmid, nodename, vmname) {
-       var url = Ext.urlEncode({
-           console: vmtype, // kvm, lxc, upgrade or shell
-           xtermjs: 1,
-           vmid: vmid,
-           vmname: vmname,
-           node: nodename
-       });
-       var nw = window.open("?" + url, '_blank', 'toolbar=no,location=no,status=no,menubar=no,resizable=yes,width=800,height=420');
-       nw.focus();
-    },
-
     openVNCViewer: function(vmtype, vmid, nodename, vmname) {
        var url = Ext.urlEncode({
            console: vmtype, // kvm, lxc, upgrade or shell
@@ -1240,7 +768,7 @@ Ext.define('PVE.Utils', { utilities: {
            }
        };
 
-       PVE.Utils.API2Request({
+       Proxmox.Utils.API2Request({
            url: url,
            params: params,
            method: 'POST',
@@ -1260,61 +788,13 @@ Ext.define('PVE.Utils', { utilities: {
        });
     },
 
-    // comp.setLoading() is buggy in ExtJS 4.0.7, so we
-    // use el.mask() instead
-    setErrorMask: function(comp, msg) {
-       var el = comp.el;
-       if (!el) {
-           return;
-       }
-       if (!msg) {
-           el.unmask();
-       } else {
-           if (msg === true) {
-               el.mask(gettext("Loading..."));
-           } else {
-               el.mask(msg);
-           }
-       }
-    },
-
-    monStoreErrors: function(me, store) {
-       me.mon(store, 'beforeload', function(s, operation, eOpts) {
-           if (!me.loadCount) {
-               me.loadCount = 0; // make sure it is numeric
-               PVE.Utils.setErrorMask(me, true);
-           }
-       });
-
-       // only works with 'pve' proxy
-       me.mon(store.proxy, 'afterload', function(proxy, request, success) {
-           me.loadCount++;
-
-           if (success) {
-               PVE.Utils.setErrorMask(me, false);
-               return;
-           }
-
-           var msg;
-           /*jslint nomen: true */
-           var operation = request._operation;
-           var error = operation.getError();
-           if (error.statusText) {
-               msg = error.statusText + ' (' + error.status + ')';
-           } else {
-               msg = gettext('Connection error');
-           }
-           PVE.Utils.setErrorMask(me, msg);
-       });
-    },
-
     openTreeConsole: function(tree, record, item, index, e) {
        e.stopEvent();
        var nodename = record.data.node;
        var vmid = record.data.vmid;
        var vmname = record.data.name;
        if (record.data.type === 'qemu' && !record.data.template) {
-           PVE.Utils.API2Request({
+           Proxmox.Utils.API2Request({
                url: '/nodes/' + nodename + '/qemu/' + vmid + '/status/current',
                failure: function(response, opts) {
                    Ext.Msg.alert('Error', response.htmlStatus);
@@ -1383,7 +863,7 @@ Ext.define('PVE.Utils', { utilities: {
        }
 
        menu.showAt(event.getXY());
-    }},
+    },
 
     // helper for deleting field which are set to there default values
     delete_if_default: function(values, fieldname, default_val, create) {
@@ -1398,46 +878,14 @@ Ext.define('PVE.Utils', { utilities: {
 
            delete values[fieldname];
        }
-    },
+    }
+},
 
     singleton: true,
     constructor: function() {
        var me = this;
        Ext.apply(me, me.utilities);
-
-       var IPV4_OCTET = "(?:25[0-5]|(?:[1-9]|1[0-9]|2[0-4])?[0-9])";
-       var IPV4_REGEXP = "(?:(?:" + IPV4_OCTET + "\\.){3}" + IPV4_OCTET + ")";
-       var IPV6_H16 = "(?:[0-9a-fA-F]{1,4})";
-       var IPV6_LS32 = "(?:(?:" + IPV6_H16 + ":" + IPV6_H16 + ")|" + IPV4_REGEXP + ")";
-
-
-       me.IP4_match = new RegExp("^(?:" + IPV4_REGEXP + ")$");
-       me.IP4_cidr_match = new RegExp("^(?:" + IPV4_REGEXP + ")\/([0-9]{1,2})$");
-
-       var IPV6_REGEXP = "(?:" +
-           "(?:(?:"                                                  + "(?:" + IPV6_H16 + ":){6})" + IPV6_LS32 + ")|" +
-           "(?:(?:"                                         +   "::" + "(?:" + IPV6_H16 + ":){5})" + IPV6_LS32 + ")|" +
-           "(?:(?:(?:"                           + IPV6_H16 + ")?::" + "(?:" + IPV6_H16 + ":){4})" + IPV6_LS32 + ")|" +
-           "(?:(?:(?:(?:" + IPV6_H16 + ":){0,1}" + IPV6_H16 + ")?::" + "(?:" + IPV6_H16 + ":){3})" + IPV6_LS32 + ")|" +
-           "(?:(?:(?:(?:" + IPV6_H16 + ":){0,2}" + IPV6_H16 + ")?::" + "(?:" + IPV6_H16 + ":){2})" + IPV6_LS32 + ")|" +
-           "(?:(?:(?:(?:" + IPV6_H16 + ":){0,3}" + IPV6_H16 + ")?::" + "(?:" + IPV6_H16 + ":){1})" + IPV6_LS32 + ")|" +
-           "(?:(?:(?:(?:" + IPV6_H16 + ":){0,4}" + IPV6_H16 + ")?::" +                         ")" + IPV6_LS32 + ")|" +
-           "(?:(?:(?:(?:" + IPV6_H16 + ":){0,5}" + IPV6_H16 + ")?::" +                         ")" + IPV6_H16  + ")|" +
-           "(?:(?:(?:(?:" + IPV6_H16 + ":){0,7}" + IPV6_H16 + ")?::" +                         ")"             + ")"  +
-           ")";
-
-       me.IP6_match = new RegExp("^(?:" + IPV6_REGEXP + ")$");
-       me.IP6_cidr_match = new RegExp("^(?:" + IPV6_REGEXP + ")\/([0-9]{1,3})$");
-       me.IP6_bracket_match = new RegExp("^\\[(" + IPV6_REGEXP + ")\\]");
-
-       me.IP64_match = new RegExp("^(?:" + IPV6_REGEXP + "|" + IPV4_REGEXP + ")$");
-
-       var DnsName_REGEXP = "(?:(([a-zA-Z0-9]([a-zA-Z0-9\\-]*[a-zA-Z0-9])?)\\.)*([A-Za-z0-9]([A-Za-z0-9\\-]*[A-Za-z0-9])?))";
-       me.DnsName_match = new RegExp("^" + DnsName_REGEXP + "$");
-
-       me.HostPort_match = new RegExp("^(" + IPV4_REGEXP + "|" + DnsName_REGEXP + ")(:\\d+)?$");
-       me.HostPortBrackets_match = new RegExp("^\\[(?:" + IPV6_REGEXP + "|" + IPV4_REGEXP + "|" + DnsName_REGEXP + ")\\](:\\d+)?$");
-       me.IP6_dotnotation_match = new RegExp("^" + IPV6_REGEXP + "(\\.\\d+)?$");
     }
+
 });