[yast-commit] r39910 - in /trunk/ldap-client: VERSION package/yast2-ldap-client.changes src/ui.ycp
Author: jsuchome Date: Thu Aug 2 17:33:45 2007 New Revision: 39910 URL: http://svn.opensuse.org/viewcvs/yast?rev=39910&view=rev Log: - do not reinitialize LDAP connection when not needed (#296284) - 2.15.12 Modified: trunk/ldap-client/VERSION trunk/ldap-client/package/yast2-ldap-client.changes trunk/ldap-client/src/ui.ycp Modified: trunk/ldap-client/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap-client/VERSION?rev=39910&r1=39909&r2=39910&view=diff ============================================================================== --- trunk/ldap-client/VERSION (original) +++ trunk/ldap-client/VERSION Thu Aug 2 17:33:45 2007 @@ -1 +1 @@ -2.15.11 +2.15.12 Modified: trunk/ldap-client/package/yast2-ldap-client.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap-client/package/yast2-ldap-client.changes?rev=39910&r1=39909&r2=39910&view=diff ============================================================================== --- trunk/ldap-client/package/yast2-ldap-client.changes (original) +++ trunk/ldap-client/package/yast2-ldap-client.changes Thu Aug 2 17:33:45 2007 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Thu Aug 2 17:24:53 CEST 2007 - jsuchome@suse.cz + +- do not reinitialize LDAP connection when not needed (#296284) +- 2.15.12 + +------------------------------------------------------------------- Fri Jul 27 12:01:03 CEST 2007 - jsuchome@suse.cz - use "files ldap" instead of "compat" for group entry in Modified: trunk/ldap-client/src/ui.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap-client/src/ui.ycp?rev=39910&r1=39909&r2=39910&view=diff ============================================================================== --- trunk/ldap-client/src/ui.ycp (original) +++ trunk/ldap-client/src/ui.ycp Thu Aug 2 17:33:45 2007 @@ -635,7 +635,7 @@ if (base_dn == "") return; - if ((boolean)SCR::Execute (.ldap, $[ + if (Ldap::ldap_initialized || (boolean)SCR::Execute (.ldap, $[ "hostname" : Ldap::GetFirstServer (Ldap::server), "port" : Ldap::GetFirstPort (Ldap::server), "version" : Ldap::ldap_v2 ? 2 : 3, @@ -1493,9 +1493,13 @@ `HBox ( `ReplacePoint (`id(`rp_modnames), `Empty()), `VBox ( - `Label (""), `PushButton (`id (`new), Label::NewButton())), + `Label (""), + `PushButton (`id (`new), `opt(`key_F3), Label::NewButton()) + ), `VBox ( - `Label (""), `PushButton (`id (`delete), Label::DeleteButton())) + `Label (""), + `PushButton (`id (`delete), `opt(`key_F5),Label::DeleteButton()) + ) ), `VSpacing(0.5), `Table(`id(`table), `opt(`notify), `header( -- 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