[commits] Horde-Hatchery branch master updated.

Gunnar Wrobel p at rdus.de
Fri Apr 3 10:12:20 UTC 2009


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

from: 962c8e3f8a30e4d3bf62845b3dc099be9fcd6f32

2f784ca... Initial import of koward.

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

commit 2f784ca08157c16a993845a9375e8b7ac6e44f37
Author: Gunnar Wrobel <p at rdus.de>
Date:   Fri Apr 3 12:16:35 2009 +0200

    Initial import of koward.
    
    This application should replace the kolab-webadmin in the long run. It
    is primarily intended as an LDAP database manager based on the
    Kolab_Server library.

 koward/app/controllers/ApplicationController.php   |   40 ++++
 koward/app/controllers/CheckController.php         |   59 ++++++
 koward/app/controllers/IndexController.php         |   21 ++
 koward/app/controllers/ObjectController.php        |  144 +++++++++++++
 koward/app/views/Check/run.html.php                |   10 +
 koward/app/views/Check/show.html.php               |    9 +
 koward/app/views/Index/index.html.php              |    6 +
 koward/app/views/Modify/add.html.php               |    6 +
 koward/app/views/Object/delete.html.php            |    2 +
 koward/app/views/Object/edit.html.php              |    4 +
 koward/app/views/Object/listall.html.php           |   37 ++++
 koward/app/views/Object/view.html.php              |    3 +
 koward/app/views/shared/_header.html.php           |   36 ++++
 koward/app/views/shared/_menu.html.php             |    5 +
 koward/bin/bootstrap.php                           |   15 ++
 koward/config/attributes.php                       |   26 +++
 koward/config/conf.php                             |    3 +
 koward/config/objects.php                          |   44 ++++
 koward/config/routes.php                           |   12 +
 koward/doc/QUESTIONS.txt                           |    5 +
 koward/lib/Exception.php                           |   30 +++
 koward/lib/Form/Object.php                         |  118 +++++++++++
 koward/lib/Koward.php                              |   87 ++++++++
 koward/lib/Test.php                                |  173 ++++++++++++++++
 koward/lib/Test/AllTests.php                       |   78 +++++++
 koward/lib/Test/Renderer.php                       |   44 ++++
 koward/lib/Test/Server/UserTest.php                |   43 ++++
 koward/lib/Test/Template/scenario.html.dist        |   13 ++
 koward/lib/Test/Template/scenario_header.html.dist |    6 +
 koward/lib/Test/Template/scenarios.html.dist       |   54 +++++
 koward/lib/Test/Template/step.html.dist            |    6 +
 koward/test/AllTests.php                           |   83 ++++++++
 koward/test/KowardTest.php                         |   95 +++++++++
 koward/test/TestInit.php                           |   25 +++
 koward/themes/graphics/favicon.ico                 |  Bin 0 -> 1406 bytes
 koward/themes/graphics/query.png                   |  Bin 0 -> 223 bytes
 koward/themes/kolab/screen.css                     |  212 ++++++++++++++++++++
 37 files changed, 1554 insertions(+), 0 deletions(-)
 create mode 100644 koward/app/controllers/ApplicationController.php
 create mode 100644 koward/app/controllers/CheckController.php
 create mode 100644 koward/app/controllers/IndexController.php
 create mode 100644 koward/app/controllers/ObjectController.php
 create mode 100644 koward/app/views/Check/run.html.php
 create mode 100644 koward/app/views/Check/show.html.php
 create mode 100644 koward/app/views/Index/index.html.php
 create mode 100644 koward/app/views/Modify/add.html.php
 create mode 100644 koward/app/views/Object/delete.html.php
 create mode 100644 koward/app/views/Object/edit.html.php
 create mode 100644 koward/app/views/Object/listall.html.php
 create mode 100644 koward/app/views/Object/view.html.php
 create mode 100644 koward/app/views/shared/_header.html.php
 create mode 100644 koward/app/views/shared/_menu.html.php
 create mode 100644 koward/bin/bootstrap.php
 create mode 100644 koward/config/attributes.php
 create mode 100644 koward/config/conf.php
 create mode 100644 koward/config/objects.php
 create mode 100644 koward/config/routes.php
 create mode 100644 koward/doc/QUESTIONS.txt
 create mode 100644 koward/lib/Exception.php
 create mode 100644 koward/lib/Form/Object.php
 create mode 100644 koward/lib/Koward.php
 create mode 100644 koward/lib/Test.php
 create mode 100644 koward/lib/Test/AllTests.php
 create mode 100644 koward/lib/Test/Renderer.php
 create mode 100644 koward/lib/Test/Server/UserTest.php
 create mode 100644 koward/lib/Test/Template/scenario.html.dist
 create mode 100644 koward/lib/Test/Template/scenario_header.html.dist
 create mode 100644 koward/lib/Test/Template/scenarios.html.dist
 create mode 100644 koward/lib/Test/Template/step.html.dist
 create mode 100644 koward/test/AllTests.php
 create mode 100644 koward/test/KowardTest.php
 create mode 100644 koward/test/TestInit.php
 create mode 100644 koward/themes/graphics/favicon.ico
 create mode 100644 koward/themes/graphics/query.png
 create mode 100644 koward/themes/kolab/screen.css

http://git.horde.org/co.php/koward/app/controllers/ApplicationController.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/controllers/CheckController.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/controllers/IndexController.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/controllers/ObjectController.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/Check/run.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/Check/show.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/Index/index.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/Modify/add.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/Object/delete.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/Object/edit.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/Object/listall.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/Object/view.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/shared/_header.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/app/views/shared/_menu.html.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/bin/bootstrap.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/config/attributes.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/config/conf.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/config/objects.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/config/routes.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/doc/QUESTIONS.txt?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Exception.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Form/Object.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Koward.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Test.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Test/AllTests.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Test/Renderer.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Test/Server/UserTest.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Test/Template/scenario.html.dist?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Test/Template/scenario_header.html.dist?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Test/Template/scenarios.html.dist?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/lib/Test/Template/step.html.dist?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/test/AllTests.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/test/KowardTest.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/test/TestInit.php?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/themes/graphics/favicon.ico?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/themes/graphics/query.png?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37
http://git.horde.org/co.php/koward/themes/kolab/screen.css?rt=horde-hatchery&r=2f784ca08157c16a993845a9375e8b7ac6e44f37




More information about the commits mailing list