HBAC css cleanup

The additions to the search widget have to go one level deeper, as
'container' has both the action panel and the client area

Conflicts:

	install/static/hbac.js
	install/static/hbacsvc.js
	install/static/hbacsvcgroup.js
This commit is contained in:
Adam Young 2010-11-15 15:15:47 -05:00 committed by Endi Sukma Dewata
parent 59cc365a1d
commit b84b0239f8
3 changed files with 22 additions and 7 deletions

View File

@ -111,10 +111,9 @@ function ipa_hbac_search_facet(spec) {
var that = this; var that = this;
// TODO: replace with IPA.metadata[that.entity_name].label
$('<h2/>', { 'html': 'HBAC Rules' }).appendTo(container);
/* /*
// Not yet implemented // Not yet implemented
var left_buttons = $('<span/>', { var left_buttons = $('<span/>', {
@ -128,6 +127,7 @@ function ipa_hbac_search_facet(spec) {
left_buttons.append(ipa_button({ left_buttons.append(ipa_button({
'label': 'Cull Disabled Rules' 'label': 'Cull Disabled Rules'
})); }));
*/ */
var ul = $('.action-panel ul'); var ul = $('.action-panel ul');
@ -154,6 +154,12 @@ function ipa_hbac_search_facet(spec) {
}).appendTo(ul); }).appendTo(ul);
that.superior_create(container); that.superior_create(container);
// TODO: replace with IPA.metadata[that.entity_name].label
container.children().last().prepend(
$('<h2/>', { 'html': 'HBAC Rules' }));
container.children().last().prepend('<br/><br/>');
}; };
return that; return that;

View File

@ -98,9 +98,6 @@ function ipa_hbacsvc_search_facet(spec) {
var that = this; var that = this;
// TODO: replace with IPA.metadata[that.entity_name].label
$('<h2/>', { 'html': 'HBAC Services' }).appendTo(container);
var ul = $('.action-panel ul'); var ul = $('.action-panel ul');
$('<li/>', { $('<li/>', {
@ -126,6 +123,15 @@ function ipa_hbacsvc_search_facet(spec) {
}).appendTo(ul); }).appendTo(ul);
that.superior_create(container); that.superior_create(container);
// TODO: replace with IPA.metadata[that.entity_name].label
container.children().last().prepend(
$('<h2/>', { 'html': 'HBAC Services' }));
container.children().last().prepend('<br/><br/>');
}; };
return that; return that;

View File

@ -109,8 +109,6 @@ function ipa_hbacsvcgroup_search_facet(spec) {
var that = this; var that = this;
// TODO: replace with IPA.metadata[that.entity_name].label
$('<h2/>', { 'html': 'HBAC Service Groups' }).appendTo(container);
var ul = $('.action-panel ul'); var ul = $('.action-panel ul');
@ -137,6 +135,11 @@ function ipa_hbacsvcgroup_search_facet(spec) {
}).appendTo(ul); }).appendTo(ul);
that.superior_create(container); that.superior_create(container);
// TODO: replace with IPA.metadata[that.entity_name].label
container.children().last().prepend(
$('<h2/>', { 'html': 'HBAC Service Groups' }));
container.children().last().prepend('<br/><br/>');
}; };
return that; return that;