From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [45.144.208.40]) by lore.proxmox.com (Postfix) with ESMTPS id 3D2A51FF0E9 for ; Thu, 16 Jul 2026 14:59:26 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id 4F01D2149A; Thu, 16 Jul 2026 14:59:21 +0200 (CEST) From: Elias Huhsovitz To: pve-devel@lists.proxmox.com Subject: [PATCH manager v3 3/3] fix #6211: ui: vm: options: update amd-sev and intel-tdx help links Date: Thu, 16 Jul 2026 14:58:33 +0200 Message-ID: <20260716125834.119054-4-e.huhsovitz@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260716125834.119054-1-e.huhsovitz@proxmox.com> References: <20260716125834.119054-1-e.huhsovitz@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1784206707359 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.239 Adjusted score from AWL reputation of From: address DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment (newer systems) RCVD_IN_DNSWL_LOW -0.7 Sender listed at https://www.dnswl.org/, low trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: VT5CTEYEOXNOPM5ASC23W6AGXQXOX25J X-Message-ID-Hash: VT5CTEYEOXNOPM5ASC23W6AGXQXOX25J X-MailFrom: e.huhsovitz@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Elias Huhsovitz X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The help buttons in the AMD SEV and Intel TDX dialos were pointing to the general memory documentation. Update the links to use the correct documentation anchors Signed-off-by: Elias Huhsovitz --- www/manager6/qemu/SevEdit.js | 2 +- www/manager6/qemu/TdxEdit.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/www/manager6/qemu/SevEdit.js b/www/manager6/qemu/SevEdit.js index 44db34bd..c308b3ab 100644 --- a/www/manager6/qemu/SevEdit.js +++ b/www/manager6/qemu/SevEdit.js @@ -2,7 +2,7 @@ Ext.define('PVE.qemu.SevInputPanel', { extend: 'Proxmox.panel.InputPanel', xtype: 'pveSevInputPanel', - onlineHelp: 'qm_memory', // TODO: change to 'qm_memory_encryption' one available + onlineHelp: 'qm_memory_encryption_sev', viewModel: { data: { diff --git a/www/manager6/qemu/TdxEdit.js b/www/manager6/qemu/TdxEdit.js index c1f990a9..38948a6c 100644 --- a/www/manager6/qemu/TdxEdit.js +++ b/www/manager6/qemu/TdxEdit.js @@ -2,7 +2,7 @@ Ext.define('PVE.qemu.TdxInputPanel', { extend: 'Proxmox.panel.InputPanel', xtype: 'pveTdxInputPanel', - onlineHelp: 'qm_memory', // TODO: change to 'qm_memory_encryption' one available + onlineHelp: 'qm_memory_encryption_tdx', viewModel: { data: { -- 2.47.3