From a565d0b699478849d88730faf8a9c9bf7892aef3 Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Tue, 26 Feb 2013 14:35:02 -0800 Subject: [PATCH] CLOUDSTACK-452: cloudstack UI - network menu - guest network section - network detail - add IPv6 CIDR field, IPv6 Gateway field. --- ui/scripts/network.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/scripts/network.js b/ui/scripts/network.js index 84cc067f82b..a6184e3afd8 100755 --- a/ui/scripts/network.js +++ b/ui/scripts/network.js @@ -896,8 +896,10 @@ if(zone.networktype == "Basic") { hiddenFields.push("account"); hiddenFields.push("gateway"); + hiddenFields.push("ip6gateway"); hiddenFields.push("vlan"); hiddenFields.push("cidr"); + hiddenFields.push("ip6cidr"); //hiddenFields.push("netmask"); } @@ -905,6 +907,7 @@ hiddenFields.push("networkofferingdisplaytext"); hiddenFields.push("networkdomaintext"); hiddenFields.push("gateway"); + hiddenFields.push("ip6gateway"); hiddenFields.push("networkofferingname"); //hiddenFields.push("netmask"); } @@ -999,9 +1002,11 @@ }, gateway: { label: 'label.gateway' }, + ip6gateway: { label: 'IPv6 Gateway' }, //netmask: { label: 'label.netmask' }, cidr: { label: 'label.cidr' }, + ip6cidr: { label: 'IPv6 CIDR' }, networkdomaintext: { label: 'label.network.domain.text'