From 6350686710c49b632ea7b1085e4db6755056d263 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 6 Dec 2010 16:30:10 -0600 Subject: Dialog i18n The ipa_add_dialog has been fixed to initialize the fields which will get the labels from metadata. Hard-coded labels have been removed from field declarations. The superior() method has been removed because it doesn't work with multi-level inheritance. Superclass method for now is called using _ (e.g. widget_init). --- install/static/user.js | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'install/static/user.js') diff --git a/install/static/user.js b/install/static/user.js index 8eb41206..3e1174ca 100644 --- a/install/static/user.js +++ b/install/static/user.js @@ -45,14 +45,13 @@ function ipa_user(){ 'name': 'add', 'title': 'Add User' }); - that.add_dialog(dialog); + + dialog.add_field(ipa_text_widget({ name: 'uid', undo: false })); + dialog.add_field(ipa_text_widget({ name: 'givenname', undo: false })); + dialog.add_field(ipa_text_widget({ name: 'sn', undo: false })); dialog.init(); - dialog.add_field(ipa_text_widget({ name: 'uid',entity_name:'user' })); - dialog.add_field(ipa_text_widget({ name: 'givenname', - entity_name:'user' })); - dialog.add_field(ipa_text_widget({ name: 'sn',entity_name:'user' })); - + /*eventually, we need to call entity.create_association_facets(); but we are currently defining the associator using the global @@ -60,7 +59,7 @@ function ipa_user(){ that.entity_init(); - } + }; function details_facet(spec) { spec = spec || {}; @@ -110,7 +109,7 @@ IPA.add_entity(ipa_user()); ipa_entity_set_association_definition('user', { 'group': { associator: 'serial' }, - 'netgroup': { associator: 'serial' }, + 'netgroup': { associator: 'serial' } }); /* ATTRIBUTE CALLBACKS */ -- cgit