[commits] Horde branch master updated. 6d372c0df1ab7a7b1974f0a0990f5f482654ca92

Michael M Slusarz slusarz at horde.org
Sat Nov 10 19:26:03 UTC 2012


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

from: 197a050e31307eed5e2ae0a025a121b1786acaa4

a7c5ccc Moving to 2.2.0 release
6f43f5d Use vanished() to grab the list of deleted messages
303efdc [mms] Add abstracted syncing methods to Horde_Imap_Client_Base.
1e34c7c Fix copy/paste error
02c8ad3 [mms] Significant optimization to append() command.
6d372c0 Merge branch 'imap-client_2_2'

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

commit a7c5ccc60636433991631f8f65816a4a2be08224
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Nov 5 13:39:14 2012 -0700

    Moving to 2.2.0 release
    
    Deprecate old cache ID commands.

 framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING           |   12 +
 framework/Imap_Client/lib/Horde/Imap/Client/Base.php            |   46 +---
 framework/Imap_Client/lib/Horde/Imap/Client/Base/Deprecated.php |  100 +++++++
 framework/Imap_Client/package.xml                               |   12 +-
 4 files changed, 125 insertions(+), 45 deletions(-)
 create mode 100644 framework/Imap_Client/lib/Horde/Imap/Client/Base/Deprecated.php

http://git.horde.org/horde-git/-/commit/a7c5ccc60636433991631f8f65816a4a2be08224

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

commit 6f43f5d8cf4d224eebdced167efefeaf5569b8f1
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Nov 5 21:58:36 2012 -0700

    Use vanished() to grab the list of deleted messages

 framework/Imap_Client/lib/Horde/Imap/Client/Base.php |   19 ++++-------------
 1 files changed, 5 insertions(+), 14 deletions(-)

http://git.horde.org/horde-git/-/commit/6f43f5d8cf4d224eebdced167efefeaf5569b8f1

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

commit 303efdcb9b58a4c65520ce8939e5c8f3772c75fc
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Nov 5 21:59:21 2012 -0700

    [mms] Add abstracted syncing methods to Horde_Imap_Client_Base.

 framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING          |    5 +
 framework/Imap_Client/lib/Horde/Imap/Client.php                |   10 +
 framework/Imap_Client/lib/Horde/Imap/Client/Base.php           |  110 ++++-
 framework/Imap_Client/lib/Horde/Imap/Client/Data/Sync.php      |  203 ++++++++
 framework/Imap_Client/lib/Horde/Imap/Client/Exception/Sync.php |   25 +
 framework/Imap_Client/package.xml                              |   10 +-
 6 files changed, 356 insertions(+), 7 deletions(-)
 create mode 100644 framework/Imap_Client/lib/Horde/Imap/Client/Data/Sync.php
 create mode 100644 framework/Imap_Client/lib/Horde/Imap/Client/Exception/Sync.php

http://git.horde.org/horde-git/-/commit/303efdcb9b58a4c65520ce8939e5c8f3772c75fc

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

commit 1e34c7cb5b286cde6c462d56f1db90dc374ca8e6
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Nov 8 14:34:54 2012 -0700

    Fix copy/paste error

 framework/Imap_Client/lib/Horde/Imap/Client/Data/Sync.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/1e34c7cb5b286cde6c462d56f1db90dc374ca8e6

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

commit 02c8ad3a2e6081eded059938ab8dc587caa5d1b4
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Nov 10 01:03:50 2012 -0700

    [mms] Significant optimization to append() command.
    
    Don't do two separate string copies - add the EOL normalization to the
    String data object.
    Don't bother to scan data input - we already know it must be output as
    literal.  So just send as binary string if the server supports BINARY.

 .../Imap_Client/lib/Horde/Imap/Client/Data/Format/String.php      |   42 ++++-
 framework/Imap_Client/lib/Horde/Imap/Client/Socket.php            |   40 ++---
 framework/Imap_Client/package.xml                                 |    2 +
 3 files changed, 56 insertions(+), 28 deletions(-)

http://git.horde.org/horde-git/-/commit/02c8ad3a2e6081eded059938ab8dc587caa5d1b4

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

commit 6d372c0df1ab7a7b1974f0a0990f5f482654ca92
Merge: 197a050 02c8ad3
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Nov 10 12:23:07 2012 -0700

    Merge branch 'imap-client_2_2'
    
    Conflicts:
    	framework/Imap_Client/package.xml

 framework/Imap_Client/doc/Horde/Imap/Client/UPGRADING             |   17 +
 framework/Imap_Client/lib/Horde/Imap/Client.php                   |   10 +
 framework/Imap_Client/lib/Horde/Imap/Client/Base.php              |  156 +++-
 framework/Imap_Client/lib/Horde/Imap/Client/Base/Deprecated.php   |  100 ++
 .../Imap_Client/lib/Horde/Imap/Client/Data/Format/String.php      |   42 +-
 framework/Imap_Client/lib/Horde/Imap/Client/Data/Sync.php         |  203 +++++
 framework/Imap_Client/lib/Horde/Imap/Client/Exception/Sync.php    |   25 +
 framework/Imap_Client/lib/Horde/Imap/Client/Socket.php            |   40 +-
 framework/Imap_Client/package.xml                                 |   28 +-
 9 files changed, 539 insertions(+), 82 deletions(-)

http://git.horde.org/horde-git/-/commit/6d372c0df1ab7a7b1974f0a0990f5f482654ca92




More information about the commits mailing list