[pve-devel] applied: [pmg-devel] [PATCH pmg-gui 1/1] overwrite run_editor of base class

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [pmg-devel] [PATCH manager 1/1] overwrite the built-in 'run_editor' function

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [PATCH widget-toolkit 2/2] add a checkbox to edit windows for advanced options

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [PATCH widget-toolkit 1/2] add advanced options to the input panel

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [PATCH widget-toolkit 2/2] add a checkbox to edit windows for advanced options

2018-04-06 Thread Thomas Lamprecht
Am 04/05/2018 um 04:03 PM schrieb Dominik Csapak: if the inputpanel has advanced options, show a checkbox to show/hide them Signed-off-by: Dominik Csapak --- window/Edit.js | 39 +++ 1 file changed, 39 insertions(+) diff --git

[pve-devel] [RFC qemu-server] API/create: move locking inside worker

2018-04-06 Thread Thomas Lamprecht
Move the locking inside worker, so that the process doing the actual work (create or restore) holds the lock, and can call functions which do locking without deadlocking. This mirrors the behaviour we use for containers, and allows to add an 'autostart' parameter which starts the VM after

[pve-devel] [PATCH manager] merge cores, cpulimit and cpuunits for containers

2018-04-06 Thread Dominik Csapak
like we do for qemu vms Signed-off-by: Dominik Csapak --- www/manager6/lxc/Resources.js | 41 +++-- 1 file changed, 23 insertions(+), 18 deletions(-) diff --git a/www/manager6/lxc/Resources.js b/www/manager6/lxc/Resources.js index

[pve-devel] [PATCH manager 1/1] overwrite the built-in 'run_editor' function

2018-04-06 Thread Dominik Csapak
this is needed for the 'enter' handler Signed-off-by: Dominik Csapak --- www/manager6/lxc/DNS.js | 1 + www/manager6/qemu/HardwareView.js | 1 + 2 files changed, 2 insertions(+) diff --git a/www/manager6/lxc/DNS.js b/www/manager6/lxc/DNS.js index

[pve-devel] [PATCH widget-toolkit/manager/pmg-gui] allow pressing enter in ObjectGrids

2018-04-06 Thread Dominik Csapak
this series makes it possible to press enter to open the editor of (pending)ObjectGrids proxmox-widget-toolkit Dominik Csapak (1): allow pressing enter in ObjectGrids to edit a field grid/ObjectGrid.js | 8 node/DNSView.js| 1 + node/TimeView.js | 1 + 3 files changed, 10

[pve-devel] [PATCH widget-toolkit 1/1] allow pressing enter in ObjectGrids to edit a field

2018-04-06 Thread Dominik Csapak
for this we need to overwrite the 'run_editor' function of the ObjectGrid if we use a custom one Signed-off-by: Dominik Csapak --- grid/ObjectGrid.js | 8 node/DNSView.js| 1 + node/TimeView.js | 1 + 3 files changed, 10 insertions(+) diff --git

[pve-devel] [PATCH pmg-gui 1/1] overwrite run_editor of base class

2018-04-06 Thread Dominik Csapak
so that every call lands in the custom run_editor Signed-off-by: Dominik Csapak --- js/ActionList.js | 1 + js/MyNetworks.js | 1 + js/ObjectGroup.js | 1 + js/RelayDomains.js | 1 + js/Transport.js| 1 + 5 files changed, 5 insertions(+) diff --git

[pve-devel] applied: [PATCH widget-toolkit] better default focus selection

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Re: [pve-devel] [RFC qemu-server] API/create: move locking inside worker

2018-04-06 Thread Fabian Grünbichler
On Fri, Apr 06, 2018 at 11:54:03AM +0200, Thomas Lamprecht wrote: > Move the locking inside worker, so that the process doing the actual > work (create or restore) holds the lock, and can call functions which > do locking without deadlocking. > > This mirrors the behaviour we use for containers,

[pve-devel] applied: [PATCH manager] merge cores, cpulimit and cpuunits for containers

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [PATCH widget-toolkit 1/1] allow pressing enter in ObjectGrids to edit a field

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH manager] better focus of lxc/MPEdit

2018-04-06 Thread Dominik Csapak
this gives the focus to either the 'path' field or to the 'X' tool (if it is a rootfs) Signed-off-by: Dominik Csapak --- www/manager6/lxc/MPEdit.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/manager6/lxc/MPEdit.js b/www/manager6/lxc/MPEdit.js index

[pve-devel] [PATCH widget-toolkit] better default focus selection

2018-04-06 Thread Dominik Csapak
we do not want to focus on hidden/disabled fields, because that focus gets lost and prevents some things e.g. cancelling with ESC Signed-off-by: Dominik Csapak --- window/Edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window/Edit.js

Re: [pve-devel] [RFC qemu-server] API/create: move locking inside worker

2018-04-06 Thread Thomas Lamprecht
Am 04/06/2018 um 12:28 PM schrieb Fabian Grünbichler: On Fri, Apr 06, 2018 at 11:54:03AM +0200, Thomas Lamprecht wrote: Move the locking inside worker, so that the process doing the actual work (create or restore) holds the lock, and can call functions which do locking without deadlocking.

Re: [pve-devel] [RFC qemu-server] API/create: move locking inside worker

2018-04-06 Thread Thomas Lamprecht
Am 04/06/2018 um 01:24 PM schrieb Thomas Lamprecht: Am 04/06/2018 um 12:28 PM schrieb Fabian Grünbichler: On Fri, Apr 06, 2018 at 11:54:03AM +0200, Thomas Lamprecht wrote: Move the locking inside worker, so that the process doing the actual work (create or restore) holds the lock, and can call

[pve-devel] applied: [PATCH manager] better focus of lxc/MPEdit

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] [PATCH manager] fix editor and set_button_status for cloudinit

2018-04-06 Thread Dominik Csapak
cloudinit images do not have an editor so return here and value has to be a string to match also set the remove button text correctly when selecting a cloudinit disk Signed-off-by: Dominik Csapak --- www/manager6/qemu/HardwareView.js | 8 +--- 1 file changed, 5

[pve-devel] applied: [PATCH docs] Add documentation for CIFS Storage Plugin.

2018-04-06 Thread Thomas Lamprecht
thanks, applied, with cleanup followup Am 04/05/2018 um 02:08 PM schrieb Wolfgang Link: --- pve-intro.adoc| 3 +- pve-storage-cifs.adoc | 99 +++ pvesm.adoc| 5 +++ qm.adoc | 2 +- vzdump.adoc |

[pve-devel] applied: [PATCH manager 01/11] add advanced checkbox to the wizard

2018-04-06 Thread Dietmar Maurer
applied all (11) patches ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [PATCH manager] fix editor and set_button_status for cloudinit

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [PATCH docs 1/2] fix wording for new memory dialog for qemu

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

[pve-devel] applied: [PATCH docs 2/2] mention that NAT mode is not available on the WebUI

2018-04-06 Thread Dietmar Maurer
applied ___ pve-devel mailing list pve-devel@pve.proxmox.com https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel