From 31eebda584d556454104a8fbf26974b6b49d9589 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 29 Feb 2012 18:53:11 +0100 Subject: Removed CSV creation from UI Creating CSV values in UI is unnecessary and error-prone because server converts them back to list. Possible problems with values containing commas may occur. All occurrences of CSV joining were therefore removed. https://fedorahosted.org/freeipa/ticket/2227 --- install/ui/aci.js | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'install/ui/aci.js') diff --git a/install/ui/aci.js b/install/ui/aci.js index ec3c8065..ba4a22bf 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -46,7 +46,6 @@ IPA.aci.permission_entity = function(spec) { { type: 'rights', name: 'permissions', - join: true, widget: 'rights.permissions' }, { @@ -142,7 +141,6 @@ IPA.aci.permission_entity = function(spec) { { type: 'rights', name: 'permissions', - join: true, widget: 'general.permissions' }, { @@ -407,14 +405,12 @@ IPA.aci.delegation_entity = function(spec) { type: 'entity_select', name: 'memberof', other_entity: that.group_entity, - other_field: 'cn', - join: true + other_field: 'cn' }, { type: 'attributes', name: 'attrs', - object_type: 'user', - join: true + object_type: 'user' } ] } @@ -434,14 +430,12 @@ IPA.aci.delegation_entity = function(spec) { type: 'entity_select', name: 'memberof', other_entity: that.group_entity, - other_field: 'cn', - join: true + other_field: 'cn' }, { type: 'attributes', name: 'attrs', - object_type: 'user', - join: true + object_type: 'user' } ] }); -- cgit