From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id B51AC1FF161 for ; Sat, 27 Sep 2025 19:02:19 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id E9B8C2042C; Sat, 27 Sep 2025 19:02:22 +0200 (CEST) From: Thomas Lamprecht To: pdm-devel@lists.proxmox.com, Shannon Sterz Date: Sat, 27 Sep 2025 18:57:42 +0200 Message-ID: <175899225402.828811.7169176055208637375.b4-ty@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20250924145137.407070-6-s.sterz@proxmox.com> References: <20250924145137.407070-1-s.sterz@proxmox.com> <20250924145137.407070-6-s.sterz@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1758992522697 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.026 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 Subject: [pdm-devel] applied: [PATCH yew-comp 2/2] token_panel: implement a token panel X-BeenThere: pdm-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Datacenter Manager development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox Datacenter Manager development discussion Cc: yew-devel@lists.proxmox.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pdm-devel-bounces@lists.proxmox.com Sender: "pdm-devel" On Wed, 24 Sep 2025 16:51:34 +0200, Shannon Sterz wrote: > this is analogous to the user panel. the token panel allows adding, > editing and remove api tokens. existing tokens can also be > re-generated and their permissions can be displayed. > > Applied, thanks! With a bunch of follow-ups. Left open for now is the (probably) not required duplicate of the secret value field into another hidden one, moving the note into the InputPanel to ensure alignment matches and also adding a small per-field copy button, replacing the current single one that just takes care of the secret value. Oh, and it might also be sensible to change the secret field into a password like one, i.e. hiding the value per default, as better resistance against a shoulder surfing (and snapping a foto) attack. [2/2] token_panel: implement a token panel commit: b3ec5e54d8949233379dd6a518b0ddf90226a88f _______________________________________________ pdm-devel mailing list pdm-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 67D9C1FF161 for ; Sat, 27 Sep 2025 19:02:20 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 30FF7203FC; Sat, 27 Sep 2025 19:02:23 +0200 (CEST) From: Thomas Lamprecht To: pdm-devel@lists.proxmox.com, Shannon Sterz Date: Sat, 27 Sep 2025 18:57:42 +0200 Message-ID: <175899225402.828811.7169176055208637375.b4-ty@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20250924145137.407070-6-s.sterz@proxmox.com> References: <20250924145137.407070-1-s.sterz@proxmox.com> <20250924145137.407070-6-s.sterz@proxmox.com> MIME-Version: 1.0 X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1758992522697 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.026 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 Subject: [yew-devel] applied: [pdm-devel] [PATCH yew-comp 2/2] token_panel: implement a token panel X-BeenThere: yew-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Yew framework devel list at Proxmox List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Yew framework devel list at Proxmox Cc: yew-devel@lists.proxmox.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: yew-devel-bounces@lists.proxmox.com Sender: "yew-devel" On Wed, 24 Sep 2025 16:51:34 +0200, Shannon Sterz wrote: > this is analogous to the user panel. the token panel allows adding, > editing and remove api tokens. existing tokens can also be > re-generated and their permissions can be displayed. > > Applied, thanks! With a bunch of follow-ups. Left open for now is the (probably) not required duplicate of the secret value field into another hidden one, moving the note into the InputPanel to ensure alignment matches and also adding a small per-field copy button, replacing the current single one that just takes care of the secret value. Oh, and it might also be sensible to change the secret field into a password like one, i.e. hiding the value per default, as better resistance against a shoulder surfing (and snapping a foto) attack. [2/2] token_panel: implement a token panel commit: b3ec5e54d8949233379dd6a518b0ddf90226a88f _______________________________________________ yew-devel mailing list yew-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/yew-devel