webui: remove unused collapsible feature from section

Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
This commit is contained in:
Petr Vobornik 2014-03-31 16:36:30 +02:00
parent 6b5b9a1185
commit 563dcdc3eb
12 changed files with 20 additions and 74 deletions

View File

@ -169,6 +169,7 @@
"name": "Sections and layout widgets",
"classes": [
"IPA.layout",
"IPA.section",
"*_section",
"*_layout",
"IPA.details_table_section_nc"

View File

@ -2,8 +2,6 @@ NULL =
appdir = $(IPA_DATA_DIR)/ui/images
app_DATA = \
arrow-collapsed.png \
arrow-expanded.png \
centered-background.png \
facet-tab-off.png \
facet-tab-on.png \

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -51,23 +51,6 @@ textarea[readonly] {
margin: 0 auto 0;
}
/** Icons **/
.icon {
display: inline-block;
height: 16px;
width: 16px;
vertical-align: middle;
}
.expanded-icon {
background: url(images/arrow-expanded.png);
}
.collapsed-icon {
background: url(images/arrow-collapsed.png);
}
/* ---- Password expiration */
.header-passwordexpires {

View File

@ -268,7 +268,7 @@ IPA.automember.rule_details_facet = function(spec) {
]
},
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'inclusive',
label: '@i18n:objects.automember.inclusive',
widgets: [
@ -298,7 +298,7 @@ IPA.automember.rule_details_facet = function(spec) {
]
},
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'exclusive',
label: '@i18n:objects.automember.exclusive',
widgets: [

View File

@ -43,18 +43,6 @@ define([
*/
var exp = {};
/**
* Name of expanded icon
* @member details
*/
exp.expanded_icon = IPA.expanded_icon = 'expanded-icon';
/**
* Name of collapsed icon
* @member details
*/
exp.collapsed_icon = IPA.collapsed_icon = 'collapsed-icon';
/**
* Details builder
*

View File

@ -290,7 +290,7 @@ var add_hbacrule_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'user',
label: '@i18n:objects.hbacrule.user',
widgets: [
@ -359,7 +359,7 @@ var add_hbacrule_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'host',
label: '@i18n:objects.hbacrule.host',
widgets: [
@ -432,7 +432,7 @@ var add_hbacrule_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'service',
label: '@i18n:objects.hbacrule.service',
widgets: [

View File

@ -149,7 +149,7 @@ var add_netgroup_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'user',
label: '@i18n:objects.netgroup.user',
widgets: [
@ -233,7 +233,7 @@ var add_netgroup_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'host',
label: '@i18n:objects.netgroup.host',
widgets: [

View File

@ -192,7 +192,7 @@ var add_selinux_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'user',
label: '@i18n:objects.selinuxusermap.user',
widgets: [
@ -261,7 +261,7 @@ var add_selinux_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'host',
label: '@i18n:objects.selinuxusermap.host',
widgets: [

View File

@ -312,7 +312,7 @@ var add_sudorule_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'user',
label: '@i18n:objects.sudorule.user',
widgets: [
@ -387,7 +387,7 @@ var add_sudorule_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'host',
label: '@i18n:objects.sudorule.host',
widgets: [
@ -473,7 +473,7 @@ var add_sudorule_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'command',
label: '@i18n:objects.sudorule.command',
widgets: [
@ -589,7 +589,7 @@ var add_sudorule_details_facet_widgets = function (spec) {
spec.widgets.push(
{
$factory: IPA.collapsible_section,
$factory: IPA.section,
name: 'runas',
label: '@i18n:objects.sudorule.runas',
widgets: [
@ -682,7 +682,7 @@ IPA.sudo.options_section = function(spec) {
spec = spec || {};
var that = IPA.collapsible_section(spec);
var that = IPA.section(spec);
function setup_table(){
that.table = IPA.table_widget({

View File

@ -4104,13 +4104,12 @@ IPA.composite_widget = function(spec) {
* @class
* @extends IPA.composite_widget
*/
IPA.collapsible_section = function(spec) {
IPA.section = function(spec) {
spec = spec || {};
var that = IPA.composite_widget(spec);
that.collabsible = !!spec.collabsible;
that.show_header = spec.show_header === undefined ? true : spec.show_header;
that.create = function(container) {
@ -4135,18 +4134,6 @@ IPA.collapsible_section = function(spec) {
name: that.name
}).appendTo(container);
if (that.collabsible) {
that.icon = $('<span/>', {
name: 'icon',
'class': 'icon section-expand '+IPA.expanded_icon
}).appendTo(that.header);
that.header.click(function() {
var visible = that.content_container.is(":visible");
that.toggle(!visible);
});
}
that.header.append(' ');
that.header.append(that.label);
@ -4156,16 +4143,6 @@ IPA.collapsible_section = function(spec) {
that.composite_widget_create(that.content_container);
};
that.toggle = function(visible) {
that.icon.toggleClass(IPA.expanded_icon, visible);
that.icon.toggleClass(IPA.collapsed_icon, !visible);
if (visible != that.content_container.is(":visible")) {
that.content_container.slideToggle('slow');
}
};
return that;
};
@ -4416,15 +4393,15 @@ exp.fluid_layout = IPA.fluid_layout = function(spec) {
};
/**
* Collapsible section with table layout
* Section with fluid form layout
* @class
* @extends IPA.collapsible_section
* @extends IPA.section
*/
IPA.details_section = function(spec) {
spec = spec || {};
var that = IPA.collapsible_section(spec);
var that = IPA.section(spec);
that.layout = IPA.build(spec.layout || IPA.fluid_layout);
that.action_panel = that.build_child(spec.action_panel, {},
{ $factory: IPA.action_panel });
@ -4460,13 +4437,12 @@ IPA.details_section = function(spec) {
};
/**
* Collapsible section with table layout
* Section with table layout
* @class
* @extends IPA.details_section
*/
IPA.details_table_section = function(spec) {
spec.collabsible = spec.collabsible === undefined ? true : spec.collabsible;
spec.layout = spec.layout || IPA.table_layout;
var that = IPA.details_section(spec);