public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Filip Schauer <f.schauer@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH manager] ui: storage: oci registry pull: add filename field
Date: Mon, 17 Nov 2025 20:14:53 +0100	[thread overview]
Message-ID: <20251117191522.330677-1-f.schauer@proxmox.com> (raw)

Expose the filename parameter in the OciRegistryPull window, to allow
users to choose a custom destination file name for the OCI image.

Signed-off-by: Filip Schauer <f.schauer@proxmox.com>
---
This patch depends on:
https://lore.proxmox.com/pve-devel/20251117171528.262443-4-f.schauer@proxmox.com/

 www/manager6/storage/TemplateView.js | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/www/manager6/storage/TemplateView.js b/www/manager6/storage/TemplateView.js
index 20794458..d570efb4 100644
--- a/www/manager6/storage/TemplateView.js
+++ b/www/manager6/storage/TemplateView.js
@@ -243,9 +243,12 @@ Ext.define('PVE.storage.OciRegistryPull', {
             xtype: 'inputpanel',
             border: false,
             onGetValues: function (values) {
-                return {
-                    reference: values.reference + ':' + values.tag,
-                };
+                values.reference = values.reference + ':' + values.tag;
+                delete values.tag;
+                if (!values.filename) {
+                    delete values.filename;
+                }
+                return values;
             },
             items: [
                 {
@@ -285,6 +288,12 @@ Ext.define('PVE.storage.OciRegistryPull', {
                     typeAhead: true,
                     comboItems: [],
                 },
+                {
+                    xtype: 'textfield',
+                    name: 'filename',
+                    emptyText: '<reference>_<tag>',
+                    fieldLabel: gettext('File name'),
+                },
             ],
         },
     ],
-- 
2.47.3



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel


             reply	other threads:[~2025-11-17 19:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-17 19:14 Filip Schauer [this message]
2025-11-17 21:25 ` [pve-devel] applied: " Thomas Lamprecht

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20251117191522.330677-1-f.schauer@proxmox.com \
    --to=f.schauer@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal