[yast-commit] r60608 - in /trunk/kerberos-client: VERSION package/yast2-kerberos-client.changes src/dialogs.ycp src/kerberos.ycp
Author: jsuchome Date: Thu Jan 28 16:11:03 2010 New Revision: 60608 URL: http://svn.opensuse.org/viewcvs/yast?rev=60608&view=rev Log: - leave DNS checkbox disabled when DNS info is not available (bnc#574679) - 2.19.0 Modified: trunk/kerberos-client/VERSION trunk/kerberos-client/package/yast2-kerberos-client.changes trunk/kerberos-client/src/dialogs.ycp trunk/kerberos-client/src/kerberos.ycp Modified: trunk/kerberos-client/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/kerberos-client/VERSION?rev=60608&r1=60607&r2=60608&view=diff ============================================================================== --- trunk/kerberos-client/VERSION (original) +++ trunk/kerberos-client/VERSION Thu Jan 28 16:11:03 2010 @@ -1 +1 @@ -2.18.3 +2.19.0 Modified: trunk/kerberos-client/package/yast2-kerberos-client.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/kerberos-client/package/yast2-kerberos-client.changes?rev=60608&r1=60607&r2=60608&view=diff ============================================================================== --- trunk/kerberos-client/package/yast2-kerberos-client.changes (original) +++ trunk/kerberos-client/package/yast2-kerberos-client.changes Thu Jan 28 16:11:03 2010 @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Thu Jan 28 15:55:03 CET 2010 - jsuchome@suse.cz + +- leave DNS checkbox disabled when DNS info is not available + (bnc#574679) +- 2.19.0 + ------------------------------------------------------------------ Wed Jan 13 18:56:03 CET 2010 - kmachalkova@suse.cz Modified: trunk/kerberos-client/src/dialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/kerberos-client/src/dialogs.ycp?rev=60608&r1=60607&r2=60608&view=diff ============================================================================== --- trunk/kerberos-client/src/dialogs.ycp (original) +++ trunk/kerberos-client/src/dialogs.ycp Thu Jan 28 16:11:03 2010 @@ -238,7 +238,7 @@ It is common practice to use the domain name in uppercase as your default realm name, but you can select freely. If the realm is not available on the server, you cannot log in. Ask your server administrator if you need more information.</p> ") + - // help text for Use DNS to aquire the configuration data at runtime + // help text for Use DNS to acquire the configuration data at runtime _("Check <b>Use DNS to Aquire the Configuration Data at Runtime</b> to let your client use the Kerberos authentication data provided by DNS. This option cannot be selected if the DNS server does not provide such data.</p>") + // help text 5/5 @@ -268,7 +268,7 @@ `HSpacing (2), `CheckBox (`id (`dns), `opt (`notify), // checkbox label - _("Use DN&S to aquire the configuration data at runtime"), + _("Use DN&S to acquire the configuration data at runtime"), dns_used) )), `VSpacing (), @@ -318,9 +318,10 @@ if (result == `pamyes || result == `pamno) { use_pam_krb = (result == `pamyes); - foreach (symbol widget, [`realm, `domain, `kdc, `advanced, `dns],``{ + foreach (symbol widget, [`realm, `domain, `kdc, `advanced],``{ UI::ChangeWidget (`id (widget), `Enabled, use_pam_krb); }); + UI::ChangeWidget (`id (`dns), `Enabled, dns_available && use_pam_krb); } if (result == `dns) { Modified: trunk/kerberos-client/src/kerberos.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/kerberos-client/src/kerberos.ycp?rev=60608&r1=60607&r2=60608&view=diff ============================================================================== --- trunk/kerberos-client/src/kerberos.ycp (original) +++ trunk/kerberos-client/src/kerberos.ycp Thu Jan 28 16:11:03 2010 @@ -253,7 +253,7 @@ "help" : _("Disable the service") ], "dns" : $[ - "help" : _("Use DNS to aquire the configuration at runtime"), + "help" : _("Use DNS to acquire the configuration at runtime"), "type" : "enum", "typespec" : [ "yes", "no" ], ], -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsuchome@svn.opensuse.org