diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-10-24 18:18:10 -0500 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-10-26 12:53:28 +0000 |
commit | f168afbeb6e88e6ba66d7472529c35ed78dc6bc0 (patch) | |
tree | ebadbb98c5c688c9c7bb00f81598868fb7678057 /install/ui/hbac.js | |
parent | 0450934e366c37d01fe84a2c23ed196bf8dd6f89 (diff) | |
download | freeipa.git-f168afbeb6e88e6ba66d7472529c35ed78dc6bc0.tar.gz freeipa.git-f168afbeb6e88e6ba66d7472529c35ed78dc6bc0.tar.xz freeipa.git-f168afbeb6e88e6ba66d7472529c35ed78dc6bc0.zip |
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
Diffstat (limited to 'install/ui/hbac.js')
-rw-r--r-- | install/ui/hbac.js | 44 |
1 files changed, 0 insertions, 44 deletions
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." ); - $('<p/>').append($('<a/>',{ - 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(); -}; |