[commits] Horde branch master updated. 92959827266fa894c1579e7165240879fa132f8c

Michael M Slusarz slusarz at horde.org
Wed Apr 30 05:22:48 UTC 2014


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

from: bdd31e4c38c42d8d77f981623a966c0a67352111

e780b6f optimize images
06bdef2 [mms] Add commented list of original source URLs in minified output, in order to comply with any license terms contained in original files.
b0b6c65 [mms] Add commented list of original source URLs in minified output, in order to comply with any license terms contained in original files.
623f131 [mms] Add Horde_Mail_Rfc822_Identification class.
7e787e0 Identification parsing code has been moved to Horde_Mime
bb23876 [mms] Be more lenient in parsing RFC 5322 identification field values.
23e2661 Use Horde_Mail_Rfc822_Identification to parse message-id field also
eb6a5fe [mms] Don't set References header in reply message if equal to In-Reply-To header (RFC 5322 [3.6.4]).
9295982 Fix typo

Summary: http://github.com/horde/horde/compare/bdd31e4c38c42d8d77f981623a966c0a67352111...92959827266fa894c1579e7165240879fa132f8c

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

commit e780b6f72e04aeba37661e1e763923630d0982a7
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 19:21:45 2014 -0600

    optimize images

 horde/themes/default/graphics/tree/joinbottom-down.png |  Bin 219 -> 92 bytes
 imp/themes/default/graphics/clipboard.png              |  Bin 465 -> 379 bytes
 imp/themes/default/graphics/delete-small.png           |  Bin 136 -> 124 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

http://github.com/horde/horde/commit/e780b6f72e04aeba37661e1e763923630d0982a7

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

commit 06bdef2d010ca708f29efe01ef7fbd1d3fd8faf3
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 20:31:10 2014 -0600

    [mms] Add commented list of original source URLs in minified output, in order to comply with any license terms contained in original files.

 framework/JavascriptMinify/lib/Horde/JavascriptMinify.php         |   25 +++++
 framework/JavascriptMinify/lib/Horde/JavascriptMinify/Closure.php |    3 +-
 .../JavascriptMinify/lib/Horde/JavascriptMinify/Uglifyjs.php      |    2 +-
 framework/JavascriptMinify/lib/Horde/JavascriptMinify/Yui.php     |    3 +-
 framework/JavascriptMinify/package.xml                            |   12 +-
 5 files changed, 36 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/06bdef2d010ca708f29efe01ef7fbd1d3fd8faf3

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

commit b0b6c6543e34a6323762dbfde3e5890b3ae65465
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 20:31:23 2014 -0600

    [mms] Add commented list of original source URLs in minified output, in order to comply with any license terms contained in original files.

 .../JavascriptMinify_Jsmin/lib/Horde/JavascriptMinify/Jsmin.php   |    2 +-
 framework/JavascriptMinify_Jsmin/package.xml                      |    6 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/b0b6c6543e34a6323762dbfde3e5890b3ae65465

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

commit 623f131736fb3809d5810a6194bcfd71182d3e90
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 21:02:08 2014 -0600

    [mms] Add Horde_Mail_Rfc822_Identification class.

 framework/Mail/doc/Horde/Mail/UPGRADING                 |    8 +
 framework/Mail/lib/Horde/Mail/Rfc822/Identification.php |  107 +++++++++++++++
 framework/Mail/package.xml                              |   20 ++-
 framework/Mail/test/Horde/Mail/IdentificationTest.php   |   68 +++++++++
 4 files changed, 195 insertions(+), 8 deletions(-)
 create mode 100644 framework/Mail/lib/Horde/Mail/Rfc822/Identification.php
 create mode 100644 framework/Mail/test/Horde/Mail/IdentificationTest.php

http://github.com/horde/horde/commit/623f131736fb3809d5810a6194bcfd71182d3e90

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

commit 7e787e081d41994f5fc490333bfc4ff60e0afdd8
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 21:04:33 2014 -0600

    Identification parsing code has been moved to Horde_Mime

 imp/lib/Compose.php                  |   10 ++--
 imp/lib/Compose/References.php       |   94 --------------------------------
 imp/package.xml                      |    8 +--
 imp/test/Imp/Unit/ReferencesTest.php |   99 ----------------------------------
 4 files changed, 6 insertions(+), 205 deletions(-)
 delete mode 100644 imp/lib/Compose/References.php
 delete mode 100644 imp/test/Imp/Unit/ReferencesTest.php

http://github.com/horde/horde/commit/7e787e081d41994f5fc490333bfc4ff60e0afdd8

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

commit bb23876a5ebe195cc4ca148783f7eb62bd072f38
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 21:15:17 2014 -0600

    [mms] Be more lenient in parsing RFC 5322 identification field values.

 framework/Mail/lib/Horde/Mail/Rfc822/Identification.php |   17 ++++++++++++--
 framework/Mail/package.xml                              |    2 +
 framework/Mail/test/Horde/Mail/IdentificationTest.php   |   13 +++++++++++
 3 files changed, 29 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/bb23876a5ebe195cc4ca148783f7eb62bd072f38

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

commit 23e26611c799ece13528a9b013604f083f525b51
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 21:23:07 2014 -0600

    Use Horde_Mail_Rfc822_Identification to parse message-id field also

 imp/lib/Compose.php |   57 ++++++++++++++++++++------------------------------
 1 files changed, 23 insertions(+), 34 deletions(-)

http://github.com/horde/horde/commit/23e26611c799ece13528a9b013604f083f525b51

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

commit eb6a5feda4bfec5c5e6270569534f8a388826443
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 21:30:08 2014 -0600

    [mms] Don't set References header in reply message if equal to In-Reply-To header (RFC 5322 [3.6.4]).

 imp/docs/CHANGES    |    2 ++
 imp/lib/Compose.php |   23 +++++++++++++++++++----
 imp/package.xml     |    1 +
 3 files changed, 22 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/eb6a5feda4bfec5c5e6270569534f8a388826443

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

commit 92959827266fa894c1579e7165240879fa132f8c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Apr 29 23:22:24 2014 -0600

    Fix typo

 imp/lib/Contents.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/92959827266fa894c1579e7165240879fa132f8c




More information about the commits mailing list