diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-11-03 16:02:32 -0500 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2011-11-04 16:51:37 +0100 |
commit | 6c3e1a21d79c344dc54c7e8fe789068ccda3a48b (patch) | |
tree | 2ead65366b2e2bf40bfa23da986cec737efbd78a | |
parent | f7938a17737baf432f75cd7115150b1311e5eeb5 (diff) | |
download | freeipa.git-6c3e1a21d79c344dc54c7e8fe789068ccda3a48b.tar.gz freeipa.git-6c3e1a21d79c344dc54c7e8fe789068ccda3a48b.tar.xz freeipa.git-6c3e1a21d79c344dc54c7e8fe789068ccda3a48b.zip |
Fixed blank krbtpolicy and config pages.
The details page compares the old and the new primary keys to determine
if the page needs to be reloaded. The Kerberos Ticket Policy and Config
pages do not use primary keys, so they are never loaded/updated with
data. A parameter has been added to force update on these pages.
Ticket #1459
-rw-r--r-- | install/ui/association.js | 1 | ||||
-rw-r--r-- | install/ui/details.js | 1 | ||||
-rw-r--r-- | install/ui/entity.js | 2 | ||||
-rw-r--r-- | install/ui/policy.js | 15 | ||||
-rw-r--r-- | install/ui/serverconfig.js | 13 |
5 files changed, 22 insertions, 10 deletions
diff --git a/install/ui/association.js b/install/ui/association.js index d3d6b124..6ce8fea4 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 15056204..93bb3e8a 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 ace44c3c..526e2795 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 41432f74..f773c471 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 6dc2eaf6..eec47d2f 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 |