mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-04-28 21:28:35 +00:00

To avoid visual glitches that can happen if a text value is wrongly interpreted as html. And while quite a few rows already had a rather restricted format that avoided this in the first place it still doesn't hurt to encode anyway, that also protects against the case where a backend format becomes less restrictive in the future. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
100 lines
2.1 KiB
JavaScript
100 lines
2.1 KiB
JavaScript
Ext.define('PMG.SystemOptions', {
|
|
extend: 'Proxmox.grid.ObjectGrid',
|
|
xtype: 'pmgSystemOptions',
|
|
|
|
monStoreErrors: true,
|
|
interval: 5000,
|
|
cwidth1: 200,
|
|
|
|
url: '/api2/json/config/admin',
|
|
editorConfig: {
|
|
url: '/api2/extjs/config/admin',
|
|
onlineHelp: 'pmgconfig_systemconfig',
|
|
},
|
|
|
|
controller: {
|
|
xclass: 'Ext.app.ViewController',
|
|
|
|
onEdit: function() {
|
|
let view = this.getView();
|
|
view.run_editor();
|
|
},
|
|
},
|
|
|
|
tbar: [{
|
|
text: gettext('Edit'),
|
|
xtype: 'proxmoxButton',
|
|
disabled: true,
|
|
handler: 'onEdit',
|
|
}],
|
|
|
|
listeners: {
|
|
itemdblclick: 'onEdit',
|
|
},
|
|
|
|
add_proxy_row: function(name, text, opts) {
|
|
let me = this;
|
|
|
|
opts = opts || {};
|
|
me.rows = me.rows || {};
|
|
|
|
me.rows[name] = {
|
|
required: true,
|
|
defaultValue: Proxmox.Utils.noneText,
|
|
header: text,
|
|
editor: {
|
|
xtype: 'proxmoxWindowEdit',
|
|
onlineHelp: 'pmgconfig_systemconfig',
|
|
subject: text,
|
|
items: {
|
|
xtype: 'proxmoxtextfield',
|
|
vtype: 'HttpProxy',
|
|
name: name,
|
|
deleteEmpty: true,
|
|
emptyText: Proxmox.Utils.noneText,
|
|
labelWidth: Proxmox.Utils.compute_min_label_width(text, opts.labelWidth),
|
|
fieldLabel: text,
|
|
},
|
|
},
|
|
};
|
|
},
|
|
|
|
initComponent: function() {
|
|
let me = this;
|
|
|
|
me.add_boolean_row('dailyreport', gettext('Send daily admin reports'), {
|
|
defaultValue: 1,
|
|
});
|
|
|
|
me.add_boolean_row('advfilter', gettext('Use advanced statistic filters'), {
|
|
defaultValue: 0,
|
|
});
|
|
|
|
me.add_integer_row('statlifetime', gettext('User statistic lifetime (days)'), {
|
|
minValue: 1,
|
|
defaultValue: 7,
|
|
deleteEmpty: true,
|
|
});
|
|
|
|
me.add_text_row('email', gettext("Administrator EMail"), {
|
|
deleteEmpty: true,
|
|
defaultValue: Proxmox.Utils.noneText,
|
|
renderer: Ext.htmlEncode,
|
|
});
|
|
|
|
me.add_text_row('admin-mail-from', gettext("'From:' for Admin Mail"), {
|
|
deleteEmpty: true,
|
|
defaultValue: Proxmox.Utils.noneText,
|
|
renderer: Ext.htmlEncode,
|
|
});
|
|
|
|
me.add_proxy_row('http_proxy', gettext("HTTP proxy"));
|
|
|
|
me.callParent();
|
|
|
|
me.on('activate', me.rstore.startUpdate);
|
|
me.on('deactivate', me.rstore.stopUpdate);
|
|
me.on('destroy', me.rstore.stopUpdate);
|
|
},
|
|
});
|