From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 86ECDAB67 for ; Fri, 8 Sep 2023 13:06:15 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 6E4AE10BCA for ; Fri, 8 Sep 2023 13:06:15 +0200 (CEST) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Fri, 8 Sep 2023 13:06:14 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 4A9BD4357E for ; Fri, 8 Sep 2023 13:06:14 +0200 (CEST) From: Markus Frank To: pve-devel@lists.proxmox.com Date: Fri, 8 Sep 2023 13:05:58 +0200 Message-Id: <20230908110604.132618-1-m.frank@proxmox.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.050 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [qemu.pm, qemuserver.pm] Subject: [pve-devel] [PATCH qemu-sever/novnc/manager/docs v12 0/6] Feature VNC-Clipboard X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Sep 2023 11:06:15 -0000 overall changes v11: * renamed vnc-clipboard to clipboard and changed it to a string overall changes v9: * renamed vnc_clipboard to vnc-clipboard qemu-sever: changes v10: * separated "vnc-clipboard return at status/current" to its own patch * added missing trailing comma * changed capitalization changes v8: * removed unnecessary conditions * removed spicedevices variable and changed back to devices * created is_spice variable changes v6: * added check if vga->type is set to prevent error when using default display * renamed clipboard to vnc_clipboard changes v5: * removed return of regex check in the assertion-function for the clipboard config * moved clipboard code into spice-if-block changes v4: * removed duplicate code and created a spicedevices variable to store spice/vdagent devices. * clipboard_check_compatibility function changes v3: * added hint to make clearer that the spice guest tools are required for the noVNC-clipboard * Checkbox changes to ComboBox when a spice device is selected to make clear that only one clipboard can be used at a time. * added 2 test-cases changes v2: * added pci address to virtio-serial-pci Markus Frank (3): enable VNC clipboard parameter in vga_fmt add vnc-clipboard variable to return at status/current test cases for clipboard spice & std PVE/API2/Qemu.pm | 15 ++++++ PVE/QemuServer.pm | 66 ++++++++++++++++------- test/cfg2cmd/VNC-clipboard-spice.conf | 1 + test/cfg2cmd/VNC-clipboard-spice.conf.cmd | 27 ++++++++++ test/cfg2cmd/VNC-clipboard-std.conf | 1 + test/cfg2cmd/VNC-clipboard-std.conf.cmd | 27 ++++++++++ 6 files changed, 119 insertions(+), 18 deletions(-) create mode 100644 test/cfg2cmd/VNC-clipboard-spice.conf create mode 100644 test/cfg2cmd/VNC-clipboard-spice.conf.cmd create mode 100644 test/cfg2cmd/VNC-clipboard-std.conf create mode 100644 test/cfg2cmd/VNC-clipboard-std.conf.cmd novnc: Markus Frank (1): add "show clipboard button" patch to series .../patches/0019-show-clipboard-button.patch | 30 +++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 31 insertions(+) create mode 100644 debian/patches/0019-show-clipboard-button.patch manager: changes v11: * added hint that SPICE & VNC Clipboard won't work at the same time. changes v7: * fixed the empty Display Bug in VGA options found by Friedrich (it should be "Default" instead of empty) changes v6: * Changed onGetValues in DisplayEdit to only set the saved vnc_clipboard variable, so it's possible to reset type and memory to default values changes v4: * moved clipboard option from Display settings in Hardware to Options Markus Frank (1): add clipboard checkbox to VM Options www/manager6/qemu/DisplayEdit.js | 8 +++++ www/manager6/qemu/Options.js | 52 ++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) docs: changes v4: * rewrote entire Text * added command example to set clipboard to 1 Markus Frank (1): add VNC clipboard documentation qm.adoc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) -- 2.39.2