summaryrefslogtreecommitdiffstats
path: root/install/static/serverconfig.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2010-12-07 12:17:12 -0600
committerAdam Young <ayoung@redhat.com>2010-12-07 17:54:04 -0500
commitdeb94b150dc48d3af2a461e7d325f7c68cceefef (patch)
treec63fbb43db12a3c3b0de65e482af17ef17622bc6 /install/static/serverconfig.js
parent9e5fdcb3a4af41282e72d314b65341d9aa209e23 (diff)
downloadfreeipa-deb94b150dc48d3af2a461e7d325f7c68cceefef.tar.gz
freeipa-deb94b150dc48d3af2a461e7d325f7c68cceefef.tar.xz
freeipa-deb94b150dc48d3af2a461e7d325f7c68cceefef.zip
Navigation updates
The entity.default_facet has been removed, instead the first facet registered to the entity will be considered as the default facet. So, the 'setup' parameter has been removed from tab definitions because it's no longer necessary. The ipa_details_only_setup() has been removed as well. An 'entity' parameter has been added to tab definitions to specify which entity corresponds to a tab item. The tab label has been changed to use entity label if available. Some hard-coded labels have been removed. The unit tests have been updated.
Diffstat (limited to 'install/static/serverconfig.js')
-rw-r--r--install/static/serverconfig.js24
1 files changed, 11 insertions, 13 deletions
diff --git a/install/static/serverconfig.js b/install/static/serverconfig.js
index eef51ac35..c7dbf4149 100644
--- a/install/static/serverconfig.js
+++ b/install/static/serverconfig.js
@@ -50,19 +50,17 @@ ipa_entity_set_details_definition('aci', [
/* Configuration */
ipa_entity_set_details_definition('config',[
- ipa_stanza({name:'ipaserver', lable:'Configuration'}).
+ ipa_stanza({name:'ipaserver', label:'Configuration'}).
input({name:'cn', label:'Name'}).
input({name:'description', label:'Description'}).
- input({name:'ipacertificatesubjectbase', label:'Certificat Subject Base'}).
- input({name: 'ipadefaultloginshell', label:'Default Login Shell'}).
- input({name:'ipadefaultprimarygroup', label:'Default Primary Group'}).
- input({name:'ipagroupsearchfields', label:'Group Search Fields'}).
- input({name:'ipahomesrootdir', label:'Home Root Dir'}).
- input({name:'ipamaxusernamelength', label:'Max Username Length'}).
- input({name:'ipamigrationenabled', label:'Migration enabled?'}).
- input({name:'ipasearchrecordslimit', label:'Search Record Limit'}).
- input({name:'ipasearchtimelimit', label:'Search Time Limit'}).
- input({name:'ipausersearchfields', label:'User Search Fields'})
+ input({name:'ipacertificatesubjectbase'}).
+ input({name:'ipadefaultloginshell'}).
+ input({name:'ipadefaultprimarygroup'}).
+ input({name:'ipagroupsearchfields'}).
+ input({name:'ipahomesrootdir'}).
+ input({name:'ipamaxusernamelength'}).
+ input({name:'ipamigrationenabled'}).
+ input({name:'ipasearchrecordslimit'}).
+ input({name:'ipasearchtimelimit'}).
+ input({name:'ipausersearchfields'})
]);
-
-IPA.get_entity('config').default_facet = 'details';