[commits] Horde branch master updated. bdfcd7426db63f8ebfcf6e395d3a3cbc26c01cd8
Gunnar Wrobel
p at rdus.de
Sun Feb 20 17:28:29 UTC 2011
The branch "master" has been updated.
The following is a summary of the commits.
from: 60f1db28befa778bc6678e94cf8311b092449308
cd83990 Update TODO.
842bcc4 Bug #9535: components script produces duplicate data_dir tasks
b289199 Remove the "--packagexml" option that prints the new package.xml. Rather add an "--action=ACTION" option that also allows a diff output.
bdfcd74 Started adding a release module. Renamed "DevPackage" to "Snapshot".
-----------------------------------------------------------------------
commit cd839902979a3fe8f5af473bd33b83bb9756b959
Author: Gunnar Wrobel <p at rdus.de>
Date: Sun Feb 20 18:04:43 2011 +0100
Update TODO.
components/TODO | 20 +++++++++++++-------
1 files changed, 13 insertions(+), 7 deletions(-)
http://git.horde.org/horde-git/-/commit/cd839902979a3fe8f5af473bd33b83bb9756b959
-----------------------------------------------------------------------
commit 842bcc4044cce2fecb7ebd7aa2a9487f21e8a757
Author: Gunnar Wrobel <p at rdus.de>
Date: Sun Feb 20 18:09:46 2011 +0100
Bug #9535: components script produces duplicate data_dir tasks
The PackageFileManager keeps a record of tasks and they won't get lost
even when reseting the contents of a package before regenerating the
file list ... *but* you have to be in the directory of the package for
that to work - which is visible from a glob() call somewhere deep down
in the code. Argh....
components/TODO | 2 --
components/lib/Components/Pear/Factory.php | 10 +++++++---
components/lib/Components/Pear/Package/Contents.php | 3 ---
3 files changed, 7 insertions(+), 8 deletions(-)
http://git.horde.org/horde-git/-/commit/842bcc4044cce2fecb7ebd7aa2a9487f21e8a757
Fatal error: Uncaught exception 'Horde_Http_Exception' with message 'Problem with http://dev.horde.org/horde/rpc.php: fopen(http://dev.horde.org/horde/rpc.php): failed to open stream: HTTP request failed! ' in /usr/local/horde/web/dev.horde.org/horde-git/framework/Http/lib/Horde/Http/Request/Fopen.php:93
Stack trace:
#0 /usr/local/horde/web/dev.horde.org/horde-git/framework/Http/lib/Horde/Http/Client.php(184): Horde_Http_Request_Fopen->send()
#1 /usr/local/horde/web/dev.horde.org/horde-git/framework/Http/lib/Horde/Http/Client.php(107): Horde_Http_Client->request('POST', 'http://dev.hord...', '<?xml version="...', Array)
#2 /usr/local/horde/web/dev.horde.org/horde-git/framework/Rpc/lib/Horde/Rpc/Xmlrpc.php(104): Horde_Http_Client->post('http://dev.hord...', '<?xml version="...', Array)
#3 [internal function]: Horde_Rpc_Xmlrpc::request('http://dev.hord...', 'tickets.addComm...', Object(Horde_Http_Client), Array)
#4 /usr/local/horde/web/dev.horde.org/horde-git/framework/Rpc/lib/Horde/Rpc.php(227): call_user_func(Array, 'http in /usr/local/horde/web/dev.horde.org/horde-git/framework/Http/lib/Horde/Http/Request/Fopen.php on line 93
-----------------------------------------------------------------------
commit b28919900b47b81b6c63531e5c57708444e7316b
Author: Gunnar Wrobel <p at rdus.de>
Date: Sun Feb 20 18:16:25 2011 +0100
Remove the "--packagexml" option that prints the new package.xml. Rather add an "--action=ACTION" option that also allows a diff output.
When updating the package.xml you can now add the option "--action=ACTION" that will default to "update". This will rewrite the package.xml immediately. For checking what would be updated you can run something like "horde-components -u -A diff framework/Core" now. For printing the whole package.xml as with "-p" before you must run "horde-components -u -A print framework/Core".
components/lib/Components/Module/PearPackageXml.php | 16 +-
components/lib/Components/Pear/Package.php | 38 ++++-
components/lib/Components/Runner/PearPackageXml.php | 5 +-
.../Integration/Components/Module/PearPackageXmlTest.php | 24 +--
components/test/Components/StoryTestCase.php | 35 ++--
5 files changed, 71 insertions(+), 47 deletions(-)
http://git.horde.org/horde-git/-/commit/b28919900b47b81b6c63531e5c57708444e7316b
-----------------------------------------------------------------------
commit bdfcd7426db63f8ebfcf6e395d3a3cbc26c01cd8
Author: Gunnar Wrobel <p at rdus.de>
Date: Sun Feb 20 18:27:34 2011 +0100
Started adding a release module. Renamed "DevPackage" to "Snapshot".
components/lib/Components/Dependencies.php | 11 +-
components/lib/Components/Dependencies/Injector.php | 16 +-
components/lib/Components/Module/DevPackage.php | 73 ----
components/lib/Components/Module/Release.php | 63 +++
components/lib/Components/Module/Snapshot.php | 73 ++++
components/lib/Components/Pear/Package.php | 34 ++
components/lib/Components/Runner/DevPackage.php | 96 -----
components/lib/Components/Runner/Release.php | 88 ++++
components/lib/Components/Runner/Snapshot.php | 96 +++++
components/package.xml | 28 +-
.../Components/Integration/Components/Module/DevPackageTest.php | 68 ---
.../test/Components/Integration/Components/Module/ReleaseTest.php | 68 +++
.../Components/Integration/Components/Module/SnapshotTest.php | 68 +++
components/test/Components/Integration/ComponentsTest.php | 2 +-
components/test/Components/StoryTestCase.php | 38 ++
15 files changed, 570 insertions(+), 252 deletions(-)
delete mode 100644 components/lib/Components/Module/DevPackage.php
create mode 100644 components/lib/Components/Module/Release.php
create mode 100644 components/lib/Components/Module/Snapshot.php
delete mode 100644 components/lib/Components/Runner/DevPackage.php
create mode 100644 components/lib/Components/Runner/Release.php
create mode 100644 components/lib/Components/Runner/Snapshot.php
delete mode 100644 components/test/Components/Integration/Components/Module/DevPackageTest.php
create mode 100644 components/test/Components/Integration/Components/Module/ReleaseTest.php
create mode 100644 components/test/Components/Integration/Components/Module/SnapshotTest.php
http://git.horde.org/horde-git/-/commit/bdfcd7426db63f8ebfcf6e395d3a3cbc26c01cd8
More information about the commits
mailing list