[commits] Horde branch master updated. e64127e4a7aca62a278fcda732a0ae83b9b91b47

Gunnar Wrobel p at rdus.de
Mon Sep 6 10:47:47 UTC 2010


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

from: 87fcd562795bada4ea2101391f3ae1c0b5a90793

f23ea53 Renamed Horde_Element to components.
fdb1af9 Renamed Element to Components within the package.
8ccc70f Element -> Components for the different classes.
85e906a Start using dependency injection.
e64127e Fix unit testing.

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

commit f23ea53c277d5e1f6434722364b5de6ac1fa67ba
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Sep 6 04:57:26 2010 +0200

    Renamed Horde_Element to components.

 components/COPYING                                                |  504 +++++
 components/data/hudson-element-build.xml.template                 |   90 +
 components/data/hudson-element-config.xml.template                |  264 +++
 components/data/hudson-element-phpunit.xml.template               |   25 +
 components/lib/Horde/Element.php                                  |  106 +
 components/lib/Horde/Element/Config.php                           |   53 +
 components/lib/Horde/Element/Config/Cli.php                       |  119 +
 components/lib/Horde/Element/Configs.php                          |  108 +
 components/lib/Horde/Element/Constants.php                        |   42 +
 components/lib/Horde/Element/Exception.php                        |   31 +
 components/lib/Horde/Element/Module.php                           |   39 +
 components/lib/Horde/Element/Module/CiSetup.php                   |  139 ++
 components/lib/Horde/Element/Module/DevPackage.php                |   82 +
 components/lib/Horde/Element/Module/Installer.php                 |  172 ++
 components/lib/Horde/Element/Module/PearPackageXml.php            |  163 ++
 components/lib/Horde/Element/Modules.php                          |  125 +
 components/package.xml                                            |  175 ++
 components/script/horde-element.php                               |    4 +
 components/test/Horde/Element/AllTests.php                        |   50 +
 components/test/Horde/Element/Autoload.php                        |   41 +
 components/test/Horde/Element/Integration/ElementTest.php         |  121 +
 components/test/Horde/Element/StoryTestCase.php                   |  246 ++
 components/test/Horde/Element/Stub/Parser.php                     |   10 +
 components/test/Horde/Element/fixture/simple/lib/New.php          |    1 +
 components/test/Horde/Element/fixture/simple/lib/Second.php       |    1 +
 components/test/Horde/Element/fixture/simple/package.xml          |   66 +
 components/test/Horde/Element/phpunit.xml                         |    8 +
 framework/Element/COPYING                                         |  504 -----
 framework/Element/data/hudson-element-build.xml.template          |   90 -
 framework/Element/data/hudson-element-config.xml.template         |  264 ---
 framework/Element/data/hudson-element-phpunit.xml.template        |   25 -
 framework/Element/lib/Horde/Element.php                           |  106 -
 framework/Element/lib/Horde/Element/Config.php                    |   53 -
 framework/Element/lib/Horde/Element/Config/Cli.php                |  119 -
 framework/Element/lib/Horde/Element/Configs.php                   |  108 -
 framework/Element/lib/Horde/Element/Constants.php                 |   42 -
 framework/Element/lib/Horde/Element/Exception.php                 |   31 -
 framework/Element/lib/Horde/Element/Module.php                    |   39 -
 framework/Element/lib/Horde/Element/Module/CiSetup.php            |  139 --
 framework/Element/lib/Horde/Element/Module/DevPackage.php         |   82 -
 framework/Element/lib/Horde/Element/Module/Installer.php          |  172 --
 framework/Element/lib/Horde/Element/Module/PearPackageXml.php     |  163 --
 framework/Element/lib/Horde/Element/Modules.php                   |  125 -
 framework/Element/package.xml                                     |  175 --
 framework/Element/script/horde-element.php                        |    4 -
 framework/Element/test/Horde/Element/AllTests.php                 |   50 -
 framework/Element/test/Horde/Element/Autoload.php                 |   41 -
 framework/Element/test/Horde/Element/Integration/ElementTest.php  |  121 -
 framework/Element/test/Horde/Element/StoryTestCase.php            |  246 --
 framework/Element/test/Horde/Element/Stub/Parser.php              |   10 -
 framework/Element/test/Horde/Element/fixture/simple/lib/New.php   |    1 -
 .../Element/test/Horde/Element/fixture/simple/lib/Second.php      |    1 -
 framework/Element/test/Horde/Element/fixture/simple/package.xml   |   66 -
 framework/Element/test/Horde/Element/phpunit.xml                  |    8 -
 54 files changed, 2785 insertions(+), 2785 deletions(-)
 create mode 100644 components/COPYING
 create mode 100644 components/data/hudson-element-build.xml.template
 create mode 100644 components/data/hudson-element-config.xml.template
 create mode 100644 components/data/hudson-element-phpunit.xml.template
 create mode 100644 components/lib/Horde/Element.php
 create mode 100644 components/lib/Horde/Element/Config.php
 create mode 100644 components/lib/Horde/Element/Config/Cli.php
 create mode 100644 components/lib/Horde/Element/Configs.php
 create mode 100644 components/lib/Horde/Element/Constants.php
 create mode 100644 components/lib/Horde/Element/Exception.php
 create mode 100644 components/lib/Horde/Element/Module.php
 create mode 100644 components/lib/Horde/Element/Module/CiSetup.php
 create mode 100644 components/lib/Horde/Element/Module/DevPackage.php
 create mode 100644 components/lib/Horde/Element/Module/Installer.php
 create mode 100644 components/lib/Horde/Element/Module/PearPackageXml.php
 create mode 100644 components/lib/Horde/Element/Modules.php
 create mode 100644 components/package.xml
 create mode 100755 components/script/horde-element.php
 create mode 100644 components/test/Horde/Element/AllTests.php
 create mode 100644 components/test/Horde/Element/Autoload.php
 create mode 100644 components/test/Horde/Element/Integration/ElementTest.php
 create mode 100644 components/test/Horde/Element/StoryTestCase.php
 create mode 100644 components/test/Horde/Element/Stub/Parser.php
 create mode 100644 components/test/Horde/Element/fixture/empty/package.xml
 create mode 100644 components/test/Horde/Element/fixture/simple/lib/New.php
 create mode 100644 components/test/Horde/Element/fixture/simple/lib/Second.php
 create mode 100644 components/test/Horde/Element/fixture/simple/package.xml
 create mode 100644 components/test/Horde/Element/phpunit.xml
 delete mode 100644 framework/Element/COPYING
 delete mode 100644 framework/Element/data/hudson-element-build.xml.template
 delete mode 100644 framework/Element/data/hudson-element-config.xml.template
 delete mode 100644 framework/Element/data/hudson-element-phpunit.xml.template
 delete mode 100644 framework/Element/lib/Horde/Element.php
 delete mode 100644 framework/Element/lib/Horde/Element/Config.php
 delete mode 100644 framework/Element/lib/Horde/Element/Config/Cli.php
 delete mode 100644 framework/Element/lib/Horde/Element/Configs.php
 delete mode 100644 framework/Element/lib/Horde/Element/Constants.php
 delete mode 100644 framework/Element/lib/Horde/Element/Exception.php
 delete mode 100644 framework/Element/lib/Horde/Element/Module.php
 delete mode 100644 framework/Element/lib/Horde/Element/Module/CiSetup.php
 delete mode 100644 framework/Element/lib/Horde/Element/Module/DevPackage.php
 delete mode 100644 framework/Element/lib/Horde/Element/Module/Installer.php
 delete mode 100644 framework/Element/lib/Horde/Element/Module/PearPackageXml.php
 delete mode 100644 framework/Element/lib/Horde/Element/Modules.php
 delete mode 100644 framework/Element/package.xml
 delete mode 100755 framework/Element/script/horde-element.php
 delete mode 100644 framework/Element/test/Horde/Element/AllTests.php
 delete mode 100644 framework/Element/test/Horde/Element/Autoload.php
 delete mode 100644 framework/Element/test/Horde/Element/Integration/ElementTest.php
 delete mode 100644 framework/Element/test/Horde/Element/StoryTestCase.php
 delete mode 100644 framework/Element/test/Horde/Element/Stub/Parser.php
 delete mode 100644 framework/Element/test/Horde/Element/fixture/empty/package.xml
 delete mode 100644 framework/Element/test/Horde/Element/fixture/simple/lib/New.php
 delete mode 100644 framework/Element/test/Horde/Element/fixture/simple/lib/Second.php
 delete mode 100644 framework/Element/test/Horde/Element/fixture/simple/package.xml
 delete mode 100644 framework/Element/test/Horde/Element/phpunit.xml

http://git.horde.org/co.php/components/COPYING?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/data/hudson-element-build.xml.template?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/data/hudson-element-config.xml.template?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/data/hudson-element-phpunit.xml.template?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Config.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Config/Cli.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Configs.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Constants.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Exception.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Module.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Module/CiSetup.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Module/DevPackage.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Module/Installer.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Module/PearPackageXml.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/lib/Horde/Element/Modules.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/package.xml?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/script/horde-element.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/AllTests.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/Autoload.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/Integration/ElementTest.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/StoryTestCase.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/Stub/Parser.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/fixture/empty/package.xml?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/fixture/simple/lib/New.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/fixture/simple/lib/Second.php?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/fixture/simple/package.xml?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/co.php/components/test/Horde/Element/phpunit.xml?rt=horde-git&r=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/COPYING?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/data/hudson-element-build.xml.template?rt=horde-git&r1=ef4d2bce52f442f13648de6efd4edaab1fc8e0ef&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/data/hudson-element-config.xml.template?rt=horde-git&r1=93a5bec1827ff8a90bd7e8e5bfd2f654281871be&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/data/hudson-element-phpunit.xml.template?rt=horde-git&r1=dcd2fe1cd82039837dc312e7f4b90fb8fc47b038&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Config.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Config/Cli.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Configs.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Constants.php?rt=horde-git&r1=dcd2fe1cd82039837dc312e7f4b90fb8fc47b038&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Exception.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Module.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Module/CiSetup.php?rt=horde-git&r1=8685d25bf7e000a63fa0032783a0db25e535ca4a&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Module/DevPackage.php?rt=horde-git&r1=9feaaa4794423fe681c2c72c06360bb45d288ec8&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Module/Installer.php?rt=horde-git&r1=421009b48ffdf98b63ff797479c1a0331d163ebc&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Module/PearPackageXml.php?rt=horde-git&r1=d445d770313d290b59e0bdbb771ae2c211aae2f5&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/lib/Horde/Element/Modules.php?rt=horde-git&r1=b2861a78cba958722b201eccbd1354548b7f625e&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/package.xml?rt=horde-git&r1=8685d25bf7e000a63fa0032783a0db25e535ca4a&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/script/horde-element.php?rt=horde-git&r1=b393e7d7480b20a74e3e50411d4fd76b3e706ae9&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/AllTests.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/Autoload.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/Integration/ElementTest.php?rt=horde-git&r1=9feaaa4794423fe681c2c72c06360bb45d288ec8&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/StoryTestCase.php?rt=horde-git&r1=9feaaa4794423fe681c2c72c06360bb45d288ec8&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/Stub/Parser.php?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/fixture/empty/package.xml?rt=horde-git&r1=b2861a78cba958722b201eccbd1354548b7f625e&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/fixture/simple/lib/New.php?rt=horde-git&r1=b2861a78cba958722b201eccbd1354548b7f625e&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/fixture/simple/lib/Second.php?rt=horde-git&r1=b2861a78cba958722b201eccbd1354548b7f625e&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/fixture/simple/package.xml?rt=horde-git&r1=b2861a78cba958722b201eccbd1354548b7f625e&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba
http://git.horde.org/diff.php/framework/Element/test/Horde/Element/phpunit.xml?rt=horde-git&r1=fb8b2d7151aeded0981232c6ffdd0b6c33580507&r2=f23ea53c277d5e1f6434722364b5de6ac1fa67ba

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

commit fdb1af93f3735d7be1f437a7566ff6b17c8cc122
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Sep 6 05:38:50 2010 +0200

    Renamed Element to Components within the package.

 components/data/hudson-component-build.xml.template         |   90 ++++
 components/data/hudson-component-config.xml.template        |  264 +++++++++++
 components/data/hudson-component-phpunit.xml.template       |   25 +
 components/data/hudson-element-build.xml.template           |   90 ----
 components/data/hudson-element-config.xml.template          |  264 -----------
 components/data/hudson-element-phpunit.xml.template         |   25 -
 components/lib/Components.php                               |  106 ++++
 components/lib/Components/Config.php                        |   53 ++
 components/lib/Components/Config/Cli.php                    |  119 +++++
 components/lib/Components/Configs.php                       |  108 +++++
 components/lib/Components/Constants.php                     |   42 ++
 components/lib/Components/Exception.php                     |   31 ++
 components/lib/Components/Module.php                        |   39 ++
 components/lib/Components/Module/CiSetup.php                |  139 ++++++
 components/lib/Components/Module/DevPackage.php             |   82 ++++
 components/lib/Components/Module/Installer.php              |  172 +++++++
 components/lib/Components/Module/PearPackageXml.php         |  163 +++++++
 components/lib/Components/Modules.php                       |  125 +++++
 components/lib/Horde/Element.php                            |  106 ----
 components/lib/Horde/Element/Config.php                     |   53 --
 components/lib/Horde/Element/Config/Cli.php                 |  119 -----
 components/lib/Horde/Element/Configs.php                    |  108 -----
 components/lib/Horde/Element/Constants.php                  |   42 --
 components/lib/Horde/Element/Exception.php                  |   31 --
 components/lib/Horde/Element/Module.php                     |   39 --
 components/lib/Horde/Element/Module/CiSetup.php             |  139 ------
 components/lib/Horde/Element/Module/DevPackage.php          |   82 ----
 components/lib/Horde/Element/Module/Installer.php           |  172 -------
 components/lib/Horde/Element/Module/PearPackageXml.php      |  163 -------
 components/lib/Horde/Element/Modules.php                    |  125 -----
 components/script/horde-components.php                      |    4 +
 components/script/horde-element.php                         |    4 -
 components/test/Components/AllTests.php                     |   50 ++
 components/test/Components/Autoload.php                     |   41 ++
 components/test/Components/Integration/ElementTest.php      |  121 +++++
 components/test/Components/StoryTestCase.php                |  246 ++++++++++
 components/test/Components/Stub/Parser.php                  |   10 +
 components/test/Components/fixture/simple/lib/New.php       |    1 +
 components/test/Components/fixture/simple/lib/Second.php    |    1 +
 components/test/Components/fixture/simple/package.xml       |   66 +++
 components/test/Components/phpunit.xml                      |    8 +
 components/test/Horde/Element/AllTests.php                  |   50 --
 components/test/Horde/Element/Autoload.php                  |   41 --
 components/test/Horde/Element/Integration/ElementTest.php   |  121 -----
 components/test/Horde/Element/StoryTestCase.php             |  246 ----------
 components/test/Horde/Element/Stub/Parser.php               |   10 -
 components/test/Horde/Element/fixture/simple/lib/New.php    |    1 -
 components/test/Horde/Element/fixture/simple/lib/Second.php |    1 -
 components/test/Horde/Element/fixture/simple/package.xml    |   66 ---
 components/test/Horde/Element/phpunit.xml                   |    8 -
 50 files changed, 2106 insertions(+), 2106 deletions(-)
 create mode 100644 components/data/hudson-component-build.xml.template
 create mode 100644 components/data/hudson-component-config.xml.template
 create mode 100644 components/data/hudson-component-phpunit.xml.template
 delete mode 100644 components/data/hudson-element-build.xml.template
 delete mode 100644 components/data/hudson-element-config.xml.template
 delete mode 100644 components/data/hudson-element-phpunit.xml.template
 create mode 100644 components/lib/Components.php
 create mode 100644 components/lib/Components/Config.php
 create mode 100644 components/lib/Components/Config/Cli.php
 create mode 100644 components/lib/Components/Configs.php
 create mode 100644 components/lib/Components/Constants.php
 create mode 100644 components/lib/Components/Exception.php
 create mode 100644 components/lib/Components/Module.php
 create mode 100644 components/lib/Components/Module/CiSetup.php
 create mode 100644 components/lib/Components/Module/DevPackage.php
 create mode 100644 components/lib/Components/Module/Installer.php
 create mode 100644 components/lib/Components/Module/PearPackageXml.php
 create mode 100644 components/lib/Components/Modules.php
 delete mode 100644 components/lib/Horde/Element.php
 delete mode 100644 components/lib/Horde/Element/Config.php
 delete mode 100644 components/lib/Horde/Element/Config/Cli.php
 delete mode 100644 components/lib/Horde/Element/Configs.php
 delete mode 100644 components/lib/Horde/Element/Constants.php
 delete mode 100644 components/lib/Horde/Element/Exception.php
 delete mode 100644 components/lib/Horde/Element/Module.php
 delete mode 100644 components/lib/Horde/Element/Module/CiSetup.php
 delete mode 100644 components/lib/Horde/Element/Module/DevPackage.php
 delete mode 100644 components/lib/Horde/Element/Module/Installer.php
 delete mode 100644 components/lib/Horde/Element/Module/PearPackageXml.php
 delete mode 100644 components/lib/Horde/Element/Modules.php
 create mode 100755 components/script/horde-components.php
 delete mode 100755 components/script/horde-element.php
 create mode 100644 components/test/Components/AllTests.php
 create mode 100644 components/test/Components/Autoload.php
 create mode 100644 components/test/Components/Integration/ElementTest.php
 create mode 100644 components/test/Components/StoryTestCase.php
 create mode 100644 components/test/Components/Stub/Parser.php
 create mode 100644 components/test/Components/fixture/empty/package.xml
 create mode 100644 components/test/Components/fixture/simple/lib/New.php
 create mode 100644 components/test/Components/fixture/simple/lib/Second.php
 create mode 100644 components/test/Components/fixture/simple/package.xml
 create mode 100644 components/test/Components/phpunit.xml
 delete mode 100644 components/test/Horde/Element/AllTests.php
 delete mode 100644 components/test/Horde/Element/Autoload.php
 delete mode 100644 components/test/Horde/Element/Integration/ElementTest.php
 delete mode 100644 components/test/Horde/Element/StoryTestCase.php
 delete mode 100644 components/test/Horde/Element/Stub/Parser.php
 delete mode 100644 components/test/Horde/Element/fixture/empty/package.xml
 delete mode 100644 components/test/Horde/Element/fixture/simple/lib/New.php
 delete mode 100644 components/test/Horde/Element/fixture/simple/lib/Second.php
 delete mode 100644 components/test/Horde/Element/fixture/simple/package.xml
 delete mode 100644 components/test/Horde/Element/phpunit.xml

http://git.horde.org/co.php/components/data/hudson-component-build.xml.template?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/data/hudson-component-config.xml.template?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/data/hudson-component-phpunit.xml.template?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/data/hudson-element-build.xml.template?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/data/hudson-element-config.xml.template?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/data/hudson-element-phpunit.xml.template?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Config.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Config/Cli.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Configs.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Constants.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Exception.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Module.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Module/CiSetup.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Module/DevPackage.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Module/Installer.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Module/PearPackageXml.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/lib/Components/Modules.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Config.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Config/Cli.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Configs.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Constants.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Exception.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Module.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Module/CiSetup.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Module/DevPackage.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Module/Installer.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Module/PearPackageXml.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/lib/Horde/Element/Modules.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/script/horde-components.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/script/horde-element.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/AllTests.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/Autoload.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/Integration/ElementTest.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/StoryTestCase.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/Stub/Parser.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/fixture/empty/package.xml?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/fixture/simple/lib/New.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/fixture/simple/lib/Second.php?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/fixture/simple/package.xml?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/co.php/components/test/Components/phpunit.xml?rt=horde-git&r=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/AllTests.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/Autoload.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/Integration/ElementTest.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/StoryTestCase.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/Stub/Parser.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/fixture/empty/package.xml?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/fixture/simple/lib/New.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/fixture/simple/lib/Second.php?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/fixture/simple/package.xml?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122
http://git.horde.org/diff.php/components/test/Horde/Element/phpunit.xml?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=fdb1af93f3735d7be1f437a7566ff6b17c8cc122

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

commit 8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Sep 6 08:38:58 2010 +0200

    Element -> Components for the different classes.

 components/lib/Components.php                             |   36 ++--
 components/lib/Components/Config.php                      |   18 +-
 components/lib/Components/Config/Cli.php                  |   22 ++--
 components/lib/Components/Configs.php                     |   24 ++--
 components/lib/Components/Constants.php                   |   16 +-
 components/lib/Components/Exception.php                   |   16 +-
 components/lib/Components/Module.php                      |   18 +-
 components/lib/Components/Module/CiSetup.php              |   32 ++--
 components/lib/Components/Module/DevPackage.php           |   20 +-
 components/lib/Components/Module/Installer.php            |   21 +--
 components/lib/Components/Module/PearPackageXml.php       |   22 ++--
 components/lib/Components/Modules.php                     |   20 +-
 components/package.xml                                    |   96 +++++-----
 components/script/horde-components.php                    |    2 +-
 components/test/Components/AllTests.php                   |   20 +-
 components/test/Components/Autoload.php                   |    4 +-
 components/test/Components/Integration/ComponentsTest.php |  121 +++++++++++++
 components/test/Components/Integration/ElementTest.php    |  121 -------------
 components/test/Components/StoryTestCase.php              |   36 ++--
 components/test/Components/Stub/Parser.php                |    2 +-
 components/test/Components/fixture/simple/package.xml     |    2 +-
 21 files changed, 335 insertions(+), 334 deletions(-)
 create mode 100644 components/test/Components/Integration/ComponentsTest.php
 delete mode 100644 components/test/Components/Integration/ElementTest.php

http://git.horde.org/diff.php/components/lib/Components.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Config.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Config/Cli.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Configs.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Constants.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Exception.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Module.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Module/CiSetup.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Module/DevPackage.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Module/Installer.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Module/PearPackageXml.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/lib/Components/Modules.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/package.xml?rt=horde-git&r1=f23ea53c277d5e1f6434722364b5de6ac1fa67ba&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/script/horde-components.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/test/Components/AllTests.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/test/Components/Autoload.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/co.php/components/test/Components/Integration/ComponentsTest.php?rt=horde-git&r=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/test/Components/Integration/ElementTest.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/test/Components/StoryTestCase.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/test/Components/Stub/Parser.php?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8
http://git.horde.org/diff.php/components/test/Components/fixture/simple/package.xml?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8

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

commit 85e906aa9fbdda32d13afd098e4c22ff0a30963d
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Sep 6 10:04:39 2010 +0200

    Start using dependency injection.

 components/lib/Components.php                       |   14 ++-
 components/lib/Components/Dependencies.php          |   38 +++++
 components/lib/Components/Dependencies/Injector.php |   54 +++++++
 components/lib/Components/Module.php                |   23 +++-
 components/lib/Components/Module/Base.php           |   49 ++++++
 components/lib/Components/Module/Installer.php      |  132 +++-------------
 components/lib/Components/Modules.php               |   16 ++-
 components/lib/Components/Runner/Installer.php      |  159 +++++++++++++++++++
 components/package.xml                              |  102 +++++++-----
 9 files changed, 430 insertions(+), 157 deletions(-)
 create mode 100644 components/lib/Components/Dependencies.php
 create mode 100644 components/lib/Components/Dependencies/Injector.php
 create mode 100644 components/lib/Components/Module/Base.php
 create mode 100644 components/lib/Components/Runner/Installer.php

http://git.horde.org/diff.php/components/lib/Components.php?rt=horde-git&r1=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8&r2=85e906aa9fbdda32d13afd098e4c22ff0a30963d
http://git.horde.org/co.php/components/lib/Components/Dependencies.php?rt=horde-git&r=85e906aa9fbdda32d13afd098e4c22ff0a30963d
http://git.horde.org/co.php/components/lib/Components/Dependencies/Injector.php?rt=horde-git&r=85e906aa9fbdda32d13afd098e4c22ff0a30963d
http://git.horde.org/diff.php/components/lib/Components/Module.php?rt=horde-git&r1=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8&r2=85e906aa9fbdda32d13afd098e4c22ff0a30963d
http://git.horde.org/co.php/components/lib/Components/Module/Base.php?rt=horde-git&r=85e906aa9fbdda32d13afd098e4c22ff0a30963d
http://git.horde.org/diff.php/components/lib/Components/Module/Installer.php?rt=horde-git&r1=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8&r2=85e906aa9fbdda32d13afd098e4c22ff0a30963d
http://git.horde.org/diff.php/components/lib/Components/Modules.php?rt=horde-git&r1=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8&r2=85e906aa9fbdda32d13afd098e4c22ff0a30963d
http://git.horde.org/co.php/components/lib/Components/Runner/Installer.php?rt=horde-git&r=85e906aa9fbdda32d13afd098e4c22ff0a30963d
http://git.horde.org/diff.php/components/package.xml?rt=horde-git&r1=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8&r2=85e906aa9fbdda32d13afd098e4c22ff0a30963d

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

commit e64127e4a7aca62a278fcda732a0ae83b9b91b47
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Sep 6 12:41:15 2010 +0200

    Fix unit testing.

 components/test/Components/Integration/ComponentsTest.php |    2 +-
 components/test/Components/StoryTestCase.php              |    3 +--
 components/test/Components/phpunit.xml                    |    2 +-
 3 files changed, 3 insertions(+), 4 deletions(-)

http://git.horde.org/diff.php/components/test/Components/Integration/ComponentsTest.php?rt=horde-git&r1=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8&r2=e64127e4a7aca62a278fcda732a0ae83b9b91b47
http://git.horde.org/diff.php/components/test/Components/StoryTestCase.php?rt=horde-git&r1=8ccc70ff19b1f0670baec9e42f1c22f0ee443bc8&r2=e64127e4a7aca62a278fcda732a0ae83b9b91b47
http://git.horde.org/diff.php/components/test/Components/phpunit.xml?rt=horde-git&r1=fdb1af93f3735d7be1f437a7566ff6b17c8cc122&r2=e64127e4a7aca62a278fcda732a0ae83b9b91b47




More information about the commits mailing list