This commit is contained in:
Dietmar Maurer 2012-02-10 08:38:06 +01:00
parent 940e4d9ea6
commit efb38000c7
2 changed files with 24 additions and 5 deletions

View File

@ -1,5 +1,13 @@
pve-manager (2.0-20) unstable; urgency=low pve-manager (2.0-20) unstable; urgency=low
* improve user management
* implement permission checks
* improve backup GUI (allow to select lzo/gzip)
* add pools to resource list
* fix bug #85: allow root@pam to generate tickets for other users * fix bug #85: allow root@pam to generate tickets for other users
* fix bug #86: correctly decode cookie * fix bug #86: correctly decode cookie

View File

@ -1,14 +1,25 @@
Ext.define('PVE.form.CompressionSelector', { Ext.define('PVE.form.CPUModelSelector', {
extend: 'PVE.form.KVComboBox', extend: 'PVE.form.KVComboBox',
alias: ['widget.pveCompressionSelector'], alias: ['widget.CPUModelSelector'],
initComponent: function() { initComponent: function() {
var me = this; var me = this;
me.data = [ me.data = [
['', 'none'], ['', 'Default (qemu64)'],
['lzo', 'LZO (fast)'], ['486', '486'],
['gzip', 'GZIP (good)'], ['athlon', 'athlon'],
['core2duo', 'core2duo'],
['coreduo', 'coreduo'],
['kvm32', 'kvm32'],
['kvm64', 'kvm64'],
['pentium', 'pentium'],
['pentium2', 'pentium2'],
['pentium3', 'pentium3'],
['phenom', 'phenom'],
['qemu32', 'qemu32'],
['qemu64', 'qemu64'],
['host', 'host']
]; ];
me.callParent(); me.callParent();