summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
Diffstat (limited to 'install')
-rw-r--r--install/ui/association.js1
-rw-r--r--install/ui/details.js1
-rw-r--r--install/ui/entity.js2
-rw-r--r--install/ui/policy.js15
-rw-r--r--install/ui/serverconfig.js13
5 files changed, 22 insertions, 10 deletions
diff --git a/install/ui/association.js b/install/ui/association.js
index d3d6b124b..6ce8fea46 100644
--- a/install/ui/association.js
+++ b/install/ui/association.js
@@ -1206,6 +1206,7 @@ IPA.association_facet = function (spec) {
};
that.needs_update = function() {
+ if (that._needs_update !== undefined) return that._needs_update;
var pkey = IPA.nav.get_state(that.entity.name+'-pkey');
return that.pkey !== pkey;
};
diff --git a/install/ui/details.js b/install/ui/details.js
index 15056204f..93bb3e8a4 100644
--- a/install/ui/details.js
+++ b/install/ui/details.js
@@ -528,6 +528,7 @@ IPA.details_facet = function(spec) {
};
that.needs_update = function() {
+ if (that._needs_update !== undefined) return that._needs_update;
var pkey = IPA.nav.get_state(that.entity.name+'-pkey');
return pkey !== that.pkey;
};
diff --git a/install/ui/entity.js b/install/ui/entity.js
index ace44c3c1..526e2795d 100644
--- a/install/ui/entity.js
+++ b/install/ui/entity.js
@@ -44,6 +44,7 @@ IPA.facet = function (spec) {
that.header = spec.header || IPA.facet_header({ facet: that });
that.entity_name = spec.entity_name;
+ that._needs_update = spec.needs_update;
that.dialogs = $.ordered_map();
@@ -113,6 +114,7 @@ IPA.facet = function (spec) {
};
that.needs_update = function() {
+ if (that._needs_update !== undefined) return that._needs_update;
return true;
};
diff --git a/install/ui/policy.js b/install/ui/policy.js
index 41432f743..f773c4714 100644
--- a/install/ui/policy.js
+++ b/install/ui/policy.js
@@ -76,9 +76,16 @@ IPA.entity_factories.krbtpolicy = function() {
entity('krbtpolicy').
details_facet({
title: IPA.metadata.objects.krbtpolicy.label,
- sections:[{
- name: 'identity',
- fields:[ 'krbmaxrenewableage','krbmaxticketlife' ]
- }]}).
+ sections: [
+ {
+ name: 'identity',
+ fields: [
+ 'krbmaxrenewableage',
+ 'krbmaxticketlife'
+ ]
+ }
+ ],
+ needs_update: true
+ }).
build();
};
diff --git a/install/ui/serverconfig.js b/install/ui/serverconfig.js
index 6dc2eaf6d..eec47d2f7 100644
--- a/install/ui/serverconfig.js
+++ b/install/ui/serverconfig.js
@@ -32,12 +32,11 @@ IPA.entity_factories.config = function(){
entity('config').
details_facet({
title: IPA.metadata.objects.config.label,
- sections:
- [
+ sections: [
{
name: 'search',
label: IPA.messages.objects.config.search,
- fields:[
+ fields: [
'ipasearchrecordslimit',
'ipasearchtimelimit'
]
@@ -45,7 +44,7 @@ IPA.entity_factories.config = function(){
{
name: 'user',
label: IPA.messages.objects.config.user,
- fields:[
+ fields: [
'ipausersearchfields',
'ipadefaultemaildomain',
{
@@ -71,7 +70,7 @@ IPA.entity_factories.config = function(){
{
name: 'group',
label: IPA.messages.objects.config.group,
- fields:[
+ fields: [
'ipagroupsearchfields',
{
factory: IPA.multivalued_text_widget,
@@ -79,6 +78,8 @@ IPA.entity_factories.config = function(){
}
]
}
- ]}).
+ ],
+ needs_update: true
+ }).
build();
}; \ No newline at end of file