From f168afbeb6e88e6ba66d7472529c35ed78dc6bc0 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 24 Oct 2011 18:18:10 -0500 Subject: Removed HBAC deny rule warning. The HBAC deny rule is no longer supported so it's no longer necessary to show the warning. Ticket #1444 --- install/ui/hbac.js | 44 -------------------------------------------- 1 file changed, 44 deletions(-) (limited to 'install/ui/hbac.js') diff --git a/install/ui/hbac.js b/install/ui/hbac.js index fb57dd15..e05e43f6 100644 --- a/install/ui/hbac.js +++ b/install/ui/hbac.js @@ -554,47 +554,3 @@ IPA.hbacrule_details_facet = function(spec) { return that; }; - - -IPA.hbac_deny_warning_dialog = function(container) { - var dialog = IPA.dialog({ - 'title': 'HBAC Deny Rules found' - }); - - var link_path = "config"; - if (IPA.use_static_files){ - link_path = "html"; - } - - dialog.create = function() { - dialog.container.append( - "HBAC rules with type deny have been found."+ - " These rules have been deprecated." + - " Please remove them, and restructure the HBAC rules." ); - $('

').append($('',{ - text: 'Click here for more information', - href: '../' +link_path +'/hbac-deny-remove.html', - target: "_blank", - style: 'target: tab; color: blue; ' - })).appendTo(dialog.container); - }; - - dialog.create_button({ - name: 'edit', - label: 'Edit HBAC Rules', - click: function() { - dialog.close(); - IPA.nav.show_page('hbacrule', 'search'); - } - }); - - dialog.create_button({ - name: 'ignore', - label: 'Ignore for now', - click: function() { - dialog.close(); - } - }); - - dialog.open(); -}; -- cgit