[pve-devel] partially-applied: [PATCH v4 proxmox-widget-toolkit 0/10] removal of directories in PBS WebUI

2020-10-21 Thread Thomas Lamprecht
On 15.09.20 11:54, Hannes Laimer wrote: > Add functionality to remove directories in the PBS WebUI. In order to do that > SafeDestroy had to be moved from > pve-manager into proxmox-widget-toolkit and the possibility to show a small > note in the dialog had to be added. > Furthermore specifics to

[pve-devel] applied: [PATCH proxmox-widget-toolkit] correctly encode upid paramenter (use encodeURIComponent)

2020-10-21 Thread Thomas Lamprecht
On 22.10.20 08:38, Dietmar Maurer wrote: > --- > src/window/TaskViewer.js | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > applied, thanks! ___ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/ma

[pve-devel] applied: [PATCH qemu-server] bootorder: don't print empty 'order=' property

2020-10-21 Thread Thomas Lamprecht
On 21.10.20 11:00, Stefan Reiter wrote: > Specifying 'boot: order=' was intended to be used for an empty bootorder > (i.e. no boot devices), but as it turns out our format parser doesn't > like empty '-list' properties if they are nested in a subformat. > > Fixing this in JSONSchema sounds like a

[pve-devel] [PATCH proxmox-widget-toolkit] correctly encode upid paramenter (use encodeURIComponent)

2020-10-21 Thread Dietmar Maurer
--- src/window/TaskViewer.js | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/window/TaskViewer.js b/src/window/TaskViewer.js index 0333472..31e1ebc 100644 --- a/src/window/TaskViewer.js +++ b/src/window/TaskViewer.js @@ -14,7 +14,7 @@ Ext.define('Proxmox.window.Task

Re: [pve-devel] [PATCH proxmox-backup-qemu 2/2] invalidate bitmap when crypto key changes

2020-10-21 Thread Stefan Reiter
On 10/21/20 1:49 PM, Fabian Grünbichler wrote: by computing and remembering the ID digest of a static string, we can detect when the passed in key has changed without keeping a copy of it around inbetween backup jobs. this is a follow-up/fixup for 104fae9111cd9a4e4dd7779172d39580a393165d fix #2

[pve-devel] [PATCH proxmox-backup-qemu 1/2] update to proxmox-backup 0.9.1

2020-10-21 Thread Fabian Grünbichler
and pass along any port set in the repository string Signed-off-by: Fabian Grünbichler --- Note: to switch to current proxmox 0.5.0, proxmox-backup needs to be bumped first.. no changes are needed in proxmox-backup-qemu to build with current master. Cargo.toml | 4 ++-- src/backup.rs | 2 +

[pve-devel] [PATCH proxmox-backup-qemu 2/2] invalidate bitmap when crypto key changes

2020-10-21 Thread Fabian Grünbichler
by computing and remembering the ID digest of a static string, we can detect when the passed in key has changed without keeping a copy of it around inbetween backup jobs. this is a follow-up/fixup for 104fae9111cd9a4e4dd7779172d39580a393165d fix #2866: invalidate bitmap on crypt_mode change whi

[pve-devel] [PATCH qemu-server] bootorder: don't print empty 'order=' property

2020-10-21 Thread Stefan Reiter
Specifying 'boot: order=' was intended to be used for an empty bootorder (i.e. no boot devices), but as it turns out our format parser doesn't like empty '-list' properties if they are nested in a subformat. Fixing this in JSONSchema sounds like a risky move, so instead just write 'boot: ' (withou