The branch "imp_6_1" has been updated. The following is a summary of the commits.
from: 79b4a5fadf29ceb0a7a4a42c872b47658731087f 65ac21b [mms] Add logging wrapper class to reduce serialized size of factory-created objects. 559bcb5 Remove (unused) $instance property. 9d83991 phpdoc ebe74dd Remove stray character. 3e9efcf Only build on PHP 5.4 for now, 5.3 obviously has issues on Travis. 698a6fb If we are going to extend Horde_Session, we need to allow access to these properties. 9a0be18 Ensure we still have a Horde_Session::BEGIN value after destroy() is called. e39f643 Properly log the minuid value here. 60c569b Horde:: -> self:: 2b590ff Prevent chicken/egg with the logger. d8d281a BFN 6aa424d Allow for more deeply nested search criteria. 6d46fdf BFN 38dcf39 [mms] Better error-checking when uncompressing cache data. a8fb101 [mms] Add support for horde_lz4 for compressing cache data. a8950c4 Merge branch 'master' into imp_6_1 ----------------------------------------------------------------------- commit 65ac21bad933cd4750935cd77ec34fe8f381a530 Author: Michael M Slusarz <[email protected]> Date: Wed Mar 6 02:43:21 2013 -0700 [mms] Add logging wrapper class to reduce serialized size of factory-created objects. framework/Core/lib/Horde/Core/Factory/Cache.php | 2 +- framework/Core/lib/Horde/Core/Log/Wrapper.php | 53 +++++++++++++++++++++++ framework/Core/package.xml | 12 +++-- 3 files changed, 61 insertions(+), 6 deletions(-) create mode 100644 framework/Core/lib/Horde/Core/Log/Wrapper.php http://git.horde.org/horde-git/-/commit/65ac21bad933cd4750935cd77ec34fe8f381a530 ----------------------------------------------------------------------- commit 559bcb51841669f58ac1dd4fc440b76626de31d0 Author: Jan Schneider <[email protected]> Date: Wed Mar 6 11:39:40 2013 +0100 Remove (unused) $instance property. The injector already implements a singleton, so there's not need for another. framework/Core/lib/Horde/Core/Log/Wrapper.php | 24 ++++-------------------- 1 files changed, 4 insertions(+), 20 deletions(-) http://git.horde.org/horde-git/-/commit/559bcb51841669f58ac1dd4fc440b76626de31d0 ----------------------------------------------------------------------- commit 9d83991fa502e15e4708c055e20a3943346d5e0e Author: Jan Schneider <[email protected]> Date: Wed Mar 6 14:50:36 2013 +0100 phpdoc framework/Cli_Modular/lib/Horde/Cli/Modular.php | 10 ++-- framework/Cli_Modular/lib/Horde/Cli/Modular/Module.php | 39 ++++++++-------- 2 files changed, 23 insertions(+), 26 deletions(-) http://git.horde.org/horde-git/-/commit/9d83991fa502e15e4708c055e20a3943346d5e0e ----------------------------------------------------------------------- commit ebe74dd74d16e162a7950e0a2b0c904b1657516a Author: Jan Schneider <[email protected]> Date: Wed Mar 6 14:50:50 2013 +0100 Remove stray character. turba/lib/Data/Ldif.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/ebe74dd74d16e162a7950e0a2b0c904b1657516a ----------------------------------------------------------------------- commit 3e9efcf4758d1a0640175d4b6788d62247be9677 Author: Jan Schneider <[email protected]> Date: Wed Mar 6 15:27:04 2013 +0100 Only build on PHP 5.4 for now, 5.3 obviously has issues on Travis. .travis.yml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/3e9efcf4758d1a0640175d4b6788d62247be9677 ----------------------------------------------------------------------- commit 698a6fb5d0e88772a0cffa830ca1f62177b3c81a Author: Michael J Rubinsky <[email protected]> Date: Wed Mar 6 09:58:20 2013 -0500 If we are going to extend Horde_Session, we need to allow access to these properties. Partial fix for Bug: 12078 framework/Core/lib/Horde/Session.php | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) http://git.horde.org/horde-git/-/commit/698a6fb5d0e88772a0cffa830ca1f62177b3c81a ----------------------------------------------------------------------- commit 9a0be186efebbbef09c55b1cc3b39a8f7b227374 Author: Michael J Rubinsky <[email protected]> Date: Wed Mar 6 09:59:36 2013 -0500 Ensure we still have a Horde_Session::BEGIN value after destroy() is called. Final bit of Bug: 12078 framework/Core/lib/Horde/Session/Null.php | 11 +++++++++-- 1 files changed, 9 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/9a0be186efebbbef09c55b1cc3b39a8f7b227374 ----------------------------------------------------------------------- commit e39f643df6bd8d35bd086994ec2cb42b965cad1f Author: Michael J Rubinsky <[email protected]> Date: Wed Mar 6 10:01:06 2013 -0500 Properly log the minuid value here. framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/e39f643df6bd8d35bd086994ec2cb42b965cad1f ----------------------------------------------------------------------- commit 60c569b01f37a1f35ce800717baa9796898a3a25 Author: Michael J Rubinsky <[email protected]> Date: Wed Mar 6 11:59:04 2013 -0500 Horde:: -> self:: framework/Core/lib/Horde.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/60c569b01f37a1f35ce800717baa9796898a3a25 ----------------------------------------------------------------------- commit 2b590ff47770c8b204f7e2602e209f557fc4dc02 Author: Michael J Rubinsky <[email protected]> Date: Wed Mar 6 12:39:03 2013 -0500 Prevent chicken/egg with the logger. If we attempt to load the logger before horde's configuration is fully loaded, we might not have the the logger settings available. This will cause the injector factory to return a null logger. Since the injector acts as a singleton in this case, we may never obtain a correct logger. Fixes Bug: 12094 framework/Core/lib/Horde.php | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/2b590ff47770c8b204f7e2602e209f557fc4dc02 ----------------------------------------------------------------------- commit d8d281a5068a36fe1d02c84a74bd8223ca78d754 Author: Michael J Rubinsky <[email protected]> Date: Wed Mar 6 12:44:15 2013 -0500 BFN framework/Core/package.xml | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) http://git.horde.org/horde-git/-/commit/d8d281a5068a36fe1d02c84a74bd8223ca78d754 ----------------------------------------------------------------------- commit 6aa424dc814ec8c95851c16b6cc89172d87f7369 Author: Michael J Rubinsky <[email protected]> Date: Wed Mar 6 13:05:53 2013 -0500 Allow for more deeply nested search criteria. Fixes Bug: 12089 for activesync based global address book searches. turba/lib/Driver/Ldap.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/6aa424dc814ec8c95851c16b6cc89172d87f7369 ----------------------------------------------------------------------- commit 6d46fdf1a1a5158d3c6b7203672c64c7a0199ce4 Author: Michael J Rubinsky <[email protected]> Date: Wed Mar 6 13:08:25 2013 -0500 BFN turba/docs/CHANGES | 2 ++ turba/package.xml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/6d46fdf1a1a5158d3c6b7203672c64c7a0199ce4 ----------------------------------------------------------------------- commit 38dcf39871d860f86ca888df3dfae6d2688e01cc Author: Michael M Slusarz <[email protected]> Date: Wed Mar 6 12:55:56 2013 -0700 [mms] Better error-checking when uncompressing cache data. framework/Autoloader_Cache/lib/Horde/Autoloader/Cache.php | 15 +++++++++--- framework/Autoloader_Cache/package.xml | 4 +- 2 files changed, 13 insertions(+), 6 deletions(-) http://git.horde.org/horde-git/-/commit/38dcf39871d860f86ca888df3dfae6d2688e01cc ----------------------------------------------------------------------- commit a8fb1014f4eea99f94f0ce9d2e51e3a69e889f32 Author: Michael M Slusarz <[email protected]> Date: Wed Mar 6 12:56:43 2013 -0700 [mms] Add support for horde_lz4 for compressing cache data. framework/Autoloader_Cache/package.xml | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) http://git.horde.org/horde-git/-/commit/a8fb1014f4eea99f94f0ce9d2e51e3a69e889f32 ----------------------------------------------------------------------- commit a8950c412a6105fa10f7b060ddf9963e80a25a1c Merge: 79b4a5f a8fb101 Author: Michael M Slusarz <[email protected]> Date: Wed Mar 6 13:17:53 2013 -0700 Merge branch 'master' into imp_6_1 .travis.yml | 2 +- framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 2 +- framework/Autoloader_Cache/lib/Horde/Autoloader/Cache.php | 15 +++- framework/Autoloader_Cache/package.xml | 11 +++- framework/Cli_Modular/lib/Horde/Cli/Modular.php | 10 +-- framework/Cli_Modular/lib/Horde/Cli/Modular/Module.php | 39 ++++++------ framework/Core/lib/Horde.php | 6 +- framework/Core/lib/Horde/Core/Factory/Cache.php | 2 +- framework/Core/lib/Horde/Core/Log/Wrapper.php | 37 +++++++++++ framework/Core/lib/Horde/Session.php | 10 ++-- framework/Core/lib/Horde/Session/Null.php | 11 +++- framework/Core/package.xml | 16 +++-- turba/docs/CHANGES | 2 + turba/lib/Data/Ldif.php | 2 +- turba/lib/Driver/Ldap.php | 4 +- turba/package.xml | 4 +- 16 files changed, 119 insertions(+), 54 deletions(-) http://git.horde.org/horde-git/-/commit/a8950c412a6105fa10f7b060ddf9963e80a25a1c -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
