[commits] Horde branch master updated. d53c996ebe8ddc3140fa2f2cba25ee28e64b3811

Michael M Slusarz slusarz at horde.org
Wed Jan 29 05:53:28 UTC 2014


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

from: 84f940a08d731fdaed36bc7e7000c0e0ad3e74e4

48367d7 A bit cleaner
e17cd55 Use full driver names here
ce51950 Revert "Another additional tweak to PGP parsing"
a0a8006 Fix Temp driver accessing the max_memory parameter
45e82e3 Use getChar() here
6e785a4 Allow stream variable to be dynamically generated, if needed
d53c996 [mms] Add the Horde_Stream_String class.

Summary: http://github.com/horde/horde/compare/84f940a08d731fdaed36bc7e7000c0e0ad3e74e4...d53c996ebe8ddc3140fa2f2cba25ee28e64b3811

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

commit 48367d7a38c024447af3482fe64639c9b02669e9
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Jan 28 14:02:27 2014 -0700

    A bit cleaner

 framework/Cache/lib/Horde/Cache/Storage/Hashtable.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/48367d7a38c024447af3482fe64639c9b02669e9
http://git.horde.org/horde-git/-/commit/48367d7a38c024447af3482fe64639c9b02669e9

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

commit e17cd558a8547ae5d8aac4c900b660649744dd8b
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Jan 28 14:28:04 2014 -0700

    Use full driver names here

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

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

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

commit ce519507a9a63cfa06bb68fa5c6bfb8a5f598a6b
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Jan 28 14:29:48 2014 -0700

    Revert "Another additional tweak to PGP parsing"
    
    This reverts commit 5574680435cc41fe4fbb54379c223d4486e9d2d7.
    
    We always need the line to be stripped of newline characters

 framework/Crypt/lib/Horde/Crypt/Pgp/Parse.php |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

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

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

commit a0a8006bb1f9d9bc5016a14f99228b97df4c2993
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Jan 28 15:17:09 2014 -0700

    Fix Temp driver accessing the max_memory parameter

 framework/Stream/lib/Horde/Stream/Temp.php |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

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

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

commit 45e82e365496e07666b85000cc5b73d677336d6e
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Jan 28 19:12:54 2014 -0700

    Use getChar() here

 framework/Stream/lib/Horde/Stream.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/45e82e365496e07666b85000cc5b73d677336d6e
http://git.horde.org/horde-git/-/commit/45e82e365496e07666b85000cc5b73d677336d6e

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

commit 6e785a4201e41727cfd829d5ce802ebb0e5637d1
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Jan 28 19:13:30 2014 -0700

    Allow stream variable to be dynamically generated, if needed

 framework/Stream/lib/Horde/Stream.php          |   62 ++++++++++++++----------
 framework/Stream/lib/Horde/Stream/Existing.php |    2 +-
 framework/Stream/lib/Horde/Stream/Temp.php     |    2 +-
 3 files changed, 39 insertions(+), 27 deletions(-)

http://github.com/horde/horde/commit/6e785a4201e41727cfd829d5ce802ebb0e5637d1
http://git.horde.org/horde-git/-/commit/6e785a4201e41727cfd829d5ce802ebb0e5637d1

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

commit d53c996ebe8ddc3140fa2f2cba25ee28e64b3811
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Jan 28 22:49:15 2014 -0700

    [mms] Add the Horde_Stream_String class.

 framework/Stream/lib/Horde/Stream.php                             |   32 +-
 framework/Stream/lib/Horde/Stream/String.php                      |  308 ++
 framework/Stream/lib/Horde/Stream/TempString.php                  |  262 ++
 framework/Stream/package.xml                                      |   58 +-
 framework/Stream/test/Horde/Stream/ExistingTest.php               |  199 --
 framework/Stream/test/Horde/Stream/Stream/ExistingTest.php        |   35 +
 framework/Stream/test/Horde/Stream/Stream/StringTest.php          |   33 +
 .../Stream/test/Horde/Stream/Stream/TempStringStreamTest.php      |   45 +
 framework/Stream/test/Horde/Stream/Stream/TempStringTest.php      |   43 +
 framework/Stream/test/Horde/Stream/Stream/TempTest.php            |   33 +
 framework/Stream/test/Horde/Stream/Stream/TestBase.php            |  679 +++++
 framework/Stream/test/Horde/Stream/TempTest.php                   |  664 ----
 framework/Stream/test/Horde/Stream/fixtures/data.txt              |    1 -
 13 files changed, 1503 insertions(+), 889 deletions(-)
 create mode 100644 framework/Stream/lib/Horde/Stream/String.php
 create mode 100644 framework/Stream/lib/Horde/Stream/TempString.php
 delete mode 100644 framework/Stream/test/Horde/Stream/ExistingTest.php
 create mode 100644 framework/Stream/test/Horde/Stream/Stream/ExistingTest.php
 create mode 100644 framework/Stream/test/Horde/Stream/Stream/StringTest.php
 create mode 100644 framework/Stream/test/Horde/Stream/Stream/TempStringStreamTest.php
 create mode 100644 framework/Stream/test/Horde/Stream/Stream/TempStringTest.php
 create mode 100644 framework/Stream/test/Horde/Stream/Stream/TempTest.php
 create mode 100644 framework/Stream/test/Horde/Stream/Stream/TestBase.php
 delete mode 100644 framework/Stream/test/Horde/Stream/TempTest.php
 delete mode 100644 framework/Stream/test/Horde/Stream/fixtures/data.txt

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




More information about the commits mailing list