public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Alexandre Derumier <aderumier@odiso.com>
To: pve-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH v5 pve-manager 01/11] sdn: vnetedit: add subnets && remove ip/mac
Date: Thu, 24 Sep 2020 10:40:55 +0200	[thread overview]
Message-ID: <20200924084105.611791-2-aderumier@odiso.com> (raw)
In-Reply-To: <20200924084105.611791-1-aderumier@odiso.com>

Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
---
 www/manager6/sdn/VnetEdit.js | 29 +++--------------------------
 www/manager6/sdn/VnetView.js | 18 +++---------------
 2 files changed, 6 insertions(+), 41 deletions(-)

diff --git a/www/manager6/sdn/VnetEdit.js b/www/manager6/sdn/VnetEdit.js
index aa40b41f..09e2f3bf 100644
--- a/www/manager6/sdn/VnetEdit.js
+++ b/www/manager6/sdn/VnetEdit.js
@@ -64,34 +64,11 @@ Ext.define('PVE.sdn.VnetInputPanel', {
 	},
 	{
 	    xtype: 'textfield',
-	    name: 'mac',
-	    fieldLabel: gettext('MAC Address'),
-	    vtype: 'MacAddress',
-	    skipEmptyText: true,
+	    name: 'subnets',
+	    fieldLabel: gettext('Subnets'),
 	    allowBlank: true,
-	    emptyText: 'auto',
 	},
-    ],
-    advancedItems: [
-	{
-	    xtype: 'textfield',
-	    name: 'ipv4',
-	    vtype: 'IPCIDRAddress',
-	    fieldLabel: 'IPv4/CIDR', // do not localize
-	    emptyText: 'Optional anycast addr. for BGP',
-	    skipEmptyText: true,
-	    allowBlank: true,
-	},
-	{
-	    xtype: 'textfield',
-	    name: 'ipv6',
-	    vtype: 'IP6CIDRAddress',
-	    fieldLabel: 'IPv6/CIDR', // do not localize
-	    emptyText: 'Optional anycast addr. for BGP',
-	    skipEmptyText: true,
-	    allowBlank: true,
-	},
-    ],
+    ]
 });
 
 Ext.define('PVE.sdn.VnetEdit', {
diff --git a/www/manager6/sdn/VnetView.js b/www/manager6/sdn/VnetView.js
index e73632d1..604a2d1a 100644
--- a/www/manager6/sdn/VnetView.js
+++ b/www/manager6/sdn/VnetView.js
@@ -98,20 +98,10 @@ Ext.define('PVE.sdn.VnetView', {
 		    dataIndex: 'vlanaware',
 		},
 		{
-		    header: 'IPv4/CIDR',
+		    header: 'Subnets',
 		    flex: 1,
-		    dataIndex: 'ipv4',
+		    dataIndex: 'subnets',
 		},
-		{
-		    header: 'IPv6/CIDR',
-		    flex: 1,
-		    dataIndex: 'ipv6',
-		},
-		{
-		    header: 'MAC',
-		    flex: 1,
-		    dataIndex: 'mac',
-		}
 	    ],
 	    listeners: {
 		activate: reload,
@@ -127,9 +117,7 @@ Ext.define('PVE.sdn.VnetView', {
 	extend: 'Ext.data.Model',
 	fields: [
 	    'alias',
-	    'ipv4',
-	    'ipv6',
-	    'mac',
+	    'subnets',
 	    'tag',
 	    'type',
 	    'vnet',
-- 
2.20.1




  reply	other threads:[~2020-09-24  8:42 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-24  8:40 [pve-devel] [PATCH v5 pve-manager 00/11] sdn: add subnets management Alexandre Derumier
2020-09-24  8:40 ` Alexandre Derumier [this message]
2020-09-24  8:40 ` [pve-devel] [PATCH v5 pve-manager 02/11] add sdn subnets Alexandre Derumier
2020-09-24  8:40 ` [pve-devel] [PATCH v5 pve-manager 03/11] add sdn ipams Alexandre Derumier
2020-09-24  8:40 ` [pve-devel] [PATCH v5 pve-manager 04/11] sdn: add PVEIpam Alexandre Derumier
2020-09-24  8:40 ` [pve-devel] [PATCH v5 pve-manager 05/11] sdn: subnets: ipam is optional Alexandre Derumier
2020-09-24  8:41 ` [pve-devel] [PATCH v5 pve-manager 06/11] add sdn dns Alexandre Derumier
2020-09-24  8:41 ` [pve-devel] [PATCH v5 pve-manager 07/11] subnets: add dns fields Alexandre Derumier
2020-09-24  8:41 ` [pve-devel] [PATCH v5 pve-manager 08/11] add vnet option to subnets and remove subnets list from vnet Alexandre Derumier
2020-09-24  8:41 ` [pve-devel] [PATCH v5 pve-manager 09/11] add vnet panel with vnet + subnets split view Alexandre Derumier
2020-09-24  8:41 ` [pve-devel] [PATCH v5 pve-manager 10/11] subnets: move ipam/dns in advanced section, and use "pve" as default ipam Alexandre Derumier
2020-09-24  8:41 ` [pve-devel] [PATCH v5 pve-manager 11/11] sdn: add options panel + move controller/ipam/dns view Alexandre Derumier

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=20200924084105.611791-2-aderumier@odiso.com \
    --to=aderumier@odiso.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