From a8ea42bda841c8773d68886614faf9efd38e33bd Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Wed, 16 Nov 2011 21:07:20 -0600 Subject: Fixed entity metadata resolution. The current code assumes that an entity will always have a corresponding LDAPObject on the server, so it looks for the metadata in a fixed location. This assumption doesn't work for HBAC Test since it is a Command, not an LDAPObject, so the metadata has to be obtained from a different location. A new method get_default_metadata() has been added to allow each entity to find the metadata from the correct location. Ticket #388 --- install/ui/policy.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'install/ui/policy.js') diff --git a/install/ui/policy.js b/install/ui/policy.js index fbabd083..d48cacc4 100644 --- a/install/ui/policy.js +++ b/install/ui/policy.js @@ -29,9 +29,10 @@ IPA.pwpolicy.entity = function(spec) { var that = IPA.entity(spec); - that.init = function(params) { + that.init = function() { + that.entity_init(); - params.builder.search_facet({ + that.builder.search_facet({ columns:['cn','cospriority']}). details_facet({ sections:[ @@ -79,9 +80,10 @@ IPA.krbtpolicy.entity = function(spec) { var that = IPA.entity(spec); - that.init = function(params) { + that.init = function() { + that.entity_init(); - params.builder.details_facet({ + that.builder.details_facet({ title: IPA.metadata.objects.krbtpolicy.label, sections: [ { -- cgit