summaryrefslogtreecommitdiffstats
path: root/install/static/sudorule.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2010-11-29 14:26:55 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2010-12-01 15:21:02 -0500
commit47d61e6cabc7a9053a7878ea3b8676ad59415f39 (patch)
treecdad5adb403a04ee7549248bf20bcdc31d017a4f /install/static/sudorule.js
parent20b1e0a75ec832d906e7f66d2b306aabdce03901 (diff)
downloadfreeipa.git-47d61e6cabc7a9053a7878ea3b8676ad59415f39.tar.gz
freeipa.git-47d61e6cabc7a9053a7878ea3b8676ad59415f39.tar.xz
freeipa.git-47d61e6cabc7a9053a7878ea3b8676ad59415f39.zip
action panel sibling added function to get sibling entities from the tab set. remove explicit sibling code from entity pages Modified the Label fields on HBAC and SUDO to make them appear cleaner in the UI
Diffstat (limited to 'install/static/sudorule.js')
-rwxr-xr-xinstall/static/sudorule.js37
1 files changed, 1 insertions, 36 deletions
diff --git a/install/static/sudorule.js b/install/static/sudorule.js
index 023cafde..9e0e4e58 100755
--- a/install/static/sudorule.js
+++ b/install/static/sudorule.js
@@ -91,51 +91,16 @@ function ipa_sudorule_search_facet(spec) {
};
that.create = function(container) {
-
- var action_panel = that.get_action_panel();
-
- var ul = $('ul', action_panel);
-
- $('<li/>', {
- title: 'sudocmd',
- text: 'SUDO Commands'
- }).appendTo(ul);
-
- $('<li/>', {
- title: 'sudocmdgroup',
- text: 'SUDO Command Groups'
- }).appendTo(ul);
-
that.search_facet_create(container);
- // TODO: replace with IPA.metadata[that.entity_name].label
container.children().last().prepend(
- $('<h2/>', { 'html': 'SUDO Rules' }));
+ $('<h2/>', { 'html': IPA.metadata.sudorule.label }));
container.children().last().prepend('<br/><br/>');
};
that.setup = function(container) {
-
that.search_facet_setup(container);
-
- var action_panel = that.get_action_panel();
-
- var li = $('li[title=sudocmd]', action_panel);
- li.click(function() {
- var state = {};
- state['sudorule-entity'] = 'sudocmd';
- nav_push_state(state);
- return false;
- });
-
- li = $('li[title=sudocmdgroup]', action_panel);
- li.click(function() {
- var state = {};
- state['sudorule-entity'] = 'sudocmdgroup';
- nav_push_state(state);
- return false;
- });
};
return that;