The branch "imp_6_1" has been updated. The following is a summary of the commits.
from: 8bbace42fcd83c0a8144da4457f970d1ea505974 2c9a9b0 Bug: 12084 Fix constant name. 059d797 Don't assume the ICalendar attachment contains a METHOD parameter. a71ae5c BFN c55ec29 Released Horde_ActiveSync-2.3.1 233202e Development mode for Horde_ActiveSync-2.3.2 1d7d8de Added Horde_Compress_Fast package fbe5192 Better description of what lzf does 78683ff [mms] Abstract data compression out into Horde_Compress_Fast package. 36402a46 [mms] Abstract data compression out into Horde_Compress_Fast package. b5ba380 [mms] Always compress cache data, if possible. 405e1b8 We support 5.4 also d47093b Merge branch 'master' of ssh://dev.horde.org/horde/git/horde 4f81ec5 Released Horde_Core-2.4.0 23f78a2 Development mode for Horde_Core-2.4.1 3944915 Fix login button on IE8 0554540 A bit more clear that magic_db value normally does not need to be set 1d86d64 Fix global issue 8c6fdd6 Chora's _init() method is all messed up since it assumes that chora is the active application 214fa01 fix package.xml f54e57f Development mode for Horde_Compress_Fast-1.0.1 1ff04e2 Initial commit for the horde_lz4 PECL package 869a8b9 Allow PECL packages to be built. e132bb6 Development mode for horde_lz4-1.0.0beta2 b9e75d3 [mms] Add horde_lz4 compression driver. af7332f Tweaks to LZ4 driver 8def68c Released horde_lz4-1.0.0beta2 a380308 Development mode for horde_lz4-1.0.0beta3 e45e3c9 Merge branch 'master' into imp_6_1 5c3925f phpdoc dd4e239 Simplify backend examples ----------------------------------------------------------------------- commit 2c9a9b04e00e48e089c5172c9f2cc474040e37e5 Author: Michael J Rubinsky <[email protected]> Date: Sun Mar 3 16:11:40 2013 -0500 Bug: 12084 Fix constant name. framework/Core/lib/Horde/Core/ActiveSync/Driver.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/2c9a9b04e00e48e089c5172c9f2cc474040e37e5 ----------------------------------------------------------------------- commit 059d797f83722b0ea3921132ec9718aa45d3bcd1 Author: Michael J Rubinsky <[email protected]> Date: Sun Mar 3 17:39:38 2013 -0500 Don't assume the ICalendar attachment contains a METHOD parameter. Fixes Bug: 12083 framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/059d797f83722b0ea3921132ec9718aa45d3bcd1 ----------------------------------------------------------------------- commit a71ae5c5ba710f9655731351dda24b3b5709043f Author: Michael J Rubinsky <[email protected]> Date: Sun Mar 3 18:06:53 2013 -0500 BFN framework/ActiveSync/package.xml | 6 ++++-- framework/Core/package.xml | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/a71ae5c5ba710f9655731351dda24b3b5709043f ----------------------------------------------------------------------- commit c55ec2985a9b529929aa0c02b13dd4e034b0d960 Author: Michael J Rubinsky <[email protected]> Date: Sun Mar 3 18:19:38 2013 -0500 Released Horde_ActiveSync-2.3.1 framework/ActiveSync/package.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) http://git.horde.org/horde-git/-/commit/c55ec2985a9b529929aa0c02b13dd4e034b0d960 ----------------------------------------------------------------------- commit 233202e57451ee32f6ee8b62e1a73dd9334f8650 Author: Michael J Rubinsky <[email protected]> Date: Sun Mar 3 18:19:54 2013 -0500 Development mode for Horde_ActiveSync-2.3.2 framework/ActiveSync/package.xml | 20 ++++++++++++++++---- 1 files changed, 16 insertions(+), 4 deletions(-) http://git.horde.org/horde-git/-/commit/233202e57451ee32f6ee8b62e1a73dd9334f8650 ----------------------------------------------------------------------- commit 1d7d8deb430196460cb24b191ead94a07b6badb3 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 16:31:51 2013 -0700 Added Horde_Compress_Fast package framework/Compress_Fast/doc/Horde/Compress/Fast/COPYING | 458 +++++ framework/Compress_Fast/lib/Horde/Compress/Fast.php | 109 + framework/Compress_Fast/lib/Horde/Compress/Fast/Base.php | 55 + framework/Compress_Fast/lib/Horde/Compress/Fast/Exception.php | 25 + framework/Compress_Fast/lib/Horde/Compress/Fast/Lzf.php | 50 + framework/Compress_Fast/lib/Horde/Compress/Fast/Null.php | 39 + framework/Compress_Fast/package.xml | 127 ++ framework/Compress_Fast/test/Horde/Compress/Fast/AllTests.php | 3 + .../Compress_Fast/test/Horde/Compress/Fast/CompressFastTest.php | 122 ++ framework/Compress_Fast/test/Horde/Compress/Fast/bootstrap.php | 3 + framework/Compress_Fast/test/Horde/Compress/Fast/phpunit.xml | 1 + 11 files changed, 992 insertions(+), 0 deletions(-) create mode 100644 framework/Compress_Fast/doc/Horde/Compress/Fast/COPYING create mode 100644 framework/Compress_Fast/lib/Horde/Compress/Fast.php create mode 100644 framework/Compress_Fast/lib/Horde/Compress/Fast/Base.php create mode 100644 framework/Compress_Fast/lib/Horde/Compress/Fast/Exception.php create mode 100644 framework/Compress_Fast/lib/Horde/Compress/Fast/Lzf.php create mode 100644 framework/Compress_Fast/lib/Horde/Compress/Fast/Null.php create mode 100644 framework/Compress_Fast/package.xml create mode 100644 framework/Compress_Fast/test/Horde/Compress/Fast/AllTests.php create mode 100644 framework/Compress_Fast/test/Horde/Compress/Fast/CompressFastTest.php create mode 100644 framework/Compress_Fast/test/Horde/Compress/Fast/bootstrap.php create mode 100644 framework/Compress_Fast/test/Horde/Compress/Fast/phpunit.xml http://git.horde.org/horde-git/-/commit/1d7d8deb430196460cb24b191ead94a07b6badb3 ----------------------------------------------------------------------- commit fbe519238a85e0f70a4239a0e6146e1260377ad9 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 16:35:42 2013 -0700 Better description of what lzf does horde/docs/INSTALL | 4 ++-- horde/lib/Test.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) http://git.horde.org/horde-git/-/commit/fbe519238a85e0f70a4239a0e6146e1260377ad9 ----------------------------------------------------------------------- commit 78683ffa6ad49eef867f676b1f4a0ebcf0d4a888 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 16:45:20 2013 -0700 [mms] Abstract data compression out into Horde_Compress_Fast package. framework/Cache/lib/Horde/Cache.php | 21 ++++++++++++--------- framework/Cache/package.xml | 17 +++++++++-------- 2 files changed, 21 insertions(+), 17 deletions(-) http://git.horde.org/horde-git/-/commit/78683ffa6ad49eef867f676b1f4a0ebcf0d4a888 ----------------------------------------------------------------------- commit 36402a46d1ed9d41087c6f778429e3dc19949507 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 16:49:52 2013 -0700 [mms] Abstract data compression out into Horde_Compress_Fast package. framework/Core/lib/Horde/Session.php | 33 ++++++++------------------------- framework/Core/package.xml | 15 +++++++++------ 2 files changed, 17 insertions(+), 31 deletions(-) http://git.horde.org/horde-git/-/commit/36402a46d1ed9d41087c6f778429e3dc19949507 ----------------------------------------------------------------------- commit b5ba3804953c182448e860982307981fc2c05be0 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 16:52:27 2013 -0700 [mms] Always compress cache data, if possible. framework/Core/lib/Horde/Core/Factory/Cache.php | 2 +- framework/Core/package.xml | 2 ++ 2 files changed, 3 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/b5ba3804953c182448e860982307981fc2c05be0 ----------------------------------------------------------------------- commit 405e1b85212b9e067355ffff67a9c1957eb63fff Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 17:05:13 2013 -0700 We support 5.4 also horde/lib/Test.php | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/405e1b85212b9e067355ffff67a9c1957eb63fff ----------------------------------------------------------------------- commit d47093bfb378f6db5bc6f821bdb23904012c70ea Merge: 233202e 405e1b8 Author: Michael J Rubinsky <[email protected]> Date: Sun Mar 3 19:17:06 2013 -0500 Merge branch 'master' of ssh://dev.horde.org/horde/git/horde framework/Cache/lib/Horde/Cache.php | 21 +- framework/Cache/package.xml | 17 +- framework/Compress_Fast/doc/Horde/Compress/Fast/COPYING | 458 +++++ framework/Compress_Fast/lib/Horde/Compress/Fast.php | 109 + framework/Compress_Fast/lib/Horde/Compress/Fast/Base.php | 55 + framework/Compress_Fast/lib/Horde/Compress/Fast/Exception.php | 25 + framework/Compress_Fast/lib/Horde/Compress/Fast/Lzf.php | 50 + framework/Compress_Fast/lib/Horde/Compress/Fast/Null.php | 39 + framework/Compress_Fast/package.xml | 127 ++ framework/Compress_Fast/test/Horde/Compress/Fast/AllTests.php | 3 + .../Compress_Fast/test/Horde/Compress/Fast/CompressFastTest.php | 122 ++ framework/Compress_Fast/test/Horde/Compress/Fast/bootstrap.php | 3 + framework/Compress_Fast/test/Horde/Compress/Fast/phpunit.xml | 1 + framework/Core/lib/Horde/Core/Factory/Cache.php | 2 +- framework/Core/lib/Horde/Session.php | 33 +- framework/Core/package.xml | 17 +- horde/docs/INSTALL | 4 +- horde/lib/Test.php | 5 +- 18 files changed, 1038 insertions(+), 53 deletions(-) http://git.horde.org/horde-git/-/commit/d47093bfb378f6db5bc6f821bdb23904012c70ea ----------------------------------------------------------------------- commit 4f81ec5708c70eb8a1023b2e76f3c089dd0b1a1c Author: Michael J Rubinsky <[email protected]> Date: Sun Mar 3 19:23:33 2013 -0500 Released Horde_Core-2.4.0 framework/Core/package.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) http://git.horde.org/horde-git/-/commit/4f81ec5708c70eb8a1023b2e76f3c089dd0b1a1c ----------------------------------------------------------------------- commit 23f78a2b4e8a9f792c44fec3b1f0be4562abac47 Author: Michael J Rubinsky <[email protected]> Date: Sun Mar 3 19:23:33 2013 -0500 Development mode for Horde_Core-2.4.1 framework/Core/package.xml | 25 ++++++++++++++++--------- 1 files changed, 16 insertions(+), 9 deletions(-) http://git.horde.org/horde-git/-/commit/23f78a2b4e8a9f792c44fec3b1f0be4562abac47 ----------------------------------------------------------------------- commit 3944915b889dc5d6866c49a6e980d1772e5b48dd Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 17:42:41 2013 -0700 Fix login button on IE8 horde/themes/default/ie8.css | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) http://git.horde.org/horde-git/-/commit/3944915b889dc5d6866c49a6e980d1772e5b48dd ----------------------------------------------------------------------- commit 05545403a0a13e21f56ede40e73c28190b0f9907 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 17:59:23 2013 -0700 A bit more clear that magic_db value normally does not need to be set horde/config/conf.xml | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/05545403a0a13e21f56ede40e73c28190b0f9907 ----------------------------------------------------------------------- commit 1d86d648d72133633bb9a41d8fffd701b2058d1f Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 18:01:40 2013 -0700 Fix global issue chora/lib/Chora.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/1d86d648d72133633bb9a41d8fffd701b2058d1f ----------------------------------------------------------------------- commit 8c6fdd6851be42f05a69471d7a9e1127917d30f7 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 18:09:22 2013 -0700 Chora's _init() method is all messed up since it assumes that chora is the active application chora/lib/Application.php | 24 ++++++++++++++++++------ 1 files changed, 18 insertions(+), 6 deletions(-) http://git.horde.org/horde-git/-/commit/8c6fdd6851be42f05a69471d7a9e1127917d30f7 ----------------------------------------------------------------------- commit 214fa0179964cb8fc9256037de90578b3c2f655e Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 18:36:18 2013 -0700 fix package.xml framework/Compress_Fast/package.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/214fa0179964cb8fc9256037de90578b3c2f655e ----------------------------------------------------------------------- commit f54e57f3f6a2ccbd19ec6fc3320985c2ae51795e Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 18:41:46 2013 -0700 Development mode for Horde_Compress_Fast-1.0.1 framework/Compress_Fast/package.xml | 17 +++++++++++++++-- 1 files changed, 15 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/f54e57f3f6a2ccbd19ec6fc3320985c2ae51795e ----------------------------------------------------------------------- commit 1ff04e208e6a2ff26898152e07f82f90ea957d17 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 20:06:50 2013 -0700 Initial commit for the horde_lz4 PECL package framework/lz4/CREDITS | 11 + framework/lz4/LICENSE | 68 +++ framework/lz4/LICENSE.lz4 | 30 ++ framework/lz4/README.md | 84 ++++ framework/lz4/config.m4 | 37 ++ framework/lz4/horde_lz4.c | 176 ++++++++ framework/lz4/lz4.c | 906 +++++++++++++++++++++++++++++++++++++++++ framework/lz4/lz4.h | 128 ++++++ framework/lz4/lz4hc.c | 730 +++++++++++++++++++++++++++++++++ framework/lz4/lz4hc.h | 60 +++ framework/lz4/package.xml | 82 ++++ framework/lz4/php_horde_lz4.h | 27 ++ framework/lz4/php_verdep.h | 65 +++ framework/lz4/tests/001.phpt | 30 ++ framework/lz4/tests/002.phpt | 41 ++ framework/lz4/tests/003.phpt | 21 + framework/lz4/tests/004.phpt | 19 + framework/lz4/tests/005.phpt | 47 +++ framework/lz4/tests/006.phpt | 30 ++ framework/lz4/tests/007.phpt | 21 + framework/lz4/tests/008.phpt | 23 + framework/lz4/tests/data.inc | 87 ++++ 22 files changed, 2723 insertions(+), 0 deletions(-) create mode 100644 framework/lz4/CREDITS create mode 100644 framework/lz4/LICENSE create mode 100644 framework/lz4/LICENSE.lz4 create mode 100644 framework/lz4/README.md create mode 100644 framework/lz4/config.m4 create mode 100644 framework/lz4/horde_lz4.c create mode 100644 framework/lz4/lz4.c create mode 100644 framework/lz4/lz4.h create mode 100644 framework/lz4/lz4hc.c create mode 100644 framework/lz4/lz4hc.h create mode 100644 framework/lz4/package.xml create mode 100644 framework/lz4/php_horde_lz4.h create mode 100644 framework/lz4/php_verdep.h create mode 100644 framework/lz4/tests/001.phpt create mode 100644 framework/lz4/tests/002.phpt create mode 100644 framework/lz4/tests/003.phpt create mode 100644 framework/lz4/tests/004.phpt create mode 100644 framework/lz4/tests/005.phpt create mode 100644 framework/lz4/tests/006.phpt create mode 100644 framework/lz4/tests/007.phpt create mode 100644 framework/lz4/tests/008.phpt create mode 100644 framework/lz4/tests/data.inc http://git.horde.org/horde-git/-/commit/1ff04e208e6a2ff26898152e07f82f90ea957d17 ----------------------------------------------------------------------- commit 869a8b9dce89232f28c670d974b7a52fcd1ed8bd Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 21:08:32 2013 -0700 Allow PECL packages to be built. components/lib/Components/Component/Source.php | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) http://git.horde.org/horde-git/-/commit/869a8b9dce89232f28c670d974b7a52fcd1ed8bd ----------------------------------------------------------------------- commit e132bb696c0f69020f3b07e9c4ef64f373b306b4 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 21:12:41 2013 -0700 Development mode for horde_lz4-1.0.0beta2 framework/lz4/package.xml | 17 +++++++++++++++-- 1 files changed, 15 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/e132bb696c0f69020f3b07e9c4ef64f373b306b4 ----------------------------------------------------------------------- commit b9e75d3bf202e9770f6e8e137c2504214fe59ef2 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 21:21:37 2013 -0700 [mms] Add horde_lz4 compression driver. framework/Compress_Fast/lib/Horde/Compress/Fast.php | 10 +- framework/Compress_Fast/lib/Horde/Compress/Fast/Lz4.php | 50 ++++ framework/Compress_Fast/package.xml | 11 +- .../Compress_Fast/test/Horde/Compress/Fast/CompressFastTest.php | 66 ++++- 4 files changed, 128 insertions(+), 9 deletions(-) create mode 100644 framework/Compress_Fast/lib/Horde/Compress/Fast/Lz4.php http://git.horde.org/horde-git/-/commit/b9e75d3bf202e9770f6e8e137c2504214fe59ef2 ----------------------------------------------------------------------- commit af7332f875724b7272d4af46872b116a0a27c8a6 Author: Michael M Slusarz <[email protected]> Date: Sun Mar 3 23:15:35 2013 -0700 Tweaks to LZ4 driver More robust header checking - eliminates the need to explicitly pass decompression size to horde_lz4_uncompress() Remove maxsize option to horde_lz4_uncompress() - substr() can do this for us already. Remove 'prefix' option to horde_lz4_compress(). Be silent when encountering decompression errors - calling code can explicitly check for this via the boolean false return. framework/lz4/README.md | 28 ++------------- framework/lz4/config.m4 | 2 +- framework/lz4/horde_lz4.c | 76 ++++++++++++++-------------------------- framework/lz4/horde_lz4.h | 28 +++++++++++++++ framework/lz4/package.xml | 3 +- framework/lz4/php_horde_lz4.h | 27 -------------- framework/lz4/tests/001.phpt | 4 -- framework/lz4/tests/002.phpt | 13 +++---- framework/lz4/tests/003.phpt | 8 ++--- framework/lz4/tests/005.phpt | 20 ++++------ framework/lz4/tests/006.phpt | 4 -- framework/lz4/tests/007.phpt | 11 +++--- framework/lz4/tests/008.phpt | 23 ------------ 13 files changed, 82 insertions(+), 165 deletions(-) create mode 100644 framework/lz4/horde_lz4.h delete mode 100644 framework/lz4/php_horde_lz4.h delete mode 100644 framework/lz4/tests/008.phpt http://git.horde.org/horde-git/-/commit/af7332f875724b7272d4af46872b116a0a27c8a6 ----------------------------------------------------------------------- commit 8def68c3d105ccb57fbac0c28744c34b76d5260a Author: Michael M Slusarz <[email protected]> Date: Mon Mar 4 00:59:41 2013 -0700 Released horde_lz4-1.0.0beta2 framework/lz4/package.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/8def68c3d105ccb57fbac0c28744c34b76d5260a ----------------------------------------------------------------------- commit a380308983a9edea04c8519a617210bead896f13 Author: Michael M Slusarz <[email protected]> Date: Mon Mar 4 00:59:41 2013 -0700 Development mode for horde_lz4-1.0.0beta3 framework/lz4/package.xml | 15 ++++++++++++++- 1 files changed, 14 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/a380308983a9edea04c8519a617210bead896f13 ----------------------------------------------------------------------- commit e45e3c9e8da76428f5983cdebddb4bb9ccbcbeb7 Merge: 8bbace4 a380308 Author: Michael M Slusarz <[email protected]> Date: Mon Mar 4 01:30:45 2013 -0700 Merge branch 'master' into imp_6_1 chora/lib/Application.php | 24 +- chora/lib/Chora.php | 2 +- components/lib/Components/Component/Source.php | 13 +- framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php | 8 +- framework/ActiveSync/package.xml | 22 +- framework/Cache/lib/Horde/Cache.php | 21 +- framework/Cache/package.xml | 17 +- framework/Compress_Fast/doc/Horde/Compress/Fast/COPYING | 458 +++ framework/Compress_Fast/lib/Horde/Compress/Fast.php | 113 + framework/Compress_Fast/lib/Horde/Compress/Fast/Base.php | 55 + framework/Compress_Fast/lib/Horde/Compress/Fast/Exception.php | 25 + framework/Compress_Fast/lib/Horde/Compress/Fast/Lz4.php | 50 + framework/Compress_Fast/lib/Horde/Compress/Fast/Lzf.php | 50 + framework/Compress_Fast/lib/Horde/Compress/Fast/Null.php | 39 + framework/Compress_Fast/package.xml | 147 + framework/Compress_Fast/test/Horde/Compress/Fast/AllTests.php | 3 + .../Compress_Fast/test/Horde/Compress/Fast/CompressFastTest.php | 180 + framework/Compress_Fast/test/Horde/Compress/Fast/bootstrap.php | 3 + framework/Compress_Fast/test/Horde/Compress/Fast/phpunit.xml | 1 + framework/Core/lib/Horde/Core/ActiveSync/Driver.php | 2 +- framework/Core/lib/Horde/Core/Factory/Cache.php | 2 +- framework/Core/lib/Horde/Session.php | 33 +- framework/Core/package.xml | 42 +- framework/lz4/CREDITS | 11 + framework/lz4/LICENSE | 68 + framework/lz4/LICENSE.lz4 | 30 + framework/lz4/README.md | 64 + framework/lz4/config.m4 | 37 + framework/lz4/horde_lz4.c | 154 + framework/lz4/horde_lz4.h | 28 + framework/lz4/lz4.c | 906 +++++ framework/lz4/lz4.h | 128 + framework/lz4/lz4hc.c | 730 ++++ framework/lz4/lz4hc.h | 60 + framework/lz4/package.xml | 107 + framework/lz4/php_verdep.h | 65 + framework/lz4/tests/001.phpt | 26 + framework/lz4/tests/002.phpt | 38 + framework/lz4/tests/003.phpt | 19 + framework/lz4/tests/004.phpt | 19 + framework/lz4/tests/005.phpt | 43 + framework/lz4/tests/006.phpt | 26 + framework/lz4/tests/007.phpt | 20 + framework/lz4/tests/data.inc | 87 + horde/config/conf.xml | 4 +- horde/docs/INSTALL | 4 +- horde/lib/Test.php | 5 +- horde/themes/default/ie8.css | 1 + 48 files changed, 3910 insertions(+), 80 deletions(-) http://git.horde.org/horde-git/-/commit/e45e3c9e8da76428f5983cdebddb4bb9ccbcbeb7 ----------------------------------------------------------------------- commit 5c3925f686d140a13d6e830bf91620d874b7f4bf Author: Michael M Slusarz <[email protected]> Date: Mon Mar 4 01:37:15 2013 -0700 phpdoc imp/config/hooks.php.dist | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/5c3925f686d140a13d6e830bf91620d874b7f4bf ----------------------------------------------------------------------- commit dd4e239771cd73036b0e94429da0c0fd5688f8ef Author: Michael M Slusarz <[email protected]> Date: Mon Mar 4 02:06:21 2013 -0700 Simplify backend examples Remove duplicative 'secure-imap' config. Default POP3 servers to TLS logins to match IMAP. imp/config/backends.php | 46 +--------------------------------------------- 1 files changed, 1 insertions(+), 45 deletions(-) http://git.horde.org/horde-git/-/commit/dd4e239771cd73036b0e94429da0c0fd5688f8ef -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
