From 69e77212ea428f79742b9ff0452ef19d74cc76d4 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 2 Dec 2010 22:12:59 -0600 Subject: HBAC Service Groups adjustments The association facet for HBAC Service Groups has been removed and replaced with an association table in the details page. The ipa_association_table_widget has been modified to support multiple columns in the table itself and in the adder dialog. The ipa_association_adder_dialog and ipa_association_facet have been refactored. The ipa_sudorule_association_widget and ipa_rule_association_widget has been removed because their functionalities have been merged into ipa_association_table_widget. --- install/static/hbac.js | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'install/static/hbac.js') diff --git a/install/static/hbac.js b/install/static/hbac.js index a85a89a5..f0f2f96d 100755 --- a/install/static/hbac.js +++ b/install/static/hbac.js @@ -553,8 +553,7 @@ function ipa_hbac_details_general_section(spec){ 'style': 'width: 100%;' }).appendTo(container); - var tr = $('', { - }).appendTo(table); + var tr = $('').appendTo(table); var td = $('', { 'style': 'width: 100px; text-align: right;', @@ -613,8 +612,7 @@ function ipa_hbac_details_general_section(spec){ 'html': 'undo' }).appendTo(span); - tr = $('', { - }).appendTo(table); + tr = $('').appendTo(table); td = $('', { 'style': 'text-align: right; vertical-align: top;', @@ -642,8 +640,7 @@ function ipa_hbac_details_general_section(spec){ 'html': 'undo' }).appendTo(span); - tr = $('', { - }).appendTo(table); + tr = $('').appendTo(table); td = $('', { 'style': 'text-align: right; vertical-align: top;', @@ -689,7 +686,7 @@ function ipa_hbac_association_widget(spec) { spec = spec || {}; - var that = ipa_rule_association_widget(spec); + var that = ipa_association_table_widget(spec); that.category = spec.category; -- cgit