The branch "master" has been updated. The following is a summary of the commits.
from: ad75922bf0728150b5bbc547024be1d151ab26c8 c9ab0fa Remove these tests as they could try to open an ssh connection. f325c53 Allow to force network based installations. de522d4 Carry the options for the installation run forward when adding new packages. e7a1170 Start a bootstrapper that generates a Horde development environment based on git + PHP + the basic PEAR package. eceafea Updated TODO list. 553995f Only variables should be passed by reference. 6a14e08 Start a PEAR package with utility code to access package lists from PEAR servers. ----------------------------------------------------------------------- commit c9ab0fa33a56658b3ad02a978a5ec8d7fabafdeb Author: Gunnar Wrobel <[email protected]> Date: Mon Mar 7 11:44:37 2011 +0100 Remove these tests as they could try to open an ssh connection. .../test/Components/Integration/Components/Module/ReleaseTest.php | 21 ----- 1 files changed, 0 insertions(+), 21 deletions(-) http://git.horde.org/horde-git/-/commit/c9ab0fa33a56658b3ad02a978a5ec8d7fabafdeb ----------------------------------------------------------------------- commit f325c53ae80d7c5c50e1f3249c53f5214edc4278 Author: Gunnar Wrobel <[email protected]> Date: Mon Mar 7 11:45:13 2011 +0100 Allow to force network based installations. components/lib/Components/Pear/InstallLocation.php | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) http://git.horde.org/horde-git/-/commit/f325c53ae80d7c5c50e1f3249c53f5214edc4278 ----------------------------------------------------------------------- commit de522d4a71cee3bb2a07cc740f32a7cd334ea4cc Author: Gunnar Wrobel <[email protected]> Date: Mon Mar 7 11:45:40 2011 +0100 Carry the options for the installation run forward when adding new packages. components/lib/Components/Helper/InstallationRun.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/de522d4a71cee3bb2a07cc740f32a7cd334ea4cc ----------------------------------------------------------------------- commit e7a117062596cca5160c1ac1c356cbf8e64eeb24 Author: Gunnar Wrobel <[email protected]> Date: Mon Mar 7 11:53:07 2011 +0100 Start a bootstrapper that generates a Horde development environment based on git + PHP + the basic PEAR package. It should be sufficient to run php components/bin/horde-bootstrap in the horde checkout to install the development environment in lib/pear The command is not yet able to update the environment which still needs to be implemented. Right now the installation is still network dependent but it would be a future target to allow it to run from a collection of defined PEAR package archives. components/bin/horde-bootstrap | 57 +++++ components/lib/Components/Config/Bootstrap.php | 91 +++++++ components/lib/Components/Dependencies/Bootstrap.php | 222 ++++++++++++++++++ 3 files changed, 370 insertions(+), 0 deletions(-) create mode 100644 components/bin/horde-bootstrap create mode 100644 components/lib/Components/Config/Bootstrap.php create mode 100644 components/lib/Components/Dependencies/Bootstrap.php http://git.horde.org/horde-git/-/commit/e7a117062596cca5160c1ac1c356cbf8e64eeb24 ----------------------------------------------------------------------- commit eceafeaf3266658ad608cf4b90cf8b85cd16a2f6 Author: Gunnar Wrobel <[email protected]> Date: Mon Mar 7 11:55:40 2011 +0100 Updated TODO list. components/TODO | 17 ++++++++++------- 1 files changed, 10 insertions(+), 7 deletions(-) http://git.horde.org/horde-git/-/commit/eceafeaf3266658ad608cf4b90cf8b85cd16a2f6 ----------------------------------------------------------------------- commit 553995fd2683de581cc9e8381dfd532df74c9d9e Author: Gunnar Wrobel <[email protected]> Date: Mon Mar 7 11:56:07 2011 +0100 Only variables should be passed by reference. framework/Http/lib/Horde/Http/Response/Base.php | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) http://git.horde.org/horde-git/-/commit/553995fd2683de581cc9e8381dfd532df74c9d9e ----------------------------------------------------------------------- commit 6a14e085d7adafea3e2295dddfd6293415ad9515 Author: Gunnar Wrobel <[email protected]> Date: Mon Mar 7 12:09:33 2011 +0100 Start a PEAR package with utility code to access package lists from PEAR servers. The package does not intend to be a replacement for the PEAR libraries. It will only provide tools to deal with simple functionality that can be coded quickly. The intention is to have a cleaner development API to deal with PEAR related stuff. Neither PEAR nor Pyrus (PEAR2) made me happy so far. framework/Pear/COPYING | 502 ++++++++++ framework/Pear/lib/Horde/Pear/Registry.php | 34 + framework/Pear/lib/Horde/Pear/Remote.php | 34 + framework/Pear/lib/Horde/Pear/Rest.php | 60 ++ framework/Pear/package.xml | 114 +++ framework/Pear/test/Horde/Pear/AllTests.php | 45 + framework/Pear/test/Horde/Pear/Autoload.php | 21 + framework/Pear/test/Horde/Pear/Server/RegistryTest.php | 63 ++ framework/Pear/test/Horde/Pear/Server/RestTest.php | 75 ++ framework/Pear/test/Horde/Pear/Server/conf.php | 2 + framework/Pear/test/Horde/Pear/Server/conf.php.dist | 2 + framework/Pear/test/Horde/Pear/TestCase.php | 34 + framework/Pear/test/Horde/Pear/Unit/Package/ContentsTest.php | 42 + framework/Pear/test/Horde/Pear/Unit/RegistryTest.php | 50 + framework/Pear/test/Horde/Pear/Unit/RemoteTest.php | 50 + framework/Pear/test/Horde/Pear/Unit/RestTest.php | 68 ++ framework/Pear/test/Horde/Pear/phpunit.xml | 8 + 17 files changed, 1204 insertions(+), 0 deletions(-) create mode 100644 framework/Pear/COPYING create mode 100644 framework/Pear/lib/Horde/Pear/Registry.php create mode 100644 framework/Pear/lib/Horde/Pear/Remote.php create mode 100644 framework/Pear/lib/Horde/Pear/Rest.php create mode 100644 framework/Pear/package.xml create mode 100644 framework/Pear/test/Horde/Pear/AllTests.php create mode 100644 framework/Pear/test/Horde/Pear/Autoload.php create mode 100644 framework/Pear/test/Horde/Pear/Server/RegistryTest.php create mode 100644 framework/Pear/test/Horde/Pear/Server/RestTest.php create mode 100644 framework/Pear/test/Horde/Pear/Server/conf.php create mode 100644 framework/Pear/test/Horde/Pear/Server/conf.php.dist create mode 100644 framework/Pear/test/Horde/Pear/TestCase.php create mode 100644 framework/Pear/test/Horde/Pear/Unit/Package/ContentsTest.php create mode 100644 framework/Pear/test/Horde/Pear/Unit/RegistryTest.php create mode 100644 framework/Pear/test/Horde/Pear/Unit/RemoteTest.php create mode 100644 framework/Pear/test/Horde/Pear/Unit/RestTest.php create mode 100644 framework/Pear/test/Horde/Pear/phpunit.xml http://git.horde.org/horde-git/-/commit/6a14e085d7adafea3e2295dddfd6293415ad9515 __ commits mailing list Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected]
