[commits] Horde branch master updated. a1d30d7b07160c1a7bc85ca68a79d3159c73710d

Michael M Slusarz slusarz at horde.org
Wed Mar 12 04:10:51 UTC 2014


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

from: af9153368a5e68e529a6a7f155e8836ac0594304

cf64cc0 Finalize rewrite of IMP_Maillog system
61b6904 Bug #13021: Fix maillog when forwarding multiple messages
40c8015 Reversed logic
a737348 Only allow basic forward action when multiple messages are selected
a1d30d7 No reason to be including this on every access, since it will be pushed to the browser on every AJAX update

Summary: http://github.com/horde/horde/compare/af9153368a5e68e529a6a7f155e8836ac0594304...a1d30d7b07160c1a7bc85ca68a79d3159c73710d

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

commit cf64cc0f5560942a2474be69071f0877e08e1c87
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Mar 11 16:29:18 2014 -0600

    Finalize rewrite of IMP_Maillog system
    
    + Now based on Mailbox/UIDs, not message IDs
    + Don't use Horde_History_Log, since that is specific to a single driver
    + Move IMAP-flag based MDN checking into an IMP_Maillog driver

 imp/lib/Ajax/Application/Handler/Common.php  |    6 +-
 imp/lib/Ajax/Application/Handler/Dynamic.php |   12 +-
 imp/lib/Ajax/Application/ShowMessage.php     |    4 +-
 imp/lib/Ajax/Queue.php                       |   42 +++---
 imp/lib/Api.php                              |   60 +++++++-
 imp/lib/Basic/Message.php                    |   12 +-
 imp/lib/Compose.php                          |   36 ++++-
 imp/lib/Factory/Maillog.php                  |   17 ++-
 imp/lib/Maillog.php                          |  206 +++-----------------------
 imp/lib/Maillog/Log/Base.php                 |   96 ++++++++++++
 imp/lib/Maillog/Log/Forward.php              |   71 +++++++++
 imp/lib/Maillog/Log/Mdn.php                  |   36 +++++
 imp/lib/Maillog/Log/Redirect.php             |   71 +++++++++
 imp/lib/Maillog/Log/Reply.php                |   39 +++++
 imp/lib/Maillog/Log/Replyall.php             |   39 +++++
 imp/lib/Maillog/Log/Replylist.php            |   39 +++++
 imp/lib/Maillog/Message.php                  |  103 +++++++++++++
 imp/lib/Maillog/Storage/Base.php             |   31 +++--
 imp/lib/Maillog/Storage/Composite.php        |   92 ++++++++++++
 imp/lib/Maillog/Storage/History.php          |   94 ++++++++++--
 imp/lib/Maillog/Storage/Mdnsent.php          |   95 ++++++++++++
 imp/lib/Maillog/Storage/Null.php             |   11 +-
 imp/lib/Message.php                          |   47 +++----
 imp/lib/Message/Ui.php                       |   63 +++------
 imp/package.xml                              |   34 ++++-
 25 files changed, 1015 insertions(+), 341 deletions(-)
 create mode 100644 imp/lib/Maillog/Log/Base.php
 create mode 100644 imp/lib/Maillog/Log/Forward.php
 create mode 100644 imp/lib/Maillog/Log/Mdn.php
 create mode 100644 imp/lib/Maillog/Log/Redirect.php
 create mode 100644 imp/lib/Maillog/Log/Reply.php
 create mode 100644 imp/lib/Maillog/Log/Replyall.php
 create mode 100644 imp/lib/Maillog/Log/Replylist.php
 create mode 100644 imp/lib/Maillog/Message.php
 create mode 100644 imp/lib/Maillog/Storage/Composite.php
 create mode 100644 imp/lib/Maillog/Storage/Mdnsent.php

http://github.com/horde/horde/commit/cf64cc0f5560942a2474be69071f0877e08e1c87
http://git.horde.org/horde-git/-/commit/cf64cc0f5560942a2474be69071f0877e08e1c87

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

commit 61b6904d09b9da45d9c6b17070dffc19528e974e
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Mar 11 19:08:41 2014 -0600

    Bug #13021: Fix maillog when forwarding multiple messages
    
    Serendipitous: Required the IMP_Maillog system to be rewritten to handle
    this properly.

 imp/lib/Basic/Compose.php   |    3 +-
 imp/lib/Compose.php         |  174 +++++++++++++++++++++++++++++--------------
 imp/lib/Dynamic/Compose.php |   14 +---
 3 files changed, 125 insertions(+), 66 deletions(-)

http://github.com/horde/horde/commit/61b6904d09b9da45d9c6b17070dffc19528e974e
http://git.horde.org/horde-git/-/commit/61b6904d09b9da45d9c6b17070dffc19528e974e

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

commit 40c80157a5608200a87e637a606c17e99a3b63b3
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Mar 11 19:38:59 2014 -0600

    Reversed logic

 imp/js/smartmobile.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/40c80157a5608200a87e637a606c17e99a3b63b3
http://git.horde.org/horde-git/-/commit/40c80157a5608200a87e637a606c17e99a3b63b3

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

commit a737348e9fe63f14ead08a8a507cfe8d6b617939
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Mar 11 19:41:40 2014 -0600

    Only allow basic forward action when multiple messages are selected

 imp/js/dimpbase.js |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/a737348e9fe63f14ead08a8a507cfe8d6b617939
http://git.horde.org/horde-git/-/commit/a737348e9fe63f14ead08a8a507cfe8d6b617939

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

commit a1d30d7b07160c1a7bc85ca68a79d3159c73710d
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Mar 11 22:09:24 2014 -0600

    No reason to be including this on every access, since it will be pushed to the browser on every AJAX update

 framework/Core/lib/Horde/Core/Alarm/Handler/Desktop.php |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/a1d30d7b07160c1a7bc85ca68a79d3159c73710d
http://git.horde.org/horde-git/-/commit/a1d30d7b07160c1a7bc85ca68a79d3159c73710d




More information about the commits mailing list