summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2010-12-02 11:39:33 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2010-12-02 11:48:29 -0500
commit27b01cb628a94535fe3d1bdaa2f7e3899d631317 (patch)
tree15a2bb3ebd7591847012251f94cd8d1dd9f4c2a0
parent5db7c4ec34900cc85bece536e57b7e9cefa3a484 (diff)
remove task and role groups since these entites are no longer exposed in the Meta data, including them in the code causes breakage at initialization
-rw-r--r--install/static/serverconfig.js51
-rw-r--r--install/static/webui.js2
2 files changed, 0 insertions, 53 deletions
diff --git a/install/static/serverconfig.js b/install/static/serverconfig.js
index e793af34a..eef51ac35 100644
--- a/install/static/serverconfig.js
+++ b/install/static/serverconfig.js
@@ -43,61 +43,10 @@ ipa_entity_set_details_definition('aci', [
-/* Taskgroup*/
-
-ipa_entity_set_search_definition('taskgroup', [
- ['cn', 'Role-group name', null],
- ['description', 'Description', null]
-]);
-
-ipa_entity_set_add_definition('taskgroup', [
- 'dialog-add-taskgroup', 'Add New Taskgroup', [
- ['cn', 'Name', null],
- ['description', 'Description', null],
- ]
-]);
-
-
-ipa_entity_set_details_definition('taskgroup', [
- ipa_stanza({name:'ipaserver', label:'Taskgroup Details'}).
- input({name:'cn', label:'Name'}).
- input({name:'description', label:'Description'})
-]);
-
-ipa_entity_set_association_definition('taskgroup', {
-});
-
-ipa_entity_set_association_definition('rolegroup', {
- 'rolegroup': { }
-});
-/* Rolegroup*/
-
-ipa_entity_set_search_definition('rolegroup', [
- ['cn', 'Role-group name', null],
- ['description', 'Description', null]
-]);
-
-ipa_entity_set_add_definition('rolegroup', [
- 'dialog-add-rolegroup', 'Add New Rolegroup', [
- ['cn', 'Name', null],
- ['description', 'Description', null],
- ]
-]);
-
-ipa_entity_set_details_definition('rolegroup', [
- ipa_stanza({name:'ipaserver', label:'Rolegroup Details'}).
- input({name:'cn', label:'Name'}).
- input({name:'description', label:'Description'})
-]);
-
-ipa_entity_set_association_definition('rolegroup', {
- 'taskgroup': { associator: 'serial' }
-});
-
/* Configuration */
ipa_entity_set_details_definition('config',[
diff --git a/install/static/webui.js b/install/static/webui.js
index dd90b0e20..93ad899e8 100644
--- a/install/static/webui.js
+++ b/install/static/webui.js
@@ -47,8 +47,6 @@ var admin_tab_set = [
{name:'krbtpolicy', setup:ipa_details_only_setup}
]},
{name:'ipaserver', children: [
- {name:'taskgroup', setup: ipa_entity_setup},
- {name:'rolegroup', label:'Rolegroups', setup: ipa_entity_setup},
{name:'config', setup: ipa_details_only_setup}
]}
];