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) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id EBD3F678B4 for ; Tue, 10 Nov 2020 11:44:41 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id DD2D51EA33 for ; Tue, 10 Nov 2020 11:44:41 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [212.186.127.180]) (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 id 415E41EA19 for ; Tue, 10 Nov 2020 11:44:40 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 0D3164605C for ; Tue, 10 Nov 2020 11:44:40 +0100 (CET) From: Aaron Lauterer To: pve-devel@lists.proxmox.com Date: Tue, 10 Nov 2020 11:44:38 +0100 Message-Id: <20201110104438.20839-6-a.lauterer@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20201110104438.20839-1-a.lauterer@proxmox.com> References: <20201110104438.20839-1-a.lauterer@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.009 Adjusted score from AWL reputation of From: address KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_DNSWL_MED -2.3 Sender listed at https://www.dnswl.org/, medium trust SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Subject: [pve-devel] [PATCH proxmox-backup 5/5] ui: add/fix help buttons 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: Tue, 10 Nov 2020 10:44:42 -0000 added a few more help buttons were appropriate: * GC and Prune schedule windows * Create Directory window * API Tokens, link directly to token section * verify jobs window Signed-off-by: Aaron Lauterer --- www/datastore/PruneAndGC.js | 2 ++ www/window/CreateDirectory.js | 2 ++ www/window/TokenEdit.js | 2 +- www/window/VerifyJobEdit.js | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/www/datastore/PruneAndGC.js b/www/datastore/PruneAndGC.js index 91b9f0d2..ab531118 100644 --- a/www/datastore/PruneAndGC.js +++ b/www/datastore/PruneAndGC.js @@ -70,6 +70,7 @@ Ext.define('PBS.DataStorePruneAndGC', { editor: { xtype: 'proxmoxWindowEdit', title: gettext('GC Schedule'), + onlineHelp: 'maintenance_gc', items: { xtype: 'pbsCalendarEvent', name: 'gc-schedule', @@ -86,6 +87,7 @@ Ext.define('PBS.DataStorePruneAndGC', { editor: { xtype: 'proxmoxWindowEdit', title: gettext('Prune Schedule'), + onlineHelp: 'maintenance_pruning', items: { xtype: 'pbsCalendarEvent', name: 'prune-schedule', diff --git a/www/window/CreateDirectory.js b/www/window/CreateDirectory.js index f68c2f78..6aabe21a 100644 --- a/www/window/CreateDirectory.js +++ b/www/window/CreateDirectory.js @@ -8,6 +8,8 @@ Ext.define('PBS.window.CreateDirectory', { url: '/nodes/localhost/disks/directory', method: 'POST', + onlineHelp: 'storage-disk-management', + items: [ { xtype: 'pmxDiskSelector', diff --git a/www/window/TokenEdit.js b/www/window/TokenEdit.js index 6b41ae9d..caa0765c 100644 --- a/www/window/TokenEdit.js +++ b/www/window/TokenEdit.js @@ -3,7 +3,7 @@ Ext.define('PBS.window.TokenEdit', { alias: 'widget.pbsTokenEdit', mixins: ['Proxmox.Mixin.CBind'], - onlineHelp: 'user_mgmt', + onlineHelp: 'user_tokens', user: undefined, tokenname: undefined, diff --git a/www/window/VerifyJobEdit.js b/www/window/VerifyJobEdit.js index 6153c8e5..a07cf10e 100644 --- a/www/window/VerifyJobEdit.js +++ b/www/window/VerifyJobEdit.js @@ -5,7 +5,7 @@ Ext.define('PBS.window.VerifyJobEdit', { userid: undefined, - onlineHelp: 'verifyjobs', + onlineHelp: 'maintenance-verification', isAdd: true, -- 2.20.1