[commits] Horde branch master updated. 468b258ffe063d6dc7146cbda5732b6864143719
Michael M Slusarz
slusarz at horde.org
Fri Feb 20 09:11:04 UTC 2015
The branch "master" has been updated.
The following is a summary of the commits.
from: f096ea0b0e02ec226bd7a23f61d18cc5c428ee63
b2c3ec0 Small optimizaions to random id generation
abc36c6 Re-add this padding to autocomplete
287cd68 Re-add padding to compose autocomplete box
440519b Re-add list generation to HTML editor
c34c4eb Not sure why this is marked asynchronous, but it breaks fade effects
efba72a Be even more selective about when to use LITERAL+ when APPENDing
45ed3bf Convert flag matching to user interfaces
468b258 [mms] Add backend configuration option to use body structure data to more accurately determine whether a message contains attachments.
Summary: http://github.com/horde/horde/compare/f096ea0b0e02ec226bd7a23f61d18cc5c428ee63...468b258ffe063d6dc7146cbda5732b6864143719
-----------------------------------------------------------------------
commit b2c3ec016f278d83692c903226852d763238deb5
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Feb 17 14:40:01 2015 -0700
Small optimizaions to random id generation
Use serialize instead of implode to add a bit more variance, since the
location of array entries in the shuffled array (for now, only
sys_getloadavg()) can vary.
Add more random inputs (memory usage, Hash ID)
Use SHA1 instead of MD5 - since we need a 23 character string, MD5 only
gets us 22 base64 chars so using a random value from mt_rand() was only
providing 10 bytes of randomness in the 23rd char.
framework/Support/lib/Horde/Support/Randomid.php | 17 ++++++++++-------
1 files changed, 10 insertions(+), 7 deletions(-)
http://github.com/horde/horde/commit/b2c3ec016f278d83692c903226852d763238deb5
-----------------------------------------------------------------------
commit abc36c6d67163394848248b374c11b7488f2a02b
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Feb 17 14:55:44 2015 -0700
Re-add this padding to autocomplete
The previous commit doesn't conform to Horde rules either:
There are 4 pixels of padding in the Horde CSS, not 0.
imp/themes/default/dynamic/compose.css | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/abc36c6d67163394848248b374c11b7488f2a02b
-----------------------------------------------------------------------
commit 287cd68ecb87f2afb7ff6748d45cc35de1674d5d
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Feb 17 23:39:56 2015 -0700
Re-add padding to compose autocomplete box
The input looks totally lost in the middle of nowhere with the default
padding.
imp/themes/default/dynamic/compose.css | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
http://github.com/horde/horde/commit/287cd68ecb87f2afb7ff6748d45cc35de1674d5d
-----------------------------------------------------------------------
commit 440519b4cd77b2df5532d35a29579c26db9c98a9
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Feb 18 00:30:49 2015 -0700
Re-add list generation to HTML editor
imp/config/prefs.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/440519b4cd77b2df5532d35a29579c26db9c98a9
-----------------------------------------------------------------------
commit c34c4eb80cb0daec2ab0b034137bd173524bbfbc
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Feb 18 16:12:21 2015 -0700
Not sure why this is marked asynchronous, but it breaks fade effects
imp/js/compose.js | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/c34c4eb80cb0daec2ab0b034137bd173524bbfbc
-----------------------------------------------------------------------
commit efba72a14904961b650e09459a81833874059531
Author: Michael M Slusarz <slusarz at horde.org>
Date: Fri Feb 20 00:36:24 2015 -0700
Be even more selective about when to use LITERAL+ when APPENDing
framework/Imap_Client/lib/Horde/Imap/Client/Socket.php | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
http://github.com/horde/horde/commit/efba72a14904961b650e09459a81833874059531
-----------------------------------------------------------------------
commit 45ed3bf4579f3237e3c0fccb6e6ce37003f7f05e
Author: Michael M Slusarz <slusarz at horde.org>
Date: Fri Feb 20 01:17:10 2015 -0700
Convert flag matching to user interfaces
imp/lib/Flag/Base.php | 12 -----------
imp/lib/Flag/Imap.php | 7 +++--
imp/lib/Flag/Match/Address.php | 35 +++++++++++++++++++++++++++++++++
imp/lib/Flag/Match/Flag.php | 34 ++++++++++++++++++++++++++++++++
imp/lib/Flag/Match/Header.php | 34 ++++++++++++++++++++++++++++++++
imp/lib/Flag/System/Attachment.php | 7 +++--
imp/lib/Flag/System/Encrypted.php | 7 +++--
imp/lib/Flag/System/HighPriority.php | 7 +++--
imp/lib/Flag/System/List.php | 7 +++--
imp/lib/Flag/System/LowPriority.php | 7 +++--
imp/lib/Flag/System/Match/Address.php | 34 --------------------------------
imp/lib/Flag/System/Match/Flag.php | 33 -------------------------------
imp/lib/Flag/System/Match/Header.php | 33 -------------------------------
imp/lib/Flag/System/Personal.php | 7 +++--
imp/lib/Flag/System/Signed.php | 7 +++--
imp/lib/Flag/System/Unseen.php | 7 +++--
imp/lib/Flags.php | 19 +++++++++++------
17 files changed, 151 insertions(+), 146 deletions(-)
create mode 100644 imp/lib/Flag/Match/Address.php
create mode 100644 imp/lib/Flag/Match/Flag.php
create mode 100644 imp/lib/Flag/Match/Header.php
delete mode 100644 imp/lib/Flag/System/Match/Address.php
delete mode 100644 imp/lib/Flag/System/Match/Flag.php
delete mode 100644 imp/lib/Flag/System/Match/Header.php
http://github.com/horde/horde/commit/45ed3bf4579f3237e3c0fccb6e6ce37003f7f05e
-----------------------------------------------------------------------
commit 468b258ffe063d6dc7146cbda5732b6864143719
Author: Michael M Slusarz <slusarz at horde.org>
Date: Fri Feb 20 01:45:15 2015 -0700
[mms] Add backend configuration option to use body structure data to more accurately determine whether a message contains attachments.
imp/config/backends.php | 6 +++++
imp/docs/CHANGES | 2 +
imp/docs/UPGRADING | 6 +++++
imp/lib/Ajax/Application/ListMessages.php | 3 +-
imp/lib/Ajax/Queue.php | 3 +-
imp/lib/Flag/Match/Structure.php | 34 +++++++++++++++++++++++++++++
imp/lib/Flag/System/Attachment.php | 29 +++++++++++++++++++++++-
imp/lib/Flags.php | 12 +++++++++-
imp/lib/Imap/Config.php | 26 +++++++++++++++++----
imp/lib/Mailbox/List.php | 10 +++++++-
imp/package.xml | 21 ++++++++++-------
11 files changed, 133 insertions(+), 19 deletions(-)
create mode 100644 imp/lib/Flag/Match/Structure.php
http://github.com/horde/horde/commit/468b258ffe063d6dc7146cbda5732b6864143719
More information about the commits
mailing list