From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id CF0911FF3AF for ; Wed, 5 Jun 2024 12:54:15 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 00C2431742; Wed, 5 Jun 2024 12:54:38 +0200 (CEST) From: Christian Ebner To: pbs-devel@lists.proxmox.com Date: Wed, 5 Jun 2024 12:53:30 +0200 Message-Id: <20240605105416.278748-13-c.ebner@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240605105416.278748-1-c.ebner@proxmox.com> References: <20240605105416.278748-1-c.ebner@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.028 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 T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pbs-devel] [PATCH v9 proxmox-backup 12/58] www: cover metadata extension for pxar archives 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: , Reply-To: Proxmox Backup Server development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" Allows to access the pxar metadata archives for navigation and download via the Proxmox Backup Server web ui. Signed-off-by: Christian Ebner --- changes since version 8: - no changes www/datastore/Content.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/www/datastore/Content.js b/www/datastore/Content.js index c2403ff9c..6dd1ab319 100644 --- a/www/datastore/Content.js +++ b/www/datastore/Content.js @@ -1050,7 +1050,7 @@ Ext.define('PBS.DataStoreContent', { tooltip: gettext('Browse'), getClass: (v, m, { data }) => { if ( - (data.ty === 'file' && data.filename.endsWith('pxar.didx')) || + (data.ty === 'file' && (data.filename.endsWith('.pxar.didx') || data.filename.endsWith('.mpxar.didx'))) || (data.ty === 'ns' && !data.root) ) { return 'fa fa-folder-open-o'; @@ -1058,7 +1058,9 @@ Ext.define('PBS.DataStoreContent', { return 'pmx-hidden'; }, isActionDisabled: (v, r, c, i, { data }) => - !(data.ty === 'file' && data.filename.endsWith('pxar.didx') && data['crypt-mode'] < 3) && data.ty !== 'ns', + !(data.ty === 'file' && + (data.filename.endsWith('.pxar.didx') || data.filename.endsWith('.mpxar.didx')) && + data['crypt-mode'] < 3) && data.ty !== 'ns', }, ], }, -- 2.39.2 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel