Author: jreidinger Date: Tue May 31 17:41:22 2011 New Revision: 64179
URL: http://svn.opensuse.org/viewcvs/yast?rev=64179&view=rev Log: create country selection combobox editable to allow choose of countries not specifically listed (FATE#310179)
Modified: branches/SuSE-Code-11-SP2-Branch/ca-management/src/ca_mgm_auto.ycp branches/SuSE-Code-11-SP2-Branch/ca-management/src/ca_select_proposal.ycp branches/SuSE-Code-11-SP2-Branch/ca-management/src/new_cert.ycp
Modified: branches/SuSE-Code-11-SP2-Branch/ca-management/src/ca_mgm_auto.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/ca-man... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/ca-management/src/ca_mgm_auto.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/ca-management/src/ca_mgm_auto.ycp Tue May 31 17:41:22 2011 @@ -116,7 +116,7 @@ `HBox(`HWeight (1,`TextEntry(`id(`email), _("E-Mail"), CaMgm::autoYaSTSettings["server_email"]:"")), `HSpacing(2), - `HWeight (1,`ComboBox( `id (`id_country), _("C&ountry:"), + `HWeight (1,`ComboBox( `id (`id_country), `opt(`editable), _("C&ountry:"), getAutoCountryList())) ), `HBox(`HWeight (1,`TextEntry( `id (`id_organisation), _("O&rganization:"),
Modified: branches/SuSE-Code-11-SP2-Branch/ca-management/src/ca_select_proposal.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/ca-man... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/ca-management/src/ca_select_proposal.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/ca-management/src/ca_select_proposal.ycp Tue May 31 17:41:22 2011 @@ -77,7 +77,7 @@ `HBox(`HWeight (1,`TextEntry( `id (`id_serverName), _("&Server Name:"), CaMgm::prop_server_commonName )), `HSpacing(2), - `HWeight (1,`ComboBox( `id (`id_country), _("C&ountry:"), + `HWeight (1,`ComboBox( `id (`id_country), `opt(`editable), _("C&ountry:"), getPropCountryList())) ), `HBox(`HWeight (1,`TextEntry( `id (`id_organisation), _("O&rganization:"),
Modified: branches/SuSE-Code-11-SP2-Branch/ca-management/src/new_cert.ycp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP2-Branch/ca-man... ============================================================================== --- branches/SuSE-Code-11-SP2-Branch/ca-management/src/new_cert.ycp (original) +++ branches/SuSE-Code-11-SP2-Branch/ca-management/src/new_cert.ycp Tue May 31 17:41:22 2011 @@ -149,7 +149,7 @@ `HSpacing(2), `HWeight (1,`TextEntry(`id (`id_state), _("&State:"), CaMgm::state ))));
- contents = add (contents, `HBox (`HWeight(1,`ComboBox( `id (`id_country), _("C&ountry:"), getCountryList())))); + contents = add (contents, `HBox (`HWeight(1,`ComboBox( `id (`id_country), `opt(`editable), _("C&ountry:"), getCountryList()))));
// To translators: dialog label
yast-commit@lists.opensuse.org