diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-11-26 14:28:32 +0100 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2013-01-18 15:10:36 +0100 |
commit | b9ef6ab0c412913234f05f788b3fcd3c3277eb69 (patch) | |
tree | 2af9ef49ce74fd152c4c7b6f0aad543b4793ba59 /install/ui/selinux.js | |
parent | 8f8e790d9468245c031320d6a506a420f486638f (diff) | |
download | freeipa.git-b9ef6ab0c412913234f05f788b3fcd3c3277eb69.tar.gz freeipa.git-b9ef6ab0c412913234f05f788b3fcd3c3277eb69.tar.xz freeipa.git-b9ef6ab0c412913234f05f788b3fcd3c3277eb69.zip |
Move of core Web UI files to AMD directory
SSIA
https://fedorahosted.org/freeipa/ticket/112
Diffstat (limited to 'install/ui/selinux.js')
-rw-r--r-- | install/ui/selinux.js | 315 |
1 files changed, 0 insertions, 315 deletions
diff --git a/install/ui/selinux.js b/install/ui/selinux.js deleted file mode 100644 index ca470060..00000000 --- a/install/ui/selinux.js +++ /dev/null @@ -1,315 +0,0 @@ -/*jsl:import ipa.js */ - -/* Authors: - * Petr Vobornik <pvoborni@redhat.com> - * - * Copyright (C) 2012 Red Hat - * see file 'COPYING' for use and warranty information - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -/* REQUIRES: ipa.js, details.js, search.js, add.js, facet.js, entity.js */ - -IPA.selinux = { - remove_method_priority: IPA.config.default_priority - 1 -}; - -IPA.selinux.selinuxusermap_entity = function(spec) { - - var that = IPA.entity(spec); - - that.init = function() { - that.entity_init(); - - that.builder.search_facet({ - row_enabled_attribute: 'ipaenabledflag', - search_all_attributes: true, - columns: [ - 'cn', - 'ipaselinuxuser', - { - name: 'ipaenabledflag', - label: IPA.messages.status.label, - formatter: IPA.boolean_status_formatter() - }, - 'description' - ], - actions: [ - IPA.batch_disable_action, - IPA.batch_enable_action - ], - control_buttons: [ - { - name: 'disable', - label: IPA.messages.buttons.disable, - icon: 'disabled-icon' - }, - { - name: 'enable', - label: IPA.messages.buttons.enable, - icon: 'enabled-icon' - } - ] - }). - details_facet({ - factory: IPA.selinux_details_facet, - entity: that, - command_mode: 'info', - actions: [ - IPA.select_action, - IPA.enable_action, - IPA.disable_action, - IPA.delete_action - ], - header_actions: ['select_action', 'enable', 'disable', 'delete'], - state: { - evaluators: [ - { - factory: IPA.enable_state_evaluator, - field: 'ipaenabledflag' - } - ], - summary_conditions: [ - IPA.enabled_summary_cond(), - IPA.disabled_summary_cond() - ] - } - }). - adder_dialog({ - fields: [ - 'cn', - 'ipaselinuxuser' - ] - }); - }; - - return that; -}; - -IPA.selinux_details_facet = function(spec) { - - var entity_name = spec.entity.name; - - // - // General - // - - spec.fields = [ - { - name: 'cn', - read_only: true, - widget: 'general.cn' - }, - { - type: 'textarea', - name: 'description', - widget: 'general.description' - }, - { - name: 'ipaselinuxuser', - widget: 'general.ipaselinuxuser' - }, - { - type: 'entity_select', - name: 'seealso', - widget: 'general.seealso' - } - ]; - - spec.widgets = [ - { - type: 'details_table_section', - name: 'general', - label: IPA.messages.details.general, - widgets: [ - { - name: 'cn' - }, - { - type: 'textarea', - name: 'description' - }, - { - name: 'ipaselinuxuser', - widget: 'general.ipaselinuxuser' - }, - { - type: 'entity_select', - name: 'seealso', - other_entity: 'hbacrule', - other_field: 'cn' - } - ] - } - ]; - - // - // Users - // - - spec.fields.push( - { - type: 'radio', - name: 'usercategory', - widget: 'user.rule.usercategory' - }, - { - type: 'rule_association_table', - name: 'memberuser_user', - widget: 'user.rule.memberuser_user', - priority: IPA.selinux.remove_method_priority - }, - { - type: 'rule_association_table', - name: 'memberuser_group', - widget: 'user.rule.memberuser_group', - priority: IPA.selinux.remove_method_priority - } - ); - - spec.widgets.push( - { - factory: IPA.collapsible_section, - name: 'user', - label: IPA.messages.objects.selinuxusermap.user, - widgets: [ - { - factory: IPA.rule_details_widget, - name: 'rule', - radio_name: 'usercategory', - options: [ - { value: 'all', - label: IPA.messages.objects.selinuxusermap.anyone }, - { value: '', - label: IPA.messages.objects.selinuxusermap.specified_users } - ], - tables: [ - { name: 'memberuser_user' }, - { name: 'memberuser_group' } - ], - widgets: [ - { - type: 'rule_association_table', - id: entity_name+'-memberuser_user', - name: 'memberuser_user', - add_method: 'add_user', - remove_method: 'remove_user', - add_title: IPA.messages.association.add.member, - remove_title: IPA.messages.association.remove.member - }, - { - type: 'rule_association_table', - id: entity_name+'-memberuser_group', - name: 'memberuser_group', - add_method: 'add_user', - remove_method: 'remove_user', - add_title: IPA.messages.association.add.member, - remove_title: IPA.messages.association.remove.member - } - ] - } - ] - } - ); - - // - // Hosts - // - - spec.fields.push( - { - type: 'radio', - name: 'hostcategory', - widget: 'host.rule.hostcategory' - }, - { - type: 'rule_association_table', - name: 'memberhost_host', - widget: 'host.rule.memberhost_host', - priority: IPA.selinux.remove_method_priority - }, - { - type: 'rule_association_table', - name: 'memberhost_hostgroup', - widget: 'host.rule.memberhost_hostgroup', - priority: IPA.selinux.remove_method_priority - } - ); - - spec.widgets.push( - { - factory: IPA.collapsible_section, - name: 'host', - label: IPA.messages.objects.selinuxusermap.host, - widgets: [ - { - factory: IPA.rule_details_widget, - name: 'rule', - radio_name: 'hostcategory', - options: [ - { - 'value': 'all', - 'label': IPA.messages.objects.selinuxusermap.any_host - }, - { - 'value': '', - 'label': IPA.messages.objects.selinuxusermap.specified_hosts - } - ], - tables: [ - { 'name': 'memberhost_host' }, - { 'name': 'memberhost_hostgroup' } - ], - widgets: [ - { - type: 'rule_association_table', - id: entity_name+'-memberuser_user', - name: 'memberhost_host', - add_method: 'add_host', - remove_method: 'remove_host', - add_title: IPA.messages.association.add.member, - remove_title: IPA.messages.association.remove.member - }, - { - type: 'rule_association_table', - id: entity_name+'-memberuser_group', - name: 'memberhost_hostgroup', - add_method: 'add_host', - remove_method: 'remove_host', - add_title: IPA.messages.association.add.member, - remove_title: IPA.messages.association.remove.member - } - ] - } - ] - } - ); - - var that = IPA.details_facet(spec); - - that.update_on_success = function(data, text_status, xhr) { - that.refresh(); - that.on_update.notify(); - that.nofify_update_success(); - }; - - that.update_on_error = function(xhr, text_status, error_thrown) { - that.refresh(); - }; - - return that; -}; - -IPA.register('selinuxusermap', IPA.selinux.selinuxusermap_entity);
\ No newline at end of file |