[commits] Horde branch master updated. d9a2b4bc7e28c6a87068b0878e5b9a8eae309bfe

Michael M Slusarz slusarz at horde.org
Thu Jan 30 19:53:36 UTC 2014


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

from: b83e1fca5aaa640fab411bac4eb0c129fb7503ad

79e7359 Horde_Text_Filter_Csstidy is no longer used
c8bd23c This package has long since been unmaintained and is not used
ab9bd3a Proper phpdoc for Horde_Autoloader
fd027a0 [mms] Add Horde_Autoloader_ClassPathMapper_PrefixString mapper implementation.
908e813 [mms] Saving cache data should be handled in a shutdown function, not a destructor.
34da770 [mms] Remove duplicate paths when initializing the default Autoloader.
e94536f Use PrefixString autoloader for application paths.
687249f No need to go through __get() to access these variables
b475a43 More efficient Horde_Stream#search()
0064a57 Optimizations for email parsing
de7e187 Correctly resize message area when adding addresses
3c713dd preset HTML IFRAME to height auto so that window does not jump when image content is loading
d9a2b4b [mms] Fix sieve driver correctly identifying mailing list when determining whether to send vacation messages (Bug #12938; skhorde at smail.inf.fg-bonn-rhein-sieg.de).

Summary: http://github.com/horde/horde/compare/b83e1fca5aaa640fab411bac4eb0c129fb7503ad...d9a2b4bc7e28c6a87068b0878e5b9a8eae309bfe

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

commit 79e7359291c6274808837dbe93a28794c31911d3
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 19:37:30 2014 -0700

    Horde_Text_Filter_Csstidy is no longer used

 imp/composer.json |   20 +++++++++-----------
 imp/package.xml   |   17 +++++++++--------
 2 files changed, 18 insertions(+), 19 deletions(-)

http://github.com/horde/horde/commit/79e7359291c6274808837dbe93a28794c31911d3
http://git.horde.org/horde-git/-/commit/79e7359291c6274808837dbe93a28794c31911d3

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

commit c8bd23c59cbcd1893c6b476fc4f6f031dbf8c4f8
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 19:37:59 2014 -0700

    This package has long since been unmaintained and is not used

 framework/Text_Filter_Csstidy/composer.json                       |   30 -
 .../Text_Filter_Csstidy/doc/Horde/Text/Filter/Csstidy/COPYING     |  280 --
 framework/Text_Filter_Csstidy/lib/Horde/Text/Filter/Csstidy.php   |   63 -
 .../lib/Horde/Text/Filter/Csstidy/class.csstidy.php               | 1017 -----
 .../lib/Horde/Text/Filter/Csstidy/class.csstidy_optimise.php      |  783 ----
 .../lib/Horde/Text/Filter/Csstidy/class.csstidy_print.php         |  348 --
 .../lib/Horde/Text/Filter/Csstidy/data.inc.php                    |  507 --
 framework/Text_Filter_Csstidy/package.xml                         |  283 --
 .../test/Horde/Text/Filter/Csstidy/AllTests.php                   |    3 -
 .../test/Horde/Text/Filter/Csstidy/CsstidyTest.php                |   28 -
 .../test/Horde/Text/Filter/Csstidy/bootstrap.php                  |    3 -
 .../test/Horde/Text/Filter/Csstidy/phpunit.xml                    |    8 -
 12 files changed, 0 insertions(+), 3353 deletions(-)
 delete mode 100644 framework/Text_Filter_Csstidy/composer.json
 delete mode 100644 framework/Text_Filter_Csstidy/doc/Horde/Text/Filter/Csstidy/COPYING
 delete mode 100644 framework/Text_Filter_Csstidy/lib/Horde/Text/Filter/Csstidy.php
 delete mode 100644 framework/Text_Filter_Csstidy/lib/Horde/Text/Filter/Csstidy/class.csstidy.php
 delete mode 100644 framework/Text_Filter_Csstidy/lib/Horde/Text/Filter/Csstidy/class.csstidy_optimise.php
 delete mode 100644 framework/Text_Filter_Csstidy/lib/Horde/Text/Filter/Csstidy/class.csstidy_print.php
 delete mode 100644 framework/Text_Filter_Csstidy/lib/Horde/Text/Filter/Csstidy/data.inc.php
 delete mode 100644 framework/Text_Filter_Csstidy/package.xml
 delete mode 100644 framework/Text_Filter_Csstidy/test/Horde/Text/Filter/Csstidy/AllTests.php
 delete mode 100644 framework/Text_Filter_Csstidy/test/Horde/Text/Filter/Csstidy/CsstidyTest.php
 delete mode 100644 framework/Text_Filter_Csstidy/test/Horde/Text/Filter/Csstidy/bootstrap.php
 delete mode 100644 framework/Text_Filter_Csstidy/test/Horde/Text/Filter/Csstidy/phpunit.xml

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

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

commit ab9bd3add5354e4980f038cef0a1ea73414eda21
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 20:17:11 2014 -0700

    Proper phpdoc for Horde_Autoloader
    
    Cleanup some code to Horde coding standards

 framework/Autoloader/doc/Horde/Autoloader/examples/most_basic.php |    7 +-
 framework/Autoloader/lib/Horde/Autoloader.php                     |  114 ++++-
 framework/Autoloader/lib/Horde/Autoloader/ClassPathMapper.php     |   30 +-
 .../lib/Horde/Autoloader/ClassPathMapper/Application.php          |   62 ++-
 .../Autoloader/lib/Horde/Autoloader/ClassPathMapper/Default.php   |   64 ++-
 .../Autoloader/lib/Horde/Autoloader/ClassPathMapper/Prefix.php    |   67 ++-
 framework/Autoloader/lib/Horde/Autoloader/Default.php             |   38 +-
 7 files changed, 294 insertions(+), 88 deletions(-)

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

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

commit fd027a07f5a89ec574c0dc41284f0563838b5ae5
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 20:46:12 2014 -0700

    [mms] Add Horde_Autoloader_ClassPathMapper_PrefixString mapper implementation.

 .../lib/Horde/Autoloader/ClassPathMapper/PrefixString.php         |   71 +++++
 framework/Autoloader/package.xml                                  |   21 +-
 .../test/Horde/Autoloader/ClassPathMapper/PrefixStringTest.php    |   41 +++
 3 files changed, 124 insertions(+), 9 deletions(-)
 create mode 100644 framework/Autoloader/lib/Horde/Autoloader/ClassPathMapper/PrefixString.php
 create mode 100644 framework/Autoloader/test/Horde/Autoloader/ClassPathMapper/PrefixStringTest.php

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

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

commit 908e8133051da98045b56a8198a6f80d5533343d
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 21:55:39 2014 -0700

    [mms] Saving cache data should be handled in a shutdown function, not a destructor.

 framework/Autoloader_Cache/lib/Horde/Autoloader/Cache.php |   10 +++++++---
 framework/Autoloader_Cache/package.xml                    |    2 ++
 2 files changed, 9 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/908e8133051da98045b56a8198a6f80d5533343d
http://git.horde.org/horde-git/-/commit/908e8133051da98045b56a8198a6f80d5533343d

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

commit 34da7704c15c99530e80bedfc16a020edd03e259
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 22:01:34 2014 -0700

    [mms] Remove duplicate paths when initializing the default Autoloader.

 framework/Autoloader/lib/Horde/Autoloader/Default.php |   18 +++++++++++-----
 framework/Autoloader/package.xml                      |    2 +
 2 files changed, 14 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/34da7704c15c99530e80bedfc16a020edd03e259
http://git.horde.org/horde-git/-/commit/34da7704c15c99530e80bedfc16a020edd03e259

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

commit e94536f44daa5389e95497a01f8c5b7d878dd01f
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 22:02:07 2014 -0700

    Use PrefixString autoloader for application paths.
    
    More efficient than calling preg_match().
    
    Also, don't add duplicate path mapper entries to autoloader in
    Horde_Registry.

 framework/Core/lib/Horde/Registry.php |   34 +++++++++++++++++++++-----------
 framework/Core/package.xml            |    2 +-
 horde/lib/core.php                    |    4 ++-
 horde/package.xml                     |    2 +-
 4 files changed, 27 insertions(+), 15 deletions(-)

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

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

commit 687249fee324876fd625a993d0d5b10d51202ed5
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 22:26:11 2014 -0700

    No need to go through __get() to access these variables

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

http://github.com/horde/horde/commit/687249fee324876fd625a993d0d5b10d51202ed5
http://git.horde.org/horde-git/-/commit/687249fee324876fd625a993d0d5b10d51202ed5

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

commit b475a43fc3bede609680aebee1f201965e715e04
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Jan 29 23:12:37 2014 -0700

    More efficient Horde_Stream#search()
    
    About 3x as fast, according to xdebug.

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

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

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

commit 0064a5744d648eaf4916a41c279f3f4ea31ef53c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 00:25:48 2014 -0700

    Optimizations for email parsing
    
    2x increase in performance per xdebug

 framework/Mail/lib/Horde/Mail/Rfc822.php |   45 +++++++++++++++++------------
 1 files changed, 26 insertions(+), 19 deletions(-)

http://github.com/horde/horde/commit/0064a5744d648eaf4916a41c279f3f4ea31ef53c
http://git.horde.org/horde-git/-/commit/0064a5744d648eaf4916a41c279f3f4ea31ef53c

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

commit de7e1877876e1aa9bde231fc2dfcc00a6f050982
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 00:46:00 2014 -0700

    Correctly resize message area when adding addresses

 imp/js/compose-dimp.js       |    1 +
 imp/js/prettyautocomplete.js |    4 +++-
 2 files changed, 4 insertions(+), 1 deletions(-)

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

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

commit 3c713dd3a2e31c8a15517d1d50c2b8d6aad853ea
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 01:08:47 2014 -0700

    preset HTML IFRAME to height auto so that window does not jump when image content is loading

 imp/js/imp.js                |   13 +++++--------
 imp/lib/Mime/Viewer/Html.php |    2 +-
 2 files changed, 6 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/3c713dd3a2e31c8a15517d1d50c2b8d6aad853ea
http://git.horde.org/horde-git/-/commit/3c713dd3a2e31c8a15517d1d50c2b8d6aad853ea

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

commit d9a2b4bc7e28c6a87068b0878e5b9a8eae309bfe
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Thu Jan 30 12:49:10 2014 -0700

    [mms] Fix sieve driver correctly identifying mailing list when determining whether to send vacation messages (Bug #12938; skhorde at smail.inf.fg-bonn-rhein-sieg.de).
    
    Conflicts:
    	ingo/docs/CHANGES
    	ingo/package.xml

 ingo/docs/CHANGES         |    9 +++++++++
 ingo/lib/Script/Sieve.php |    7 +++++--
 ingo/package.xml          |   13 +++++++++++++
 3 files changed, 27 insertions(+), 2 deletions(-)

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




More information about the commits mailing list