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)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 8DA6F60BA5 for ; Wed, 18 Nov 2020 11:04:57 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 84A3F19B65 for ; Wed, 18 Nov 2020 11:04:27 +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 A43E919B44 for ; Wed, 18 Nov 2020 11:04:25 +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 6D1F943974 for ; Wed, 18 Nov 2020 11:04:25 +0100 (CET) From: Fabian Ebner To: pve-devel@lists.proxmox.com Date: Wed, 18 Nov 2020 11:04:16 +0100 Message-Id: <20201118100420.21167-1-f.ebner@proxmox.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL -0.010 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 URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [cluster.pm, proxmox.com, api2tools.pm] Subject: [pve-devel] [PATCH-SERIES v4 manager] split up content view/add prune window 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: Wed, 18 Nov 2020 10:04:57 -0000 Follow-up to/finishing up the partially-applied series: https://lists.proxmox.com/pipermail/pve-devel/2020-November/045929.html The first two patches extend the cluster resources API call to include the content types of a storage, and avoid dynamic loading of the content list in the storage browser panel. The third patch is a followup to one of Thomas's cleanups. The fourth adds the prune window, based on the one from PBS. Changes from v3: * dropped already applied patches * add new patches to avoid dynamic loading of content-dependend list in storage browser panel * don't use grouping headers for backups Fabian Ebner (4): cluster resources: include content type for storages ui: storage: get content types from resources ui: make remaining content views not stateful ui: storage backup view: add prune window PVE/API2/Cluster.pm | 6 + PVE/API2Tools.pm | 4 + www/manager6/Makefile | 1 + www/manager6/storage/BackupView.js | 54 ++++- www/manager6/storage/Browser.js | 144 ++++++------- www/manager6/storage/TemplateView.js | 3 - www/manager6/window/Prune.js | 300 +++++++++++++++++++++++++++ 7 files changed, 430 insertions(+), 82 deletions(-) create mode 100644 www/manager6/window/Prune.js -- 2.20.1