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
<class name>_<method> (e.g. widget_init).
This commit is contained in:
Endi S. Dewata
2010-12-06 16:30:10 -06:00
committed by Adam Young
parent ca436d9ec3
commit 6350686710
17 changed files with 74 additions and 137 deletions

View File

@@ -84,6 +84,8 @@ function ipa_add_dialog(spec) {
that.add_button('Cancel', function() { that.add_button('Cancel', function() {
that.close(); that.close();
}); });
that.dialog_init();
}; };
that.add = function(record, on_success, on_error) { that.add = function(record, on_success, on_error) {
@@ -109,7 +111,6 @@ function ipa_add_dialog(spec) {
ipa_cmd('add', args, options, on_success, on_error, that.entity_name); ipa_cmd('add', args, options, on_success, on_error, that.entity_name);
}; };
that.superior_init = that.superior('init');
that.add_dialog_init = that.init; that.add_dialog_init = that.init;
return that; return that;

View File

@@ -142,13 +142,6 @@ function ipa_details_section(spec){
that.fields = []; that.fields = [];
that.fields_by_name = {}; that.fields_by_name = {};
that.superior = function(name) {
var method = that[name];
return function () {
return method.apply(that, arguments);
};
};
that.__defineGetter__("entity_name", function(){ that.__defineGetter__("entity_name", function(){
return that._entity_name; return that._entity_name;
}); });

View File

@@ -47,13 +47,6 @@ function ipa_facet(spec) {
that.create_action_panel = ipa_facet_create_action_panel; that.create_action_panel = ipa_facet_create_action_panel;
that.superior = function(name) {
var method = that[name];
return function () {
return method.apply(that, arguments);
};
};
function init() { function init() {
} }
@@ -105,13 +98,6 @@ function ipa_entity(spec) {
that.associations = []; that.associations = [];
that.associations_by_name = {}; that.associations_by_name = {};
that.superior = function(name) {
var method = that[name];
return function () {
return method.apply(that, arguments);
};
};
that.get_dialog = function(name) { that.get_dialog = function(name) {
return that.dialogs_by_name[name]; return that.dialogs_by_name[name];
}; };
@@ -273,7 +259,6 @@ function ipa_entity_set_add_definition(entity_name, data) {
'title': data[1] 'title': data[1]
}); });
entity.add_dialog(dialog); entity.add_dialog(dialog);
dialog.init();
for (var i=0; i<data[2].length; i++) { for (var i=0; i<data[2].length; i++) {
var field = data[2][i]; var field = data[2][i];
@@ -284,6 +269,8 @@ function ipa_entity_set_add_definition(entity_name, data) {
undo: false undo: false
})); }));
} }
dialog.init();
} }
function ipa_entity_get_add_dialog(entity_name) { function ipa_entity_get_add_dialog(entity_name) {

View File

@@ -87,16 +87,13 @@ function ipa_group_add_dialog(spec) {
that.init = function() { that.init = function() {
that.add_dialog_init(); that.add_field(ipa_text_widget({name:'cn', undo: false}));
that.add_field(ipa_text_widget({name:'description', undo: false}));
// TODO: Replace with i18n label
that.add_field(ipa_checkbox_widget({name:'posix', label:'Is this a POSIX group?', undo: false}));
that.add_field(ipa_text_widget({name:'gidnumber', undo: false}));
that.add_field(ipa_text_widget({name:'cn', entity_name:'group', that.add_dialog_init();
undo: false}));
that.add_field(ipa_text_widget({name:'description',
entity_name:'group', undo: false}));
that.add_field(ipa_checkbox_widget({name:'posix', entity_name:'group',
undo: false}));
that.add_field(ipa_text_widget({name:'gidnumber', entity_name:'group',
undo: false}));
}; };
return that; return that;

View File

@@ -63,23 +63,21 @@ function ipa_hbac_add_dialog(spec) {
that.init = function() { that.init = function() {
that.add_dialog_init();
that.add_field(ipa_text_widget({ that.add_field(ipa_text_widget({
'name': 'cn', 'name': 'cn',
'label': 'Rule Name',
'undo': false 'undo': false
})); }));
that.add_field(ipa_radio_widget({ that.add_field(ipa_radio_widget({
'name': 'accessruletype', 'name': 'accessruletype',
'label': 'Rule type',
'options': [ 'options': [
{ 'value': 'allow', 'label': 'Allow' }, { 'value': 'allow', 'label': 'Allow' },
{ 'value': 'deny', 'label': 'Deny' } { 'value': 'deny', 'label': 'Deny' }
], ],
'undo': false 'undo': false
})); }));
that.add_dialog_init();
}; };
return that; return that;

View File

@@ -61,14 +61,12 @@ function ipa_hbacsvc_add_dialog(spec) {
var that = ipa_add_dialog(spec); var that = ipa_add_dialog(spec);
that.superior_init = that.superior('init');
that.init = function() { that.init = function() {
that.superior_init(); that.add_field(ipa_text_widget({name:'cn', undo: false}));
that.add_field(ipa_text_widget({name:'description', undo: false}));
that.add_field(ipa_text_widget({name:'cn', label:'Name', undo: false})); that.add_dialog_init();
that.add_field(ipa_text_widget({name:'description', label:'Description', undo: false}));
}; };
return that; return that;
@@ -128,10 +126,6 @@ function ipa_hbacsvc_details_facet(spec) {
var that = ipa_details_facet(spec); var that = ipa_details_facet(spec);
that.superior_init = that.superior('init');
that.superior_create = that.superior('create');
that.superior_setup = that.superior('setup');
that.init = function() { that.init = function() {
var section = ipa_details_list_section({ var section = ipa_details_list_section({
@@ -143,7 +137,7 @@ function ipa_hbacsvc_details_facet(spec) {
section.create_field({'name': 'cn'}); section.create_field({'name': 'cn'});
section.create_field({'name': 'description'}); section.create_field({'name': 'description'});
that.superior_init(); that.details_facet_init();
}; };
return that; return that;

View File

@@ -67,14 +67,12 @@ function ipa_hbacsvcgroup_add_dialog(spec) {
var that = ipa_add_dialog(spec); var that = ipa_add_dialog(spec);
that.superior_init = that.superior('init');
that.init = function() { that.init = function() {
that.superior_init(); that.add_field(ipa_text_widget({name:'cn', undo: false}));
that.add_field(ipa_text_widget({name:'description', undo: false}));
that.add_field(ipa_text_widget({name:'cn', label:'Name', undo: false})); that.add_dialog_init();
that.add_field(ipa_text_widget({name:'description', label:'Description', undo: false}));
}; };
return that; return that;

View File

@@ -83,14 +83,13 @@ function ipa_host_add_dialog(spec) {
that.init = function() { that.init = function() {
that.add_dialog_init();
that.add_field(ipa_text_widget({ that.add_field(ipa_text_widget({
'name': 'fqdn', 'name': 'fqdn',
entity_name:'host',
'size': 40, 'size': 40,
'undo': false 'undo': false
})); }));
that.add_dialog_init();
}; };
return that; return that;

View File

@@ -47,19 +47,17 @@ IPA.add_entity( function() {
var dialog = ipa_add_dialog({ var dialog = ipa_add_dialog({
name: 'add', name: 'add',
title: 'Add Hostgroup', title: 'Add Hostgroup'
entity_name:'hostgroup'
}); });
that.add_dialog(dialog); that.add_dialog(dialog);
dialog.add_field(ipa_text_widget({name: 'cn', undo: false}));
dialog.add_field(ipa_text_widget({name: 'description', undo: false}));
dialog.init(); dialog.init();
dialog.add_field(ipa_text_widget({ name: 'cn',
entity_name:'hostgroup'}));
dialog.add_field(ipa_text_widget({ name: 'description',
entity_name:'hostgroup' }));
that.create_association_facets(); that.create_association_facets();
that.entity_init(); that.entity_init();
} };
return that; return that;
}()); }());

View File

@@ -47,19 +47,17 @@ IPA.add_entity( function() {
var dialog = ipa_add_dialog({ var dialog = ipa_add_dialog({
name: 'add', name: 'add',
title: 'Add Netgroup', title: 'Add Netgroup'
entity_name:'netgroup'
}); });
that.add_dialog(dialog); that.add_dialog(dialog);
dialog.add_field(ipa_text_widget({ name: 'cn', undo: false}));
dialog.add_field(ipa_text_widget({ name: 'description', undo: false}));
dialog.init(); dialog.init();
dialog.add_field(ipa_text_widget({ name: 'cn',
entity_name:'netgroup'}));
dialog.add_field(ipa_text_widget({ name: 'description',
entity_name:'netgroup' }));
that.create_association_facets(); that.create_association_facets();
that.entity_init(); that.entity_init();
} };
return that; return that;
}()); }());

View File

@@ -64,23 +64,18 @@ IPA.add_entity(function (){
var dialog = ipa_add_dialog({ var dialog = ipa_add_dialog({
name: 'add', name: 'add',
title: 'Add DNS Zone', title: 'Add DNS Zone'
entity_name:'dnszone'
}); });
that.add_dialog(dialog); that.add_dialog(dialog);
dialog.init();
dialog.add_field(ipa_text_widget({ name: 'idnsname', dialog.add_field(ipa_text_widget({ name: 'idnsname', undo: false}));
entity_name:'dnszone'})); dialog.add_field(ipa_text_widget({ name: 'idnssoamname', undo: false}));
dialog.add_field(ipa_text_widget({ name: 'idnssoamname', dialog.add_field(ipa_text_widget({ name: 'idnssoarname', undo: false}));
entity_name:'dnszone'})); dialog.init();
dialog.add_field(ipa_text_widget({ name: 'idnssoarname',
entity_name:'dnszone'}));
that.create_association_facets(); that.create_association_facets();
that.entity_init(); that.entity_init();
} };
return that; return that;
@@ -521,14 +516,13 @@ IPA.add_entity(function (){
var dialog = ipa_add_dialog({ var dialog = ipa_add_dialog({
name: 'add', name: 'add',
title: 'Add Automount Location', title: 'Add Automount Location'
entity_name:'automountlocation'
}); });
that.add_dialog(dialog); that.add_dialog(dialog);
dialog.add_field(ipa_text_widget({ name: 'cn', undo: false}));
dialog.init(); dialog.init();
dialog.add_field(ipa_text_widget({ name: 'cn',
entity_name:'automountlocation'}));
that.create_association_facets(); that.create_association_facets();
that.entity_init(); that.entity_init();
@@ -574,15 +568,15 @@ IPA.add_entity(function (){
title: 'Add Password Policy', title: 'Add Password Policy',
entity_name:'pwpolicy' entity_name:'pwpolicy'
}); });
that.add_dialog(dialog); that.add_dialog(dialog);
dialog.add_field(ipa_text_widget({ name: 'cn', undo: false}));
dialog.init(); dialog.init();
dialog.add_field(ipa_text_widget({ name: 'cn',
entity_name:'pwpolicy'}));
that.create_association_facets(); that.create_association_facets();
that.entity_init(); that.entity_init();
} };
return that; return that;
}()); }());

View File

@@ -76,24 +76,27 @@ function ipa_service_add_dialog(spec) {
that.init = function() { that.init = function() {
that.add_dialog_init();
that.add_field(ipa_widget({ that.add_field(ipa_widget({
name: 'krbprincipalname' name: 'krbprincipalname'
})); }));
// TODO: Replace with i18n label
that.add_field(ipa_text_widget({ that.add_field(ipa_text_widget({
'name': 'service', 'label': 'Service', 'name': 'service',
'label': 'Service',
'size': 20, 'size': 20,
'undo': false 'undo': false
})); }));
// TODO: Replace with i18n label
that.add_field(ipa_text_widget({ that.add_field(ipa_text_widget({
'name': 'host', 'name': 'host',
'label': 'Host Name', 'label': 'Host Name',
'size': 40, 'size': 40,
'undo': false 'undo': false
})); }));
that.add_dialog_init();
}; };
that.create = function() { that.create = function() {

View File

@@ -61,14 +61,12 @@ function ipa_sudocmd_add_dialog(spec) {
var that = ipa_add_dialog(spec); var that = ipa_add_dialog(spec);
that.superior_init = that.superior('init');
that.init = function() { that.init = function() {
that.superior_init(); that.add_field(ipa_text_widget({name:'sudocmd', undo: false}));
that.add_field(ipa_text_widget({name:'description', undo: false}));
that.add_field(ipa_text_widget({name:'sudocmd', label:'Command', undo: false})); that.add_dialog_init();
that.add_field(ipa_text_widget({name:'description', label:'Description', undo: false}));
}; };
return that; return that;
@@ -130,10 +128,6 @@ function ipa_sudocmd_details_facet(spec) {
var that = ipa_details_facet(spec); var that = ipa_details_facet(spec);
that.superior_init = that.superior('init');
that.superior_create = that.superior('create');
that.superior_setup = that.superior('setup');
that.init = function() { that.init = function() {
var section = ipa_details_list_section({ var section = ipa_details_list_section({
@@ -145,7 +139,7 @@ function ipa_sudocmd_details_facet(spec) {
section.create_field({'name': 'sudocmd'}); section.create_field({'name': 'sudocmd'});
section.create_field({'name': 'description'}); section.create_field({'name': 'description'});
that.superior_init(); that.details_facet_init();
}; };
return that; return that;

View File

@@ -67,14 +67,12 @@ function ipa_sudocmdgroup_add_dialog(spec) {
var that = ipa_add_dialog(spec); var that = ipa_add_dialog(spec);
that.superior_init = that.superior('init');
that.init = function() { that.init = function() {
that.superior_init(); that.add_field(ipa_text_widget({name:'cn', undo: false}));
that.add_field(ipa_text_widget({name:'description', undo: false}));
that.add_field(ipa_text_widget({name:'cn', label:'Name', undo: false})); that.add_dialog_init();
that.add_field(ipa_text_widget({name:'description', label:'Description', undo: false}));
}; };
return that; return that;

View File

@@ -63,13 +63,9 @@ function ipa_sudorule_add_dialog(spec) {
that.init = function() { that.init = function() {
that.add_dialog_init(); that.add_field(ipa_text_widget({name: 'cn', undo: false}));
that.add_field(ipa_text_widget({ that.add_dialog_init();
'name': 'cn',
'label': 'Rule Name',
'undo': false
}));
}; };
return that; return that;

View File

@@ -45,14 +45,13 @@ function ipa_user(){
'name': 'add', 'name': 'add',
'title': 'Add User' 'title': 'Add User'
}); });
that.add_dialog(dialog); 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.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 /*eventually, we need to call
entity.create_association_facets(); entity.create_association_facets();
but we are currently defining the associator using the global but we are currently defining the associator using the global
@@ -60,7 +59,7 @@ function ipa_user(){
that.entity_init(); that.entity_init();
} };
function details_facet(spec) { function details_facet(spec) {
spec = spec || {}; spec = spec || {};
@@ -110,7 +109,7 @@ IPA.add_entity(ipa_user());
ipa_entity_set_association_definition('user', { ipa_entity_set_association_definition('user', {
'group': { associator: 'serial' }, 'group': { associator: 'serial' },
'netgroup': { associator: 'serial' }, 'netgroup': { associator: 'serial' }
}); });
/* ATTRIBUTE CALLBACKS */ /* ATTRIBUTE CALLBACKS */

View File

@@ -44,13 +44,6 @@ function ipa_widget(spec) {
that.save = spec.save || save; that.save = spec.save || save;
that.clear = spec.clear || clear; that.clear = spec.clear || clear;
that.superior = function(name) {
var method = that[name];
return function () {
return method.apply(that, arguments);
};
};
that.__defineGetter__("entity_name", function(){ that.__defineGetter__("entity_name", function(){
return that._entity_name; return that._entity_name;
}); });
@@ -793,13 +786,6 @@ function ipa_dialog(spec) {
that.fields = []; that.fields = [];
that.fields_by_name = {}; that.fields_by_name = {};
that.superior = function(name) {
var method = that[name];
return function () {
return method.apply(that, arguments);
};
};
that.__defineGetter__("entity_name", function(){ that.__defineGetter__("entity_name", function(){
return that._entity_name; return that._entity_name;
}); });
@@ -821,12 +807,16 @@ function ipa_dialog(spec) {
}; };
that.add_field = function(field) { that.add_field = function(field) {
field.entity_name = that.entity_name;
that.fields.push(field); that.fields.push(field);
that.fields_by_name[field.name] = field; that.fields_by_name[field.name] = field;
}; };
that.init = function() { that.init = function() {
for (var i=0; i<that.fields.length; i++) {
var field = that.fields[i];
field.entity_name = that.entity_name;
field.init();
}
}; };
/** /**