[yast-commit] r64179 - in /branches/SuSE-Code-11-SP2-Branch/ca-management/src: ca_mgm_auto.ycp ca_select_proposal.ycp new_cert.ycp
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-management/src/ca_mgm_auto.ycp?rev=64179&r1=64178&r2=64179&view=diff ============================================================================== --- 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-management/src/ca_select_proposal.ycp?rev=64179&r1=64178&r2=64179&view=diff ============================================================================== --- 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-management/src/new_cert.ycp?rev=64179&r1=64178&r2=64179&view=diff ============================================================================== --- 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 -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jreidinger@svn2.opensuse.org