]> git.proxmox.com Git - pve-manager.git/commitdiff
website: update external links to www.proxmox.com
authorChristian Ebner <c.ebner@proxmox.com>
Fri, 11 Aug 2023 10:46:54 +0000 (12:46 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 2 Oct 2023 06:01:19 +0000 (08:01 +0200)
During the redesign of www.proxmox.com the menu structure and therefore
some url changed. Update the external link in order to avoid an
unneccessary redirect

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
(cherry picked from commit 347f88fecd938da30fa2cab4724159225cf6f7bb)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
PVE/API2/Subscription.pm
www/manager6/Utils.js
www/manager6/dc/Summary.js
www/mobile/WidgetToolkitUtils.js

index 27e9948f5537229d20b0bdd04d2307d3ae890943..c9db8d986338dcada3f91161e813071347bea246 100644 (file)
@@ -117,7 +117,7 @@ __PACKAGE__->register_method ({
        my $has_permission = $rpcenv->check($authuser, "/nodes/$node", ['Sys.Audit'], 1);
 
        my $server_id = PVE::API2Tools::get_hwaddress();
-       my $url = "https://www.proxmox.com/proxmox-ve/pricing";
+       my $url = "https://www.proxmox.com/en/proxmox-virtual-environment/pricing";
 
        my $info = read_etc_subscription();
        if (!$info) {
index d5dd2999081ec6970bd2122da9d61caf43d3ce0b..5839280fab0261c3b9016646b28c4b98e7abdbd6 100644 (file)
@@ -34,7 +34,7 @@ Ext.define('PVE.Utils', {
     },
 
     noSubKeyHtml: 'You do not have a valid subscription for this server. Please visit '
-      +'<a target="_blank" href="https://www.proxmox.com/products/proxmox-ve/subscription-service-plans">'
+      +'<a target="_blank" href="https://www.proxmox.com/en/proxmox-virtual-environment/pricing">'
       +'www.proxmox.com</a> to get a list of available options.',
 
     kvm_ostypes: {
index 8ea6026791e4bfc7823258aa50ec9076c1c7cf3d..5ba8fd660e5d174b35ddab9e1b24da94e05884e5 100644 (file)
@@ -64,7 +64,7 @@ Ext.define('PVE.dc.Summary', {
                        element: 'el',
                        click: function() {
                            if (this.component.userCls === 'pointer') {
-                               window.open('https://www.proxmox.com/en/proxmox-ve/pricing', '_blank');
+                               window.open('https://www.proxmox.com/en/proxmox-virtual-environment/pricing', '_blank');
                            }
                        },
                    },
index e11aa89e31c653e10364b6c8ac27569da1347c00..b292fcd5d053e0eb36d215b84d43d2c883a5b31e 100644 (file)
@@ -115,7 +115,6 @@ utilities: {
     },
 
     getNoSubKeyHtml: function(url) {
-       // url http://www.proxmox.com/products/proxmox-ve/subscription-service-plans
        return Ext.String.format('You do not have a valid subscription for this server. Please visit <a target="_blank" href="{0}">www.proxmox.com</a> to get a list of available options.', url || 'https://www.proxmox.com');
     },