Mailinglist Archive: opensuse-commit (2092 mails)

< Previous Next >
commit yast2-ldap-client
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Thu, 02 Aug 2007 22:12:53 +0200
  • Message-id: <20070802201253.EB6EC678182@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package yast2-ldap-client
checked in at Thu Aug 2 22:12:53 CEST 2007.

--------
--- yast2-ldap-client/yast2-ldap-client.changes 2007-07-27 12:22:19.000000000 +0200
+++ /mounts/work_src_done/NOARCH/yast2-ldap-client/yast2-ldap-client.changes    2007-08-02 17:33:51.609229000 +0200
@@ -1,0 +2,6 @@
+Thu Aug  2 17:24:53 CEST 2007 - jsuchome@xxxxxxx
+
+- do not reinitialize LDAP connection when not needed (#296284)
+- 2.15.12 
+
+-------------------------------------------------------------------

Old:
----
  yast2-ldap-client-2.15.11.tar.bz2

New:
----
  yast2-ldap-client-2.15.12.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-ldap-client.spec ++++++
--- /var/tmp/diff_new_pack.k20888/_old  2007-08-02 22:11:27.000000000 +0200
+++ /var/tmp/diff_new_pack.k20888/_new  2007-08-02 22:11:27.000000000 +0200
@@ -1,5 +1,5 @@
 #
-# spec file for package yast2-ldap-client (Version 2.15.11)
+# spec file for package yast2-ldap-client (Version 2.15.12)
 #
 # Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
 # norootforbuild
 
 Name:           yast2-ldap-client
-Version:        2.15.11
+Version:        2.15.12
 Release:        1
 License:        GPL v2 or later
 Group:          System/YaST
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-Source0:        yast2-ldap-client-2.15.11.tar.bz2
+Source0:        yast2-ldap-client-2.15.12.tar.bz2
 prefix:                /usr
 BuildRequires:  doxygen perl-XML-Writer update-desktop-files yast2 yast2-devtools yast2-network yast2-pam yast2-testsuite
 PreReq:         %fillup_prereq
@@ -46,7 +46,7 @@
     Jiri Suchomel <jsuchome@xxxxxxx>
 
 %prep
-%setup -n yast2-ldap-client-2.15.11
+%setup -n yast2-ldap-client-2.15.12
 
 %build
 %{prefix}/bin/y2tool y2autoconf
@@ -87,6 +87,9 @@
 /var/adm/fillup-templates/sysconfig.ldap
 
 %changelog
+* Thu Aug 02 2007 - jsuchome@xxxxxxx
+- do not reinitialize LDAP connection when not needed (#296284)
+- 2.15.12
 * Fri Jul 27 2007 - jsuchome@xxxxxxx
 - use "files ldap" instead of "compat" for group entry in
   /etc/nsswitch.conf (F302064)

++++++ yast2-ldap-client-2.15.11.tar.bz2 -> yast2-ldap-client-2.15.12.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ldap-client-2.15.11/src/Ldap.ycp new/yast2-ldap-client-2.15.12/src/Ldap.ycp
--- old/yast2-ldap-client-2.15.11/src/Ldap.ycp  2007-07-27 11:57:33.000000000 +0200
+++ new/yast2-ldap-client-2.15.12/src/Ldap.ycp  2007-07-27 12:24:15.000000000 +0200
@@ -5,7 +5,7 @@
  * Authors:    Thorsten Kukuk <kukuk@xxxxxxx>
  *             Anas Nashif <nashif@xxxxxxx>
  *
- * $Id: Ldap.ycp 38093 2007-05-23 08:06:23Z jsuchome $
+ * $Id: Ldap.ycp 39741 2007-07-27 10:24:15Z jsuchome $
  */
 
 {
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ldap-client-2.15.11/src/ui.ycp new/yast2-ldap-client-2.15.12/src/ui.ycp
--- old/yast2-ldap-client-2.15.11/src/ui.ycp    2007-06-07 16:28:16.000000000 +0200
+++ new/yast2-ldap-client-2.15.12/src/ui.ycp    2007-08-02 17:23:36.000000000 +0200
@@ -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(
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-ldap-client-2.15.11/VERSION new/yast2-ldap-client-2.15.12/VERSION
--- old/yast2-ldap-client-2.15.11/VERSION       2007-07-27 12:02:19.000000000 +0200
+++ new/yast2-ldap-client-2.15.12/VERSION       2007-08-02 17:26:13.000000000 +0200
@@ -1 +1 @@
-2.15.11
+2.15.12


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages