2011-01-14 11:16:25 -06:00
|
|
|
/*jsl:import ipa.js */
|
|
|
|
|
2010-09-16 09:28:07 -05:00
|
|
|
/* Authors:
|
|
|
|
* Pavel Zuna <pzuna@redhat.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Red Hat
|
|
|
|
* see file 'COPYING' for use and warranty information
|
|
|
|
*
|
2010-12-09 06:59:11 -06:00
|
|
|
* 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.
|
2010-09-16 09:28:07 -05:00
|
|
|
*
|
|
|
|
* 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
|
2010-12-09 06:59:11 -06:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2010-09-16 09:28:07 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* REQUIRES: ipa.js, details.js, search.js, add.js, entity.js */
|
|
|
|
|
2011-01-19 20:10:18 -06:00
|
|
|
IPA.entity_factories.netgroup = function() {
|
2011-02-08 15:41:24 -06:00
|
|
|
|
2011-01-12 18:51:22 -06:00
|
|
|
var that = IPA.entity({
|
2010-12-03 23:29:05 -06:00
|
|
|
'name': 'netgroup'
|
|
|
|
});
|
|
|
|
|
2011-02-08 15:41:24 -06:00
|
|
|
that.init = function() {
|
2010-12-03 23:29:05 -06:00
|
|
|
|
2011-02-08 15:41:24 -06:00
|
|
|
that.facet(
|
|
|
|
IPA.search_facet({
|
|
|
|
name: 'search',
|
2011-02-16 12:46:59 -06:00
|
|
|
label: IPA.messages.facets.search,
|
2011-02-08 15:41:24 -06:00
|
|
|
entity_name: that.name
|
|
|
|
}).
|
|
|
|
column({name:'cn'}).
|
|
|
|
column({name:'description'}).
|
|
|
|
dialog(
|
|
|
|
IPA.add_dialog({
|
|
|
|
name: 'add',
|
2011-02-16 12:46:59 -06:00
|
|
|
title: IPA.messages.objects.netgroup.add
|
2011-02-08 15:41:24 -06:00
|
|
|
}).
|
|
|
|
field(IPA.text_widget({ name: 'cn', undo: false})).
|
|
|
|
field(IPA.text_widget({ name: 'description', undo: false}))));
|
2010-12-06 16:30:10 -06:00
|
|
|
|
2011-02-08 15:41:24 -06:00
|
|
|
that.facet(
|
|
|
|
IPA.details_facet({name: 'details'}).
|
|
|
|
section(
|
2011-02-16 12:46:59 -06:00
|
|
|
IPA.stanza({
|
|
|
|
name: 'identity',
|
|
|
|
label: IPA.messages.objects.netgroup.identity
|
|
|
|
}).
|
2011-02-08 15:41:24 -06:00
|
|
|
input({name: 'cn'}).
|
|
|
|
input({name: 'description'}).
|
|
|
|
input({name: 'nisdomainname'})));
|
2010-12-06 16:30:10 -06:00
|
|
|
|
2011-02-11 18:04:04 -06:00
|
|
|
that.facet(
|
|
|
|
IPA.association_facet({
|
|
|
|
name: 'memberof_netgroup',
|
|
|
|
associator: IPA.serial_associator
|
|
|
|
}));
|
|
|
|
|
2010-12-03 23:29:05 -06:00
|
|
|
that.create_association_facets();
|
|
|
|
that.entity_init();
|
2010-12-06 16:30:10 -06:00
|
|
|
};
|
2011-02-08 15:41:24 -06:00
|
|
|
|
2010-12-03 23:29:05 -06:00
|
|
|
return that;
|
2011-01-19 20:10:18 -06:00
|
|
|
};
|
2010-12-03 23:29:05 -06:00
|
|
|
|
|
|
|
|
|
|
|
|