summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-05-24 15:45:37 +0000
committerGerrit Code Review <review@openstack.org>2017-05-24 15:45:37 +0000
commit3bc399f3ae34b5eb3b18544c55c65ff8a6dc7a71 (patch)
treefc7ae3fe2ceb884aaeeef3db109ac3a4ef76b699
parent53e8d0744dbbcd5d243b0f8b5993ff0fad4ca13d (diff)
parenta7ec524d4a3b74c08748c37e13825024c3b48e88 (diff)
downloadhorizon-3bc399f3ae34b5eb3b18544c55c65ff8a6dc7a71.tar.gz
Merge "Use BooleanField for admin_state_up form" into stable/ocata11.0.2
-rw-r--r--openstack_dashboard/dashboards/admin/networks/forms.py16
-rw-r--r--openstack_dashboard/dashboards/admin/networks/ports/forms.py3
-rw-r--r--openstack_dashboard/dashboards/project/firewalls/forms.py6
-rw-r--r--openstack_dashboard/dashboards/project/firewalls/workflows.py11
-rw-r--r--openstack_dashboard/dashboards/project/networks/forms.py9
-rw-r--r--openstack_dashboard/dashboards/project/networks/ports/forms.py7
-rw-r--r--openstack_dashboard/dashboards/project/networks/workflows.py12
-rw-r--r--openstack_dashboard/dashboards/project/routers/forms.py14
-rw-r--r--openstack_dashboard/dashboards/project/routers/tests.py10
-rw-r--r--openstack_dashboard/dashboards/project/vpn/forms.py14
-rw-r--r--openstack_dashboard/dashboards/project/vpn/templates/vpn/_add_vpn_service_help.html4
-rw-r--r--openstack_dashboard/dashboards/project/vpn/workflows.py22
12 files changed, 51 insertions, 77 deletions
diff --git a/openstack_dashboard/dashboards/admin/networks/forms.py b/openstack_dashboard/dashboards/admin/networks/forms.py
index e57575ef3..b1d9cc10d 100644
--- a/openstack_dashboard/dashboards/admin/networks/forms.py
+++ b/openstack_dashboard/dashboards/admin/networks/forms.py
@@ -125,10 +125,9 @@ class CreateNetwork(forms.SelfHandlingForm):
'class': 'switched',
'data-switch-on': 'network_type',
}))
- admin_state = forms.ThemableChoiceField(
- choices=[('True', _('UP')),
- ('False', _('DOWN'))],
- label=_("Admin State"))
+ admin_state = forms.BooleanField(label=_("Enable Admin State"),
+ initial=True,
+ required=False)
shared = forms.BooleanField(label=_("Shared"),
initial=False, required=False)
external = forms.BooleanField(label=_("External Network"),
@@ -246,7 +245,7 @@ class CreateNetwork(forms.SelfHandlingForm):
try:
params = {'name': data['name'],
'tenant_id': data['tenant_id'],
- 'admin_state_up': (data['admin_state'] == 'True'),
+ 'admin_state_up': data['admin_state'],
'shared': data['shared'],
'router:external': data['external']}
if api.neutron.is_port_profiles_supported():
@@ -312,9 +311,8 @@ class UpdateNetwork(forms.SelfHandlingForm):
network_id = forms.CharField(label=_("ID"),
widget=forms.TextInput(
attrs={'readonly': 'readonly'}))
- admin_state = forms.ThemableChoiceField(choices=[(True, _('UP')),
- (False, _('DOWN'))],
- label=_("Admin State"))
+ admin_state = forms.BooleanField(label=_("Enable Admin State"),
+ required=False)
shared = forms.BooleanField(label=_("Shared"), required=False)
external = forms.BooleanField(label=_("External Network"), required=False)
failure_url = 'horizon:admin:networks:index'
@@ -322,7 +320,7 @@ class UpdateNetwork(forms.SelfHandlingForm):
def handle(self, request, data):
try:
params = {'name': data['name'],
- 'admin_state_up': (data['admin_state'] == 'True'),
+ 'admin_state_up': data['admin_state'],
'shared': data['shared'],
'router:external': data['external']}
network = api.neutron.network_update(request,
diff --git a/openstack_dashboard/dashboards/admin/networks/ports/forms.py b/openstack_dashboard/dashboards/admin/networks/ports/forms.py
index 521f37a96..ae29320a5 100644
--- a/openstack_dashboard/dashboards/admin/networks/ports/forms.py
+++ b/openstack_dashboard/dashboards/admin/networks/ports/forms.py
@@ -158,7 +158,7 @@ class CreatePort(forms.SelfHandlingForm):
params = {
'tenant_id': network.tenant_id,
'network_id': data['network_id'],
- 'admin_state_up': data['admin_state'] == 'True',
+ 'admin_state_up': data['admin_state'],
'name': data['name'],
'device_id': data['device_id'],
'device_owner': data['device_owner'],
@@ -214,7 +214,6 @@ class UpdatePort(project_forms.UpdatePort):
try:
LOG.debug('params = %s' % data)
extension_kwargs = {}
- data['admin_state'] = (data['admin_state'] == 'True')
if 'binding__vnic_type' in data:
extension_kwargs['binding__vnic_type'] = \
data['binding__vnic_type']
diff --git a/openstack_dashboard/dashboards/project/firewalls/forms.py b/openstack_dashboard/dashboards/project/firewalls/forms.py
index 701ab8ad7..fab9d4ac7 100644
--- a/openstack_dashboard/dashboards/project/firewalls/forms.py
+++ b/openstack_dashboard/dashboards/project/firewalls/forms.py
@@ -134,9 +134,8 @@ class UpdateFirewall(forms.SelfHandlingForm):
label=_("Description"),
required=False)
firewall_policy_id = forms.ThemableChoiceField(label=_("Policy"))
- admin_state_up = forms.ThemableChoiceField(choices=[(True, _('UP')),
- (False, _('DOWN'))],
- label=_("Admin State"))
+ admin_state_up = forms.BooleanField(label=_("Enable Admin State"),
+ required=False)
failure_url = 'horizon:project:firewalls:index'
@@ -165,7 +164,6 @@ class UpdateFirewall(forms.SelfHandlingForm):
def handle(self, request, context):
firewall_id = self.initial['firewall_id']
name_or_id = context.get('name') or firewall_id
- context['admin_state_up'] = (context['admin_state_up'] == 'True')
try:
firewall = api.fwaas.firewall_update(request, firewall_id,
**context)
diff --git a/openstack_dashboard/dashboards/project/firewalls/workflows.py b/openstack_dashboard/dashboards/project/firewalls/workflows.py
index a02b66087..5de4e9e9b 100644
--- a/openstack_dashboard/dashboards/project/firewalls/workflows.py
+++ b/openstack_dashboard/dashboards/project/firewalls/workflows.py
@@ -327,9 +327,9 @@ class AddFirewallAction(workflows.Action):
label=_("Description"),
required=False)
firewall_policy_id = forms.ThemableChoiceField(label=_("Policy"))
- admin_state_up = forms.ThemableChoiceField(choices=[(True, _('UP')),
- (False, _('DOWN'))],
- label=_("Admin State"))
+ admin_state_up = forms.BooleanField(label=_("Enable Admin State"),
+ initial=True,
+ required=False)
def __init__(self, request, *args, **kwargs):
super(AddFirewallAction, self).__init__(request, *args, **kwargs)
@@ -364,11 +364,6 @@ class AddFirewallStep(workflows.Step):
contributes = ("name", "firewall_policy_id", "description",
"admin_state_up")
- def contribute(self, data, context):
- context = super(AddFirewallStep, self).contribute(data, context)
- context['admin_state_up'] = (context['admin_state_up'] == 'True')
- return context
-
class AddFirewall(workflows.Workflow):
slug = "addfirewall"
diff --git a/openstack_dashboard/dashboards/project/networks/forms.py b/openstack_dashboard/dashboards/project/networks/forms.py
index f28a211bc..3e2c3d3d7 100644
--- a/openstack_dashboard/dashboards/project/networks/forms.py
+++ b/openstack_dashboard/dashboards/project/networks/forms.py
@@ -38,11 +38,8 @@ class UpdateNetwork(forms.SelfHandlingForm):
network_id = forms.CharField(label=_("ID"),
widget=forms.TextInput(
attrs={'readonly': 'readonly'}))
- admin_state = forms.ThemableChoiceField(
- choices=[('True', _('UP')),
- ('False', _('DOWN'))],
- required=False,
- label=_("Admin State"))
+ admin_state = forms.BooleanField(label=_("Enable Admin State"),
+ required=False)
shared = forms.BooleanField(label=_("Shared"), required=False)
failure_url = 'horizon:project:networks:index'
@@ -54,7 +51,7 @@ class UpdateNetwork(forms.SelfHandlingForm):
def handle(self, request, data):
try:
- params = {'admin_state_up': (data['admin_state'] == 'True'),
+ params = {'admin_state_up': data['admin_state'],
'name': data['name']}
# Make sure we are not sending shared data when the user
# doesnt'have admin rights because even if the user doesn't
diff --git a/openstack_dashboard/dashboards/project/networks/ports/forms.py b/openstack_dashboard/dashboards/project/networks/ports/forms.py
index f373ab4a2..7ac6d1e8d 100644
--- a/openstack_dashboard/dashboards/project/networks/ports/forms.py
+++ b/openstack_dashboard/dashboards/project/networks/ports/forms.py
@@ -38,10 +38,8 @@ class UpdatePort(forms.SelfHandlingForm):
name = forms.CharField(max_length=255,
label=_("Name"),
required=False)
- admin_state = forms.ThemableChoiceField(
- choices=[('True', _('UP')),
- ('False', _('DOWN'))],
- label=_("Admin State"))
+ admin_state = forms.BooleanField(label=_("Enable Admin State"),
+ required=False)
failure_url = 'horizon:project:networks:detail'
def __init__(self, request, *args, **kwargs):
@@ -81,7 +79,6 @@ class UpdatePort(forms.SelfHandlingForm):
exceptions.handle(self.request, msg)
def handle(self, request, data):
- data['admin_state'] = (data['admin_state'] == 'True')
try:
LOG.debug('params = %s' % data)
extension_kwargs = {}
diff --git a/openstack_dashboard/dashboards/project/networks/workflows.py b/openstack_dashboard/dashboards/project/networks/workflows.py
index 0376f6934..939ecbf89 100644
--- a/openstack_dashboard/dashboards/project/networks/workflows.py
+++ b/openstack_dashboard/dashboards/project/networks/workflows.py
@@ -45,13 +45,11 @@ class CreateNetworkInfoAction(workflows.Action):
required=False,
widget=widget)
- admin_state = forms.ThemableChoiceField(
- choices=[(True, _('UP')),
- (False, _('DOWN'))],
- label=_("Admin State"),
+ admin_state = forms.BooleanField(
+ label=_("Enable Admin State"),
+ initial=True,
required=False,
- help_text=_("The state to start"
- " the network in."))
+ help_text=_("The state to start the network in."))
shared = forms.BooleanField(label=_("Shared"), initial=False,
required=False)
with_subnet = forms.BooleanField(label=_("Create Subnet"),
@@ -493,7 +491,7 @@ class CreateNetwork(workflows.Workflow):
def _create_network(self, request, data):
try:
params = {'name': data['net_name'],
- 'admin_state_up': (data['admin_state'] == 'True'),
+ 'admin_state_up': data['admin_state'],
'shared': data['shared']}
if api.neutron.is_port_profiles_supported():
params['net_profile_id'] = data['net_profile_id']
diff --git a/openstack_dashboard/dashboards/project/routers/forms.py b/openstack_dashboard/dashboards/project/routers/forms.py
index 9b5e726ce..51cd96a3e 100644
--- a/openstack_dashboard/dashboards/project/routers/forms.py
+++ b/openstack_dashboard/dashboards/project/routers/forms.py
@@ -34,10 +34,9 @@ LOG = logging.getLogger(__name__)
class CreateForm(forms.SelfHandlingForm):
name = forms.CharField(max_length=255, label=_("Router Name"),
required=False)
- admin_state_up = forms.ThemableChoiceField(label=_("Admin State"),
- choices=[(True, _('UP')),
- (False, _('DOWN'))],
- required=False)
+ admin_state_up = forms.BooleanField(label=_("Enable Admin State"),
+ initial=True,
+ required=False)
external_network = forms.ThemableChoiceField(label=_("External Network"),
required=False)
mode = forms.ChoiceField(label=_("Router Type"))
@@ -116,9 +115,8 @@ class CreateForm(forms.SelfHandlingForm):
class UpdateForm(forms.SelfHandlingForm):
name = forms.CharField(label=_("Name"), required=False)
- admin_state = forms.ThemableChoiceField(choices=[(True, _('UP')),
- (False, _('DOWN'))],
- label=_("Admin State"))
+ admin_state = forms.BooleanField(label=_("Enable Admin State"),
+ required=False)
router_id = forms.CharField(label=_("ID"),
widget=forms.TextInput(
attrs={'readonly': 'readonly'}))
@@ -155,7 +153,7 @@ class UpdateForm(forms.SelfHandlingForm):
def handle(self, request, data):
try:
- params = {'admin_state_up': (data['admin_state'] == 'True'),
+ params = {'admin_state_up': data['admin_state'],
'name': data['name']}
if self.dvr_allowed:
params['distributed'] = (data['mode'] == 'distributed')
diff --git a/openstack_dashboard/dashboards/project/routers/tests.py b/openstack_dashboard/dashboards/project/routers/tests.py
index dc4502d01..1910d584f 100644
--- a/openstack_dashboard/dashboards/project/routers/tests.py
+++ b/openstack_dashboard/dashboards/project/routers/tests.py
@@ -264,7 +264,7 @@ class RouterActionTests(RouterMixin, test.TestCase):
api.neutron.network_list(IsA(http.HttpRequest))\
.AndReturn(self.networks.list())
params = {'name': router.name,
- 'admin_state_up': str(router.admin_state_up)}
+ 'admin_state_up': router.admin_state_up}
api.neutron.router_create(IsA(http.HttpRequest), **params)\
.AndReturn(router)
@@ -291,7 +291,7 @@ class RouterActionTests(RouterMixin, test.TestCase):
api.neutron.network_list(IsA(http.HttpRequest))\
.AndReturn(self.networks.list())
params = {'name': router.name,
- 'admin_state_up': str(router.admin_state_up)}
+ 'admin_state_up': router.admin_state_up}
api.neutron.router_create(IsA(http.HttpRequest), **params)\
.AndReturn(router)
@@ -322,7 +322,7 @@ class RouterActionTests(RouterMixin, test.TestCase):
param = {'name': router.name,
'distributed': True,
'ha': True,
- 'admin_state_up': str(router.admin_state_up)}
+ 'admin_state_up': router.admin_state_up}
api.neutron.router_create(IsA(http.HttpRequest), **param)\
.AndReturn(router)
@@ -352,7 +352,7 @@ class RouterActionTests(RouterMixin, test.TestCase):
api.neutron.network_list(IsA(http.HttpRequest))\
.MultipleTimes().AndReturn(self.networks.list())
params = {'name': router.name,
- 'admin_state_up': str(router.admin_state_up)}
+ 'admin_state_up': router.admin_state_up}
api.neutron.router_create(IsA(http.HttpRequest), **params)\
.AndRaise(self.exceptions.neutron)
self.mox.ReplayAll()
@@ -380,7 +380,7 @@ class RouterActionTests(RouterMixin, test.TestCase):
api.neutron.network_list(IsA(http.HttpRequest))\
.MultipleTimes().AndReturn(self.networks.list())
params = {'name': router.name,
- 'admin_state_up': str(router.admin_state_up)}
+ 'admin_state_up': router.admin_state_up}
api.neutron.router_create(IsA(http.HttpRequest), **params)\
.AndRaise(self.exceptions.neutron)
self.mox.ReplayAll()
diff --git a/openstack_dashboard/dashboards/project/vpn/forms.py b/openstack_dashboard/dashboards/project/vpn/forms.py
index 7a3c52c47..1c7ee2593 100644
--- a/openstack_dashboard/dashboards/project/vpn/forms.py
+++ b/openstack_dashboard/dashboards/project/vpn/forms.py
@@ -34,15 +34,12 @@ class UpdateVPNService(forms.SelfHandlingForm):
widget=forms.TextInput(attrs={'readonly': 'readonly'}))
description = forms.CharField(
required=False, max_length=80, label=_("Description"))
- admin_state_up = forms.ChoiceField(choices=[(True, _('UP')),
- (False, _('DOWN'))],
- label=_("Admin State"),
- required=False)
+ admin_state_up = forms.BooleanField(label=_("Enable Admin State"),
+ required=False)
failure_url = 'horizon:project:vpn:index'
def handle(self, request, context):
- context['admin_state_up'] = (context['admin_state_up'] == 'True')
try:
data = {'vpnservice': {'name': context['name'],
'description': context['description'],
@@ -279,10 +276,8 @@ class UpdateIPSecSiteConnection(forms.SelfHandlingForm):
required=False,
choices=[('bi-directional', _('bi-directional')),
('response-only', _('response-only'))])
- admin_state_up = forms.ChoiceField(choices=[(True, _('UP')),
- (False, _('DOWN'))],
- label=_("Admin State"),
- required=False)
+ admin_state_up = forms.BooleanField(label=_("Enable Admin State"),
+ required=False)
failure_url = 'horizon:project:vpn:index'
@@ -297,7 +292,6 @@ class UpdateIPSecSiteConnection(forms.SelfHandlingForm):
return cleaned_data
def handle(self, request, context):
- context['admin_state_up'] = (context['admin_state_up'] == 'True')
try:
data = {'ipsec_site_connection':
{'name': context['name'],
diff --git a/openstack_dashboard/dashboards/project/vpn/templates/vpn/_add_vpn_service_help.html b/openstack_dashboard/dashboards/project/vpn/templates/vpn/_add_vpn_service_help.html
index 3ce676b30..4d682dc94 100644
--- a/openstack_dashboard/dashboards/project/vpn/templates/vpn/_add_vpn_service_help.html
+++ b/openstack_dashboard/dashboards/project/vpn/templates/vpn/_add_vpn_service_help.html
@@ -3,5 +3,5 @@
<p>{% trans "Create VPN service for current project." %}</p>
<p>{% trans "The VPN service is attached to a router and references to a single subnet to push to a remote site." %}</p>
<p>{% trans "Specify a name, description, router, and subnet for the VPN Service." %}</p>
-<p>{% trans "Admin State is UP (True) by default." %}</p>
-<p>{% trans "The router, subnet and admin state fields are required. All others are optional." %} </p>
+<p>{% trans "Admin State is enabled by default." %}</p>
+<p>{% trans "The router, subnet and admin state fields require to be enabled. All others are optional." %} </p>
diff --git a/openstack_dashboard/dashboards/project/vpn/workflows.py b/openstack_dashboard/dashboards/project/vpn/workflows.py
index f8b52aa81..699089edf 100644
--- a/openstack_dashboard/dashboards/project/vpn/workflows.py
+++ b/openstack_dashboard/dashboards/project/vpn/workflows.py
@@ -28,11 +28,11 @@ class AddVPNServiceAction(workflows.Action):
max_length=80, label=_("Description"))
router_id = forms.ChoiceField(label=_("Router"))
subnet_id = forms.ChoiceField(label=_("Subnet"))
- admin_state_up = forms.ChoiceField(
- choices=[(True, _('UP')), (False, _('DOWN'))],
- label=_("Admin State"),
- help_text=_("The state of VPN service to start in. "
- "If DOWN (False) VPN service does not forward packets."),
+ admin_state_up = forms.BooleanField(
+ label=_("Enable Admin State"),
+ help_text=_("The state of VPN service to start in. If disabled "
+ "(not checked), VPN service does not forward packets."),
+ initial=True,
required=False)
def __init__(self, request, *args, **kwargs):
@@ -426,13 +426,13 @@ class AddIPSecSiteConnectionOptionalAction(workflows.Action):
required=False,
help_text=_("Valid integer greater than the DPD interval"))
initiator = forms.ChoiceField(label=_("Initiator state"), required=False)
- admin_state_up = forms.ChoiceField(
- choices=[(True, _('UP')), (False, _('DOWN'))],
- label=_("Admin State"),
- required=False,
+ admin_state_up = forms.BooleanField(
+ label=_("Enable Admin State"),
help_text=_("The state of IPSec site connection to start in. "
- "If DOWN (False), IPSec site connection "
- "does not forward packets."))
+ "If disabled (not checked), IPSec site connection "
+ "does not forward packets."),
+ initial=True,
+ required=False)
def __init__(self, request, *args, **kwargs):
super(AddIPSecSiteConnectionOptionalAction, self).__init__(