[commits] Horde branch master updated. 9ac03eb9986f297753bbd15fd4191f0fa3f44c5b
Michael M Slusarz
slusarz at horde.org
Thu Jan 22 10:12:24 UTC 2015
The branch "master" has been updated.
The following is a summary of the commits.
from: 509900e71765e7eafd8ed05d9d0f77ba1a8ba1f0
7e4f1b6 [mms] Ensure that null bytes are filtered from MIME data that is contained in the headers.
4737cc3 [mms] Fix cloning of the Content-Type and Content-Disposition header objects.
7903bd5 [mms] Added the Horde_Mime_Headers_ContentLanguage class.
46b1da2 [mms] Content-Type and Content-Disposition related data is now handled internally in Horde_Mime_Part object by using Horde_Mime_Headers.
1befb22 Store description information in content-description header
d5c6bbd Store Content-ID data in the header object
b832dbb Store Content-Duration data in the header object
5a30558 Get rid of _serializedVars variable
24ba10a remove _init()
d734398 Merge _basepart and _reindex into a single _status variable
12e6227 Update UPGRADING for Horde_Mime changes
d4ec365 phpdoc
5f6e7ef Deprecate the static encodingTypes property
04acb4b [mms] Add interface to differentiate between MIME and non-MIME headers.
718834a [mms] Added Horde_Mime_Headers_Element#isDefault().
ee5ddde [mms] Add Horde_Mime_Headers_ContentTransferEncoding class.
ac40e6c Silence any errors from deleting temp files/directories
dfd1041 Fix tests
9ac03eb Fix tests
Summary: http://github.com/horde/horde/compare/509900e71765e7eafd8ed05d9d0f77ba1a8ba1f0...9ac03eb9986f297753bbd15fd4191f0fa3f44c5b
-----------------------------------------------------------------------
commit 7e4f1b6db994bf53b6ec00d0ad1f45d1b0f03328
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Jan 20 14:38:31 2015 -0700
[mms] Ensure that null bytes are filtered from MIME data that is contained in the headers.
framework/Mime/lib/Horde/Mime/Part.php | 43 +++++++++----
framework/Mime/package.xml | 2 +
framework/Mime/test/Horde/Mime/PartTest.php | 88 +++++++++++++++++++++++++++
3 files changed, 121 insertions(+), 12 deletions(-)
http://github.com/horde/horde/commit/7e4f1b6db994bf53b6ec00d0ad1f45d1b0f03328
-----------------------------------------------------------------------
commit 4737cc3f00fa1edae6bcbe7fda9a71d1d25ec423
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Jan 20 15:20:09 2015 -0700
[mms] Fix cloning of the Content-Type and Content-Disposition header objects.
framework/Mime/package.xml | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
http://github.com/horde/horde/commit/4737cc3f00fa1edae6bcbe7fda9a71d1d25ec423
-----------------------------------------------------------------------
commit 7903bd53f7c65e12b9bc53c80090ff6cab41012d
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Jan 20 16:12:21 2015 -0700
[mms] Added the Horde_Mime_Headers_ContentLanguage class.
framework/Mime/doc/Horde/Mime/UPGRADING | 16 ++
framework/Mime/lib/Horde/Mime/Headers.php | 1 +
framework/Mime/lib/Horde/Mime/Headers/ContentLanguage.php | 83 ++++++++
framework/Mime/lib/Horde/Mime/Headers/Element/Single.php | 2 -
framework/Mime/lib/Horde/Mime/Part.php | 31 ++--
framework/Mime/package.xml | 12 +-
framework/Mime/test/Horde/Mime/Headers/ContentLanguageTest.php | 75 +++++++
framework/Mime/test/Horde/Mime/HeadersTest.php | 17 ++
8 files changed, 215 insertions(+), 22 deletions(-)
create mode 100644 framework/Mime/lib/Horde/Mime/Headers/ContentLanguage.php
create mode 100644 framework/Mime/test/Horde/Mime/Headers/ContentLanguageTest.php
http://github.com/horde/horde/commit/7903bd53f7c65e12b9bc53c80090ff6cab41012d
-----------------------------------------------------------------------
commit 46b1da2f20640ea84885ffb361f11a429c61d1a1
Author: Michael M Slusarz <slusarz at horde.org>
Date: Tue Jan 20 20:45:11 2015 -0700
[mms] Content-Type and Content-Disposition related data is now handled internally in Horde_Mime_Part object by using Horde_Mime_Headers.
framework/Mime/doc/Horde/Mime/UPGRADING | 22 +
framework/Mime/lib/Horde/Mime/Headers.php | 25 +-
framework/Mime/lib/Horde/Mime/Headers/ContentParam.php | 62 +-
.../lib/Horde/Mime/Headers/ContentParam/ContentDisposition.php | 96 ++
.../Mime/lib/Horde/Mime/Headers/ContentParam/ContentType.php | 191 +++
framework/Mime/lib/Horde/Mime/Part.php | 336 ++---
framework/Mime/package.xml | 20 +-
framework/Mime/test/Horde/Mime/Headers/ContentDispositionTest.php | 192 +++
framework/Mime/test/Horde/Mime/Headers/ContentTypeTest.php | 316 ++++
framework/Mime/test/Horde/Mime/HeadersTest.php | 47 +-
framework/Mime/test/Horde/Mime/MailTest.php | 2 +-
framework/Mime/test/Horde/Mime/PartTest.php | 14 +-
12 files changed, 1036 insertions(+), 287 deletions(-)
create mode 100644 framework/Mime/lib/Horde/Mime/Headers/ContentParam/ContentDisposition.php
create mode 100644 framework/Mime/lib/Horde/Mime/Headers/ContentParam/ContentType.php
create mode 100644 framework/Mime/test/Horde/Mime/Headers/ContentDispositionTest.php
create mode 100644 framework/Mime/test/Horde/Mime/Headers/ContentTypeTest.php
http://github.com/horde/horde/commit/46b1da2f20640ea84885ffb361f11a429c61d1a1
-----------------------------------------------------------------------
commit 1befb2211343e417efd717914dd52edf3fbf4cdd
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 01:11:08 2015 -0700
Store description information in content-description header
framework/Mime/doc/Horde/Mime/UPGRADING | 4 +++
framework/Mime/lib/Horde/Mime/Part.php | 36 ++++++++++++++++--------------
2 files changed, 23 insertions(+), 17 deletions(-)
http://github.com/horde/horde/commit/1befb2211343e417efd717914dd52edf3fbf4cdd
-----------------------------------------------------------------------
commit d5c6bbda6530775448d616c263dac4338fb94cf2
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 01:26:13 2015 -0700
Store Content-ID data in the header object
framework/Mime/lib/Horde/Mime/Part.php | 39 +++++++++++++++++--------------
1 files changed, 21 insertions(+), 18 deletions(-)
http://github.com/horde/horde/commit/d5c6bbda6530775448d616c263dac4338fb94cf2
-----------------------------------------------------------------------
commit b832dbb7b27302db972484ad8e9e041073f24a3e
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 01:31:03 2015 -0700
Store Content-Duration data in the header object
framework/Mime/lib/Horde/Mime/Part.php | 27 +++++++++++++--------------
1 files changed, 13 insertions(+), 14 deletions(-)
http://github.com/horde/horde/commit/b832dbb7b27302db972484ad8e9e041073f24a3e
-----------------------------------------------------------------------
commit 5a30558bcbf5ae377ea58c8452ba78e182dd4041
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 01:36:48 2015 -0700
Get rid of _serializedVars variable
framework/Mime/lib/Horde/Mime/Part.php | 56 ++++++++++++++-----------------
1 files changed, 25 insertions(+), 31 deletions(-)
http://github.com/horde/horde/commit/5a30558bcbf5ae377ea58c8452ba78e182dd4041
-----------------------------------------------------------------------
commit 24ba10a9dde3a082d4402c42b3473c295e205be2
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 01:48:09 2015 -0700
remove _init()
framework/Mime/lib/Horde/Mime/Part.php | 11 -----------
1 files changed, 0 insertions(+), 11 deletions(-)
http://github.com/horde/horde/commit/24ba10a9dde3a082d4402c42b3473c295e205be2
-----------------------------------------------------------------------
commit d734398a98ffea3d53457a717d25b2dd58837cca
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 01:48:36 2015 -0700
Merge _basepart and _reindex into a single _status variable
framework/Mime/lib/Horde/Mime/Part.php | 87 ++++++++++++++++----------------
1 files changed, 44 insertions(+), 43 deletions(-)
http://github.com/horde/horde/commit/d734398a98ffea3d53457a717d25b2dd58837cca
-----------------------------------------------------------------------
commit 12e6227f43a77d5872e079282081254fe60484f4
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 13:37:24 2015 -0700
Update UPGRADING for Horde_Mime changes
framework/Mime/doc/Horde/Mime/UPGRADING | 11 ++++++++++-
1 files changed, 10 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/12e6227f43a77d5872e079282081254fe60484f4
-----------------------------------------------------------------------
commit d4ec3659cfb47573334439690411e50fb7735693
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 18:50:43 2015 -0700
phpdoc
framework/Mime/lib/Horde/Mime/Part.php | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
http://github.com/horde/horde/commit/d4ec3659cfb47573334439690411e50fb7735693
-----------------------------------------------------------------------
commit 5f6e7ef709b584e6698a3ca8bfc091df89bd4d04
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 18:57:54 2015 -0700
Deprecate the static encodingTypes property
framework/Mime/doc/Horde/Mime/UPGRADING | 3 +-
framework/Mime/lib/Horde/Mime/Part.php | 51 +++++++++++++++++++------------
2 files changed, 33 insertions(+), 21 deletions(-)
http://github.com/horde/horde/commit/5f6e7ef709b584e6698a3ca8bfc091df89bd4d04
-----------------------------------------------------------------------
commit 04acb4b26c7eac4e110650ea4a964c008f9d0af6
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 22:36:47 2015 -0700
[mms] Add interface to differentiate between MIME and non-MIME headers.
framework/Mime/doc/Horde/Mime/UPGRADING | 5 +
framework/Mime/lib/Horde/Mime/Headers.php | 1 +
framework/Mime/lib/Horde/Mime/Headers/ContentDescription.php | 1 +
framework/Mime/lib/Horde/Mime/Headers/ContentLanguage.php | 1 +
framework/Mime/lib/Horde/Mime/Headers/ContentParam.php | 2 +-
framework/Mime/lib/Horde/Mime/Headers/Element/Single.php | 15 ---
framework/Mime/lib/Horde/Mime/Headers/Extension/Mime.php | 27 +++++
framework/Mime/lib/Horde/Mime/Headers/Mime.php | 52 ++++++++++
framework/Mime/lib/Horde/Mime/Headers/MimeVersion.php | 1 +
framework/Mime/package.xml | 8 ++
10 files changed, 97 insertions(+), 16 deletions(-)
create mode 100644 framework/Mime/lib/Horde/Mime/Headers/Extension/Mime.php
create mode 100644 framework/Mime/lib/Horde/Mime/Headers/Mime.php
http://github.com/horde/horde/commit/04acb4b26c7eac4e110650ea4a964c008f9d0af6
-----------------------------------------------------------------------
commit 718834aa7f9a12a15d28a97762b3ae4141fc9b02
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 23:02:02 2015 -0700
[mms] Added Horde_Mime_Headers_Element#isDefault().
framework/Mime/doc/Horde/Mime/UPGRADING | 6 +
.../lib/Horde/Mime/Headers/ContentParam/ContentDisposition.php | 7 +
.../Mime/lib/Horde/Mime/Headers/ContentParam/ContentType.php | 7 +
framework/Mime/lib/Horde/Mime/Headers/Element.php | 12 +
framework/Mime/lib/Horde/Mime/Part.php | 7 +-
framework/Mime/package.xml | 2 +
framework/Mime/test/Horde/Mime/Headers/ContentDispositionTest.php | 43 ++++
framework/Mime/test/Horde/Mime/Headers/ContentTypeTest.php | 55 +++++
8 files changed, 134 insertions(+), 5 deletions(-)
http://github.com/horde/horde/commit/718834aa7f9a12a15d28a97762b3ae4141fc9b02
-----------------------------------------------------------------------
commit ee5ddde43c28672f3dac6d0cb11fce56835ee81f
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 21 23:19:59 2015 -0700
[mms] Add Horde_Mime_Headers_ContentTransferEncoding class.
framework/Mime/doc/Horde/Mime/UPGRADING | 1 +
framework/Mime/lib/Horde/Mime/Headers.php | 1 +
framework/Mime/lib/Horde/Mime/Headers/ContentTransferEncoding.php | 94 +++++
framework/Mime/lib/Horde/Mime/Headers/Mime.php | 1 -
framework/Mime/lib/Horde/Mime/Part.php | 11 +-
framework/Mime/package.xml | 6 +
.../Mime/test/Horde/Mime/Headers/ContentTransferEncodingTest.php | 91 ++++
7 files changed, 201 insertions(+), 4 deletions(-)
create mode 100644 framework/Mime/lib/Horde/Mime/Headers/ContentTransferEncoding.php
create mode 100644 framework/Mime/test/Horde/Mime/Headers/ContentTransferEncodingTest.php
http://github.com/horde/horde/commit/ee5ddde43c28672f3dac6d0cb11fce56835ee81f
-----------------------------------------------------------------------
commit ac40e6cd4c848eb54a507e84acf4bd5311599472
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Jan 22 02:34:43 2015 -0700
Silence any errors from deleting temp files/directories
framework/Util/lib/Horde/Util.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
http://github.com/horde/horde/commit/ac40e6cd4c848eb54a507e84acf4bd5311599472
-----------------------------------------------------------------------
commit dfd1041a4c146d8754686cd9530e9fe2a44054aa
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Jan 22 02:45:18 2015 -0700
Fix tests
Can't use serialized objects, since there is no guarantee (like here)
that the internals won't change.
framework/ActiveSync/test/Horde/ActiveSync/ImapAdapterTest.php | 7 ++--
.../ActiveSync/test/Horde/ActiveSync/MessageBodyDataTest.php | 8 ++++-
2 files changed, 11 insertions(+), 4 deletions(-)
http://github.com/horde/horde/commit/dfd1041a4c146d8754686cd9530e9fe2a44054aa
-----------------------------------------------------------------------
commit 9ac03eb9986f297753bbd15fd4191f0fa3f44c5b
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Jan 22 02:58:15 2015 -0700
Fix tests
These tests should really be fixed another way... since there is no need
to be testing MIME formatting (since parameter order and case are
never guaranteed).
.../Storage/ComponentTest/Data/Object/Message/ModifiedTest.php | 6 ++--
.../Kolab/Storage/ComponentTest/Data/Object/Message/NewTest.php | 2 +-
.../Kolab_Storage/test/Horde/Kolab/Storage/Unit/ObjectTest.php | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
http://github.com/horde/horde/commit/9ac03eb9986f297753bbd15fd4191f0fa3f44c5b
More information about the commits
mailing list