- 31 Aug, 2015 1 commit
-
-
Thomas Lamprecht authored
As the size parameter is now deprecated and was replaced with the new rootfs parameter, use that one when creating an container. So we don't get an 'parameter verification failed' error. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
-
- 29 Aug, 2015 2 commits
-
-
Dietmar Maurer authored
-
Dietmar Maurer authored
-
- 28 Aug, 2015 3 commits
-
-
Dietmar Maurer authored
-
Alexandre Derumier authored
Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
-
Alexandre Derumier authored
Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
-
- 26 Aug, 2015 3 commits
-
-
Wolfgang Link authored
this is necessary because we use image files for both.
-
Emmanuel Kasper authored
The original fix using a config Object was a bit overkill, this works well too , requires less code in the child classes, and is more consistent with rest of the code we have.
-
Emmanuel Kasper authored
We already did this for ExtJS4, just copying from there
-
- 25 Aug, 2015 2 commits
-
-
Wolfgang Link authored
-
Dietmar Maurer authored
It is currently unclear howto restrict storages for container usage. The 'rootdir' property does not work anymore, because we can now create containers on normal VM image files.
-
- 24 Aug, 2015 1 commit
-
-
Dietmar Maurer authored
-
- 20 Aug, 2015 2 commits
-
-
Dietmar Maurer authored
-
Dietmar Maurer authored
-
- 18 Aug, 2015 6 commits
-
-
Dietmar Maurer authored
-
Emmanuel Kasper authored
Ext.applyIf(me, { title: gettext('Search') }); in initComponent() is not safe anymore with ExtJS5. Since the 'title' property is existing at that stage (even if with a null or undefined value), Ext.applyIf will not update it.
-
Emmanuel Kasper authored
-
Emmanuel Kasper authored
ExtJS refuses with version to have an id set to an empty string, hence we can't use our "key" property as a custom idProperty (an empty string for key is ok for us, and is used to set back a PVE property to its default value) We always access the KeyValues entities via their Key property, so this change should be safe.
-
Emmanuel Kasper authored
Since ExtJS5, when doing such a declaration, Ext.applyIf(me, { items: { xtype: 'pveKVComboBox', comboItems: data, } }); the comboItems property is passed in the parent class as a config object, instead of being directly available via this.comboItems Since using a config object is the recommended way of passing parameters int the ExtJS class model, adapt the parent class to use the new paradigm.
-
Dietmar Maurer authored
-
- 17 Aug, 2015 3 commits
-
-
Dietmar Maurer authored
-
Wolfgang Link authored
-
Wolfgang Link authored
in the pvesm and pvesh we are giving the correct size of the used space from a disk. this change make the output of Gui and CLI consistent.
-
- 12 Aug, 2015 1 commit
-
-
Wolfgang Bumiller authored
Fixes #681
-
- 11 Aug, 2015 1 commit
-
-
Wolfgang Bumiller authored
The previous code stripped *all* combinations of zero or more letters and digits followed by a dot of an interface name to retrieve the VLANID. At the same time the supposedly opposite code for IF_VLAN_RAW_DEVICE only actually extracts the part up to the *first* dot. Thus an interface named 'a.b.0' would have a VLANID of 0 and a raw device name of just 'a'. I also don't see a reason to limit the removed portions to alphanumeric characters. I.e. an interface named tap-test.0 would result in a VLANID of 'tap-0' and an IF_VLAN_RAW_DEVICE of 'test'. A simple shell substitution seems to do a much better job and is more efficient than forking out two processes with a pipe.
-
- 10 Aug, 2015 2 commits
-
-
Dietmar Maurer authored
-
Wolfgang Link authored
if the packet on the opt list is not installed, it will not shown.
-
- 07 Aug, 2015 2 commits
-
-
Dietmar Maurer authored
-
Dietmar Maurer authored
New LXC containers can use raw images, so the distinction between 'images' and 'rootdir' does not really makes sense now.
-
- 06 Aug, 2015 3 commits
-
-
Emmanuel Kasper authored
-
Dietmar Maurer authored
-
Dietmar Maurer authored
-
- 31 Jul, 2015 2 commits
-
-
Dietmar Maurer authored
-
Wolfgang Bumiller authored
-
- 30 Jul, 2015 6 commits
-
-
Alen Grizonic authored
lxc added to additional GUI pool functions (also for ExtJS5) Signed-off-by: Alen Grizonic <a.grizonic@proxmox.com>
-
Dietmar Maurer authored
-
Thomas Lamprecht authored
Instead of a lot of hardcoded if's use JSONSchema::parse_config to parse and validate vzdump.conf. To do that $confdesc was extended to match a valid schema. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
-
Emmanuel Kasper authored
It seems that in ExtJS5 the prototype of the Window component already sets some default values to me.buttons and me.layout, hence calling applyIf on these properties will silently fail. me.layout is already set to 'auto' by the framework, we don't need to set that anymore.
-
Emmanuel Kasper authored
This brings consistency with the datacenter tab panel.
-
Emmanuel Kasper authored
-