[commits] Horde branch master updated. 251f498852cbeb29b71cd0da31385e0927e78aa1

Michael M Slusarz slusarz at horde.org
Thu Jan 30 22:26:05 UTC 2014


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

from: d9a2b4bc7e28c6a87068b0878e5b9a8eae309bfe

aad0a0e Move stream back to public method
b727fd4 [mms] Fix documentation regarding proper license for this package (BSD).
c9059dc phpdoc
a72f809 Don't need to keep track of string length.
0ff2f69 Fix stream_write() and stream_seek() for string wrapper.
42e47a5 [mms] Allow jQuery Mobile script to be packaged in same file as other jquery code.
5a9a97d These may be called before onDocumentReady code is ever run
251f498 Set some global config settings before identifying that Horde is fully initialized

Summary: http://github.com/horde/horde/compare/d9a2b4bc7e28c6a87068b0878e5b9a8eae309bfe...251f498852cbeb29b71cd0da31385e0927e78aa1

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

commit aad0a0e9f570b77b7d3fde1cc631c9e794f68d7a
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 13:10:51 2014 -0700

    Move stream back to public method
    
    Undeprecate.  This is the only way to add things such as filters to the
    underlying stream.  Horde_Stream, but its description, is meant to be a
    utility method to help with accessing a stream, but its methods are not
    the exclusive method.

 framework/Stream/lib/Horde/Stream.php          |   52 ++++++++++-------------
 framework/Stream/lib/Horde/Stream/Existing.php |    2 +-
 framework/Stream/lib/Horde/Stream/Temp.php     |    2 +-
 3 files changed, 25 insertions(+), 31 deletions(-)

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

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

commit b727fd4b36d3285673c07c6b524027fecd25070d
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 13:30:48 2014 -0700

    [mms] Fix documentation regarding proper license for this package (BSD).
    
    It has always been BSD, and the code files themselves have always
    pointed to the BSD license.  It was only package.xml and the COPYING
    file included (but not referenced anywhere) that referred to LGPL.

 framework/Stream_Wrapper/doc/Horde/Stream/Wrapper/COPYING         |  482 +----
 framework/Stream_Wrapper/lib/Horde/Stream/Wrapper/Combine.php     |   26 +-
 .../Stream_Wrapper/lib/Horde/Stream/Wrapper/CombineStream.php     |   25 +-
 framework/Stream_Wrapper/lib/Horde/Stream/Wrapper/String.php      |   22 +-
 .../Stream_Wrapper/lib/Horde/Stream/Wrapper/StringStream.php      |   22 +-
 framework/Stream_Wrapper/package.xml                              |   28 +-
 6 files changed, 96 insertions(+), 509 deletions(-)

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

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

commit c9059dc420bc433346a9165f1838f5f863d9b419
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 13:35:01 2014 -0700

    phpdoc

 framework/Stream_Wrapper/lib/Horde/Stream/Wrapper/String.php |   40 +++++-----
 1 files changed, 19 insertions(+), 21 deletions(-)

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

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

commit a72f8097b3ab8ecbed9f9a502f1395967618fb3c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 13:37:24 2014 -0700

    Don't need to keep track of string length.
    
    strlen() in PHP is cheap, since the internal string struct already keeps
    track of this.
    
    Also, _position -> _pos to make code a bit clearer.

 framework/Stream_Wrapper/lib/Horde/Stream/Wrapper/String.php |   35 ++++------
 1 files changed, 14 insertions(+), 21 deletions(-)

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

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

commit 0ff2f69035fe9014dfed50fb6c5449c8d7c7c65c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 13:50:25 2014 -0700

    Fix stream_write() and stream_seek() for string wrapper.
    
    Add stream_close().

 framework/Stream_Wrapper/lib/Horde/Stream/Wrapper/String.php |   55 ++++++----
 1 files changed, 34 insertions(+), 21 deletions(-)

http://github.com/horde/horde/commit/0ff2f69035fe9014dfed50fb6c5449c8d7c7c65c
http://git.horde.org/horde-git/-/commit/0ff2f69035fe9014dfed50fb6c5449c8d7c7c65c

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

commit 42e47a59ba986cfa7072bc1fcd42b6ed2af76d15
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 14:49:22 2014 -0700

    [mms] Allow jQuery Mobile script to be packaged in same file as other jquery code.

 framework/Core/js/horde-jquery-init.js  |    8 ++++++++
 framework/Core/lib/Horde/PageOutput.php |   29 +++++++++++++++++++++++------
 framework/Core/package.xml              |    8 ++++++--
 horde/templates/common/footer.html.php  |    1 -
 horde/templates/common/header.html.php  |    3 ---
 5 files changed, 37 insertions(+), 12 deletions(-)
 create mode 100644 framework/Core/js/horde-jquery-init.js

http://github.com/horde/horde/commit/42e47a59ba986cfa7072bc1fcd42b6ed2af76d15
http://git.horde.org/horde-git/-/commit/42e47a59ba986cfa7072bc1fcd42b6ed2af76d15

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

commit 5a9a97de97f807657e9dae56a2dd8356419029c5
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 15:14:25 2014 -0700

    These may be called before onDocumentReady code is ever run

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

http://github.com/horde/horde/commit/5a9a97de97f807657e9dae56a2dd8356419029c5
http://git.horde.org/horde-git/-/commit/5a9a97de97f807657e9dae56a2dd8356419029c5

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

commit 251f498852cbeb29b71cd0da31385e0927e78aa1
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 15:20:31 2014 -0700

    Set some global config settings before identifying that Horde is fully initialized

 framework/Core/lib/Horde/Registry.php |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

http://github.com/horde/horde/commit/251f498852cbeb29b71cd0da31385e0927e78aa1
http://git.horde.org/horde-git/-/commit/251f498852cbeb29b71cd0da31385e0927e78aa1




More information about the commits mailing list