From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate001.proxmox.com (gate001.proxmox.com [IPv6:2a0f:8001:1:32::40]) by lore.proxmox.com (Postfix) with ESMTPS id CEF621FF0E1 for ; Mon, 13 Jul 2026 13:20:53 +0200 (CEST) Received: from gate001.proxmox.com (localhost.localdomain [127.0.0.1]) by gate001.proxmox.com (Proxmox) with ESMTP id EA34221479; Mon, 13 Jul 2026 13:20:46 +0200 (CEST) From: Elias Huhsovitz To: pve-devel@lists.proxmox.com Subject: [PATCH manager v2 3/3] fix #6211: ui: vm: options: update amd-sev and intel-tdx help links Date: Mon, 13 Jul 2026 13:19:32 +0200 Message-ID: <20260713111934.134128-4-e.huhsovitz@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260713111934.134128-1-e.huhsovitz@proxmox.com> References: <20260713111934.134128-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: 1783941627910 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.325 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: X2GZHLWPSZUUKH6WQY3VOZYJ7IGOCFXX X-Message-ID-Hash: X2GZHLWPSZUUKH6WQY3VOZYJ7IGOCFXX 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