[commits] Horde branch master updated. c7fb7090bc7924b65d1e21be3d95e721d62a1a70

Gunnar Wrobel p at rdus.de
Fri Feb 12 21:03:58 UTC 2010


The branch "master" has been updated.
The following is a summary of the commits.

from: 98041a4b4a18c5aefcad07bfd746cfca0d0c1c30

65aa752 Deprecate former Horde_LDAP library
a10e9f6 Fork Net_LDAP2 to Horde_Ldap Reasons: 1) Net_LDAP2 does not conform to E_STRICT on PHP5 2) Net_LDAP2 does not use exceptions, but instead checks for and returns PEAR_Error objects.
5e013b2 Horde-ify Horde_Ldap library.  Switch to real exception handling.
ba939ab Fix directory nesting, comment whitespace
f8547b6 Fix comment whitespace
9a4cb18 Convert to proper exceptions
5d22a71 Whitespace fixes
24f785a Add static methods from old Horde_LDAP library
a1afa6f Add missing Exception class.
c2cf80d The class does not extend the PEAR class any longer so avoid calling the PEAR method.
dcda04c Basic conversion from Net_LDAP2 to Horde_Ldap to make the Search class accessible. The class does not extend the PEAR class any longer and the call to the PEAR() method has been removed.
c7fb709 Basic conversion from Net_LDAP2 to Horde_Ldap to make the Util class accessible.

-----------------------------------------------------------------------

commit 65aa7520e2605784c0d300368ae0ecdd26ec2f3d
Author: Ben Klang <ben at alkaloid.net>
Date:   Wed Dec 30 18:48:06 2009 -0500

    Deprecate former Horde_LDAP library

 framework/Ldap/lib/Horde/Ldap.php           |   96 ---------------------------
 framework/Ldap/package.xml                  |   92 -------------------------
 framework/Ldap/test/Horde/Ldap/quoteDN.phpt |   44 ------------
 3 files changed, 0 insertions(+), 232 deletions(-)
 delete mode 100644 framework/Ldap/lib/Horde/Ldap.php
 delete mode 100644 framework/Ldap/package.xml
 delete mode 100644 framework/Ldap/test/Horde/Ldap/quoteDN.phpt

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap.php?rt=horde-git&r1=8eaef864016080cc32cdfaff0f56e9a9a779a2cd&r2=65aa7520e2605784c0d300368ae0ecdd26ec2f3d
http://git.horde.org/diff.php/framework/Ldap/package.xml?rt=horde-git&r1=8eaef864016080cc32cdfaff0f56e9a9a779a2cd&r2=65aa7520e2605784c0d300368ae0ecdd26ec2f3d
http://git.horde.org/diff.php/framework/Ldap/test/Horde/Ldap/quoteDN.phpt?rt=horde-git&r1=8eaef864016080cc32cdfaff0f56e9a9a779a2cd&r2=65aa7520e2605784c0d300368ae0ecdd26ec2f3d

-----------------------------------------------------------------------

commit a10e9f6accb613f5fcf3a0efd08b02588bfd5605
Author: Ben Klang <ben at alkaloid.net>
Date:   Thu Dec 17 19:40:07 2009 -0500

    Fork Net_LDAP2 to Horde_Ldap
    Reasons:
    1) Net_LDAP2 does not conform to E_STRICT on PHP5
    2) Net_LDAP2 does not use exceptions, but instead checks for and returns PEAR_Error objects.

 framework/Ldap/lib/Horde/Ldap/Ldap.php                       | 1791 ++++++++++
 framework/Ldap/lib/Horde/Ldap/Ldap/Entry.php                 | 1055 ++++++
 framework/Ldap/lib/Horde/Ldap/Ldap/Filter.php                |  514 +++
 framework/Ldap/lib/Horde/Ldap/Ldap/LDIF.php                  |  922 +++++
 framework/Ldap/lib/Horde/Ldap/Ldap/RootDSE.php               |  240 ++
 framework/Ldap/lib/Horde/Ldap/Ldap/Schema.php                |  516 +++
 framework/Ldap/lib/Horde/Ldap/Ldap/SchemaCache.interface.php |   59 +
 framework/Ldap/lib/Horde/Ldap/Ldap/Search.php                |  614 ++++
 framework/Ldap/lib/Horde/Ldap/Ldap/SimpleFileSchemaCache.php |   97 +
 framework/Ldap/lib/Horde/Ldap/Ldap/Util.php                  |  572 +++
 framework/Ldap/package.xml                                   |   71 +
 11 files changed, 6451 insertions(+), 0 deletions(-)
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Entry.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Filter.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/LDIF.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/RootDSE.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Schema.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/SchemaCache.interface.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Search.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/SimpleFileSchemaCache.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Util.php
 create mode 100644 framework/Ldap/package.xml

http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/Entry.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/Filter.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/LDIF.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/RootDSE.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/Schema.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/SchemaCache.interface.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/Search.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/SimpleFileSchemaCache.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Ldap/Util.php?rt=horde-git&r=a10e9f6accb613f5fcf3a0efd08b02588bfd5605
http://git.horde.org/diff.php/framework/Ldap/package.xml?rt=horde-git&r1=65aa7520e2605784c0d300368ae0ecdd26ec2f3d&r2=a10e9f6accb613f5fcf3a0efd08b02588bfd5605

-----------------------------------------------------------------------

commit 5e013b2ba7194ffb140123cf354e54721b69e50b
Author: Ben Klang <ben at alkaloid.net>
Date:   Thu Dec 17 21:58:37 2009 -0500

    Horde-ify Horde_Ldap library.  Switch to real exception handling.

 framework/Ldap/lib/Horde/Ldap/Ldap.php | 1438 +++++++++++++++-----------------
 1 files changed, 668 insertions(+), 770 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=5e013b2ba7194ffb140123cf354e54721b69e50b

-----------------------------------------------------------------------

commit ba939ab2ad8b08b987f99f24dc9adb1cb45535de
Author: Ben Klang <ben at alkaloid.net>
Date:   Thu Dec 17 22:08:38 2009 -0500

    Fix directory nesting, comment whitespace

 framework/Ldap/lib/Horde/Ldap.php                            | 1689 ++++++++++
 framework/Ldap/lib/Horde/Ldap/Entry.php                      | 1040 ++++++
 framework/Ldap/lib/Horde/Ldap/Exception.php                  |    4 +
 framework/Ldap/lib/Horde/Ldap/Filter.php                     |  514 +++
 framework/Ldap/lib/Horde/Ldap/LDIF.php                       |  922 +++++
 framework/Ldap/lib/Horde/Ldap/Ldap.php                       | 1689 ----------
 framework/Ldap/lib/Horde/Ldap/Ldap/Entry.php                 | 1055 ------
 framework/Ldap/lib/Horde/Ldap/Ldap/Filter.php                |  514 ---
 framework/Ldap/lib/Horde/Ldap/Ldap/LDIF.php                  |  922 -----
 framework/Ldap/lib/Horde/Ldap/Ldap/RootDSE.php               |  240 --
 framework/Ldap/lib/Horde/Ldap/Ldap/Schema.php                |  516 ---
 framework/Ldap/lib/Horde/Ldap/Ldap/SchemaCache.interface.php |   59 -
 framework/Ldap/lib/Horde/Ldap/Ldap/Search.php                |  614 ----
 framework/Ldap/lib/Horde/Ldap/Ldap/SimpleFileSchemaCache.php |   97 -
 framework/Ldap/lib/Horde/Ldap/Ldap/Util.php                  |  572 ----
 framework/Ldap/lib/Horde/Ldap/RootDSE.php                    |  240 ++
 framework/Ldap/lib/Horde/Ldap/Schema.php                     |  516 +++
 framework/Ldap/lib/Horde/Ldap/SchemaCache.interface.php      |   59 +
 framework/Ldap/lib/Horde/Ldap/Search.php                     |  614 ++++
 framework/Ldap/lib/Horde/Ldap/SimpleFileSchemaCache.php      |   97 +
 framework/Ldap/lib/Horde/Ldap/Util.php                       |  572 ++++
 21 files changed, 6267 insertions(+), 6278 deletions(-)
 create mode 100644 framework/Ldap/lib/Horde/Ldap.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Entry.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Exception.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Filter.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/LDIF.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Entry.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Filter.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/LDIF.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/RootDSE.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Schema.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/SchemaCache.interface.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Search.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/SimpleFileSchemaCache.php
 delete mode 100644 framework/Ldap/lib/Horde/Ldap/Ldap/Util.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/RootDSE.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Schema.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/SchemaCache.interface.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Search.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/SimpleFileSchemaCache.php
 create mode 100644 framework/Ldap/lib/Horde/Ldap/Util.php

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap.php?rt=horde-git&r1=65aa7520e2605784c0d300368ae0ecdd26ec2f3d&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Entry.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Exception.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Filter.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/LDIF.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap.php?rt=horde-git&r1=5e013b2ba7194ffb140123cf354e54721b69e50b&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/Entry.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/Filter.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/LDIF.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/RootDSE.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/Schema.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/SchemaCache.interface.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/Search.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/SimpleFileSchemaCache.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Ldap/Util.php?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/RootDSE.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Schema.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/SchemaCache.interface.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Search.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/SimpleFileSchemaCache.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de
http://git.horde.org/co.php/framework/Ldap/lib/Horde/Ldap/Util.php?rt=horde-git&r=ba939ab2ad8b08b987f99f24dc9adb1cb45535de

-----------------------------------------------------------------------

commit f8547b6f9c244817a97f2bd90328062749d64011
Author: Ben Klang <ben at alkaloid.net>
Date:   Thu Dec 17 22:15:14 2009 -0500

    Fix comment whitespace

 framework/Ldap/lib/Horde/Ldap/Filter.php  |  387 +++++++++---------
 framework/Ldap/lib/Horde/Ldap/LDIF.php    |  653 ++++++++++++++---------------
 framework/Ldap/lib/Horde/Ldap/RootDSE.php |  221 +++++-----
 framework/Ldap/lib/Horde/Ldap/Schema.php  |  309 +++++++-------
 framework/Ldap/lib/Horde/Ldap/Search.php  |  559 ++++++++++++------------
 framework/Ldap/lib/Horde/Ldap/Util.php    |  417 +++++++++---------
 6 files changed, 1269 insertions(+), 1277 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Filter.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=f8547b6f9c244817a97f2bd90328062749d64011
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/LDIF.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=f8547b6f9c244817a97f2bd90328062749d64011
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/RootDSE.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=f8547b6f9c244817a97f2bd90328062749d64011
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Schema.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=f8547b6f9c244817a97f2bd90328062749d64011
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Search.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=f8547b6f9c244817a97f2bd90328062749d64011
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Util.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=f8547b6f9c244817a97f2bd90328062749d64011

-----------------------------------------------------------------------

commit 9a4cb1846355828a959eac8b17b46e9451765eb5
Author: Ben Klang <ben at alkaloid.net>
Date:   Thu Dec 17 22:36:57 2009 -0500

    Convert to proper exceptions

 framework/Ldap/lib/Horde/Ldap/Entry.php  |   69 ++++++--------
 framework/Ldap/lib/Horde/Ldap/Filter.php |  156 ++++++++++++------------------
 2 files changed, 91 insertions(+), 134 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Entry.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=9a4cb1846355828a959eac8b17b46e9451765eb5
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Filter.php?rt=horde-git&r1=f8547b6f9c244817a97f2bd90328062749d64011&r2=9a4cb1846355828a959eac8b17b46e9451765eb5

-----------------------------------------------------------------------

commit 5d22a71a423ff0db42c68ecfb371ac60e01d79be
Author: Ben Klang <ben at alkaloid.net>
Date:   Wed Dec 30 11:06:13 2009 -0500

    Whitespace fixes

 framework/Ldap/lib/Horde/Ldap.php                       |    4 +-
 framework/Ldap/lib/Horde/Ldap/SimpleFileSchemaCache.php |   20 +++++++-------
 2 files changed, 12 insertions(+), 12 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=5d22a71a423ff0db42c68ecfb371ac60e01d79be
http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/SimpleFileSchemaCache.php?rt=horde-git&r1=ba939ab2ad8b08b987f99f24dc9adb1cb45535de&r2=5d22a71a423ff0db42c68ecfb371ac60e01d79be

-----------------------------------------------------------------------

commit 24f785ad75fc2aa515720a83765be77a74764ce6
Author: Ben Klang <ben at alkaloid.net>
Date:   Wed Dec 30 11:16:56 2009 -0500

    Add static methods from old Horde_LDAP library

 framework/Ldap/lib/Horde/Ldap.php |   80 +++++++++++++++++++++++++++++++++++++
 1 files changed, 80 insertions(+), 0 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap.php?rt=horde-git&r1=5d22a71a423ff0db42c68ecfb371ac60e01d79be&r2=24f785ad75fc2aa515720a83765be77a74764ce6

-----------------------------------------------------------------------

commit a1afa6fab21bddfbed926ca232d1364e3bfb7199
Author: Gunnar Wrobel <wrobel at temple.(none)>
Date:   Wed Feb 10 07:13:18 2010 +0100

    Add missing Exception class.

 framework/Ldap/package.xml |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/package.xml?rt=horde-git&r1=a10e9f6accb613f5fcf3a0efd08b02588bfd5605&r2=a1afa6fab21bddfbed926ca232d1364e3bfb7199

-----------------------------------------------------------------------

commit c2cf80d03e8a7dd278c03d994483e42934c34df7
Author: Gunnar Wrobel <wrobel at temple.(none)>
Date:   Wed Feb 10 07:14:13 2010 +0100

    The class does not extend the PEAR class any longer so avoid calling the PEAR method.

 framework/Ldap/lib/Horde/Ldap.php |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap.php?rt=horde-git&r1=24f785ad75fc2aa515720a83765be77a74764ce6&r2=c2cf80d03e8a7dd278c03d994483e42934c34df7

-----------------------------------------------------------------------

commit dcda04cc7ac7d5602e19d22b8700dddbc5e03cdf
Author: Gunnar Wrobel <wrobel at temple.(none)>
Date:   Wed Feb 10 07:15:25 2010 +0100

    Basic conversion from Net_LDAP2 to Horde_Ldap to make the Search class accessible. The class does not extend the PEAR class any longer and the call to the PEAR() method has been removed.

 framework/Ldap/lib/Horde/Ldap/Search.php |   64 ++++++++++++++---------------
 1 files changed, 31 insertions(+), 33 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Search.php?rt=horde-git&r1=f8547b6f9c244817a97f2bd90328062749d64011&r2=dcda04cc7ac7d5602e19d22b8700dddbc5e03cdf

-----------------------------------------------------------------------

commit c7fb7090bc7924b65d1e21be3d95e721d62a1a70
Author: Gunnar Wrobel <wrobel at temple.(none)>
Date:   Wed Feb 10 08:42:55 2010 +0100

    Basic conversion from Net_LDAP2 to Horde_Ldap to make the Util class accessible.

 framework/Ldap/lib/Horde/Ldap/Util.php |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

http://git.horde.org/diff.php/framework/Ldap/lib/Horde/Ldap/Util.php?rt=horde-git&r1=f8547b6f9c244817a97f2bd90328062749d64011&r2=c7fb7090bc7924b65d1e21be3d95e721d62a1a70




More information about the commits mailing list