summaryrefslogtreecommitdiffstats
path: root/install/ui/hbac.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/hbac.js')
-rw-r--r--install/ui/hbac.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/install/ui/hbac.js b/install/ui/hbac.js
index fb57dd158..e05e43f6b 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();
-};