Updated Branches: refs/heads/4.1 7d370f2eb -> a565d0b69
CLOUDSTACK-452: cloudstack UI - network menu - guest network section - network detail - add IPv6 CIDR field, IPv6 Gateway field. Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/a565d0b6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/a565d0b6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/a565d0b6 Branch: refs/heads/4.1 Commit: a565d0b699478849d88730faf8a9c9bf7892aef3 Parents: 7d370f2 Author: Jessica Wang <[email protected]> Authored: Tue Feb 26 14:35:02 2013 -0800 Committer: Jessica Wang <[email protected]> Committed: Tue Feb 26 14:35:02 2013 -0800 ---------------------------------------------------------------------- ui/scripts/network.js | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/a565d0b6/ui/scripts/network.js ---------------------------------------------------------------------- diff --git a/ui/scripts/network.js b/ui/scripts/network.js index 84cc067..a6184e3 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'
