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 A8B9A6713F for ; Mon, 9 Nov 2020 08:00:18 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id A0D5513A0C for ; Mon, 9 Nov 2020 08:00:18 +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) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 8FB1813A01 for ; Mon, 9 Nov 2020 08:00:17 +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 53365409AE for ; Mon, 9 Nov 2020 08:00:17 +0100 (CET) From: Thomas Lamprecht To: pbs-devel@lists.proxmox.com Date: Mon, 9 Nov 2020 08:00:11 +0100 Message-Id: <20201109070011.8376-1-t.lamprecht@proxmox.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -1.262 Adjusted score from AWL reputation of From: address 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 Subject: [pbs-devel] applied: [PATCH] enable ARIA again X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Nov 2020 07:00:18 -0000 we have everything updated to ExtJS 6.x since quite a bit, and some quick checks on various components did not show any error - lets enable this again. Signed-off-by: Thomas Lamprecht --- holler to me ASAP if you see something breaking. NOTE: PVE disables this in their own Utils, need to closer check there. src/Utils.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Utils.js b/src/Utils.js index d80d703..7710e39 100644 --- a/src/Utils.js +++ b/src/Utils.js @@ -5,13 +5,6 @@ if (!Ext.isDefined(Proxmox.Setup.auth_cookie_name)) { throw "Proxmox library not initialized"; } -// avoid errors related to Accessible Rich Internet Applications -// (access for people with disabilities) -// TODO reenable after all components are upgraded -Ext.enableAria = false; -Ext.enableAriaButtons = false; -Ext.enableAriaPanels = false; - // avoid errors when running without development tools if (!Ext.isDefined(Ext.global.console)) { let console = { -- 2.27.0