[commits] Horde branch master updated. e77d2394cd7bf176b55b1ea0a166a260b151a791

Michael M Slusarz slusarz at horde.org
Tue Jan 28 00:18:07 UTC 2014


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

from: ef1ffd68431838dd18849c77a48b88b14c2749f8

d59300a Some cleanups in base registry instantiation
b6d37ad Don't use Horde_Auth::factory
b983c4d Deprecate Horde_Auth::factory()
ca6c3c4 The gettext bind methods only need to be called once per page access
36023ff This needs to match base class' signature
e51574d Only log logout message if there is a currently existing session
e77d239 [mms] Move configuration loading code to Horde_Registry_Loadconfig class.

Summary: http://github.com/horde/horde/compare/ef1ffd68431838dd18849c77a48b88b14c2749f8...e77d2394cd7bf176b55b1ea0a166a260b151a791

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

commit d59300a74904a673a111003dbdf069f873e6a2ba
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 27 14:47:55 2014 -0700

    Some cleanups in base registry instantiation

 framework/Core/lib/Horde/Registry.php |   56 +++++++++++++++++----------------
 1 files changed, 29 insertions(+), 27 deletions(-)

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

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

commit b6d37adcd946b8f45df4f8081b9feed3f9fc67ad
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 27 14:53:42 2014 -0700

    Don't use Horde_Auth::factory
    
    One of the reasons we have global injector factories.  Additionaly, the
    built-in Horde_Auth factory is non-optimized since it searches for the
    package driver name first, rather than a full classname (which Horde
    always provides).

 framework/Core/lib/Horde/Core/Factory/Auth.php |   24 +++++++-----------------
 1 files changed, 7 insertions(+), 17 deletions(-)

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

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

commit b983c4d7617f27b21c578ee2b003fff3bf84ccfe
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 27 15:00:57 2014 -0700

    Deprecate Horde_Auth::factory()

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

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

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

commit ca6c3c48d0480845d420a90874862ca27b289a93
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 27 15:01:16 2014 -0700

    The gettext bind methods only need to be called once per page access
    
    This saves up to 40+ bindtextdomain()/bind_textdomain_codeset() calls
    per access.

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

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

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

commit 36023ff980106b038f874b78d29fd4b0ebc998d8
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 27 15:03:47 2014 -0700

    This needs to match base class' signature

 framework/Core/lib/Horde/Core/Auth/Application.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/36023ff980106b038f874b78d29fd4b0ebc998d8
http://git.horde.org/horde-git/-/commit/36023ff980106b038f874b78d29fd4b0ebc998d8

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

commit e51574dfee137cb276d5a6462fcca84429ed9564
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 27 15:04:50 2014 -0700

    Only log logout message if there is a currently existing session

 horde/login.php |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

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

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

commit e77d2394cd7bf176b55b1ea0a166a260b151a791
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 27 17:06:01 2014 -0700

    [mms] Move configuration loading code to Horde_Registry_Loadconfig class.
    
    Horde::loadConfiguration() still works for H5, but is now deprecated.

 framework/Core/lib/Horde.php                                  |  185 +++------
 framework/Core/lib/Horde/Core/Factory/MimeViewer.php          |    3 +-
 framework/Core/lib/Horde/Core/Factory/SpellChecker.php        |    3 +-
 framework/Core/lib/Horde/Core/Hooks.php                       |    2 +-
 framework/Core/lib/Horde/Core/Prefs/Storage/Configuration.php |    6 +-
 framework/Core/lib/Horde/Core/Prefs/Ui.php                    |   11 +-
 framework/Core/lib/Horde/Registry.php                         |    9 +-
 framework/Core/lib/Horde/Registry/Loadconfig.php              |  129 ++++++
 framework/Core/lib/Horde/Registry/Nlsconfig.php               |    3 +-
 framework/Core/package.xml                                    |    8 +-
 10 files changed, 204 insertions(+), 155 deletions(-)
 create mode 100644 framework/Core/lib/Horde/Registry/Loadconfig.php

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




More information about the commits mailing list