The branch "master" has been updated. The following is a summary of the commits.
from: e83dd163011d2f176731e076e4729592b5d704a9 0a58487... Reorder the application to get a structure that makes sense within a PEAR package. 7ca2848... Adapt to structural changes and pull in the functionality to deliver content from rampage.php. ef5cea6... Continued reordering the package for a PEAR release. 27dd4c2... Add a very basic login view. 820cdad... Rename to TODO. 2554550... Fixes to make the PEAR based installation work (at least partially). 64bcdd0... Ignore all *.local.php files. ----------------------------------------------------------------------- commit 0a58487bbd120b9803f2613ca872ce69bec0519b Author: Gunnar Wrobel <[email protected]> Date: Wed Apr 29 05:35:08 2009 +0200 Reorder the application to get a structure that makes sense within a PEAR package. koward/app/controllers/ApplicationController.php | 40 -- koward/app/controllers/CheckController.php | 59 --- koward/app/controllers/IndexController.php | 21 - koward/app/controllers/ObjectController.php | 273 ------------- 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 | 15 - koward/app/views/Object/edit.html.php | 4 - koward/app/views/Object/listall.html.php | 40 -- koward/app/views/Object/search.html.php | 40 -- koward/app/views/Object/view.html.php | 13 - koward/app/views/shared/_header.html.php | 36 -- koward/app/views/shared/_menu.html.php | 5 - koward/lib/Cli.php | 227 ---------- koward/lib/Exception.php | 30 -- koward/lib/Form/Actions.php | 63 --- koward/lib/Form/Object.php | 250 ----------- koward/lib/Form/Search.php | 100 ----- koward/lib/Koward/Cli.php | 227 ++++++++++ koward/lib/Koward/Controller/Application.php | 40 ++ koward/lib/Koward/Controller/CheckController.php | 56 +++ koward/lib/Koward/Controller/IndexController.php | 18 + koward/lib/Koward/Controller/ObjectController.php | 273 +++++++++++++ koward/lib/Koward/Exception.php | 30 ++ koward/lib/Koward/Form/Actions.php | 63 +++ koward/lib/Koward/Form/Object.php | 250 +++++++++++ koward/lib/Koward/Form/Search.php | 100 +++++ koward/lib/Koward/Test.php | 173 ++++++++ koward/lib/Koward/Test/AllTests.php | 78 ++++ koward/lib/Koward/Test/Renderer.php | 44 ++ koward/lib/Koward/Test/Server/UserTest.php | 43 ++ koward/lib/Koward/Test/Template/scenario.html.dist | 13 + koward/lib/Koward/Test/Template/scenario_header.html.dist | 6 + koward/lib/Koward/Test/Template/scenarios.html.dist | 54 +++ koward/lib/Koward/Test/Template/step.html.dist | 6 + koward/lib/Koward/View/Check/run.html.php | 10 + koward/lib/Koward/View/Check/show.html.php | 9 + koward/lib/Koward/View/Index/index.html.php | 6 + koward/lib/Koward/View/Modify/add.html.php | 6 + koward/lib/Koward/View/Object/delete.html.php | 15 + koward/lib/Koward/View/Object/edit.html.php | 4 + koward/lib/Koward/View/Object/listall.html.php | 40 ++ koward/lib/Koward/View/Object/search.html.php | 40 ++ koward/lib/Koward/View/Object/view.html.php | 13 + koward/lib/Koward/View/shared/_header.html.php | 36 ++ koward/lib/Koward/View/shared/_menu.html.php | 5 + 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 - 56 files changed, 1658 insertions(+), 1664 deletions(-) delete mode 100644 koward/app/controllers/ApplicationController.php delete mode 100644 koward/app/controllers/CheckController.php delete mode 100644 koward/app/controllers/IndexController.php delete mode 100644 koward/app/controllers/ObjectController.php delete mode 100644 koward/app/views/Check/run.html.php delete mode 100644 koward/app/views/Check/show.html.php delete mode 100644 koward/app/views/Index/index.html.php delete mode 100644 koward/app/views/Modify/add.html.php delete mode 100644 koward/app/views/Object/delete.html.php delete mode 100644 koward/app/views/Object/edit.html.php delete mode 100644 koward/app/views/Object/listall.html.php delete mode 100644 koward/app/views/Object/search.html.php delete mode 100644 koward/app/views/Object/view.html.php delete mode 100644 koward/app/views/shared/_header.html.php delete mode 100644 koward/app/views/shared/_menu.html.php delete mode 100644 koward/lib/Cli.php delete mode 100644 koward/lib/Exception.php delete mode 100644 koward/lib/Form/Actions.php delete mode 100644 koward/lib/Form/Object.php delete mode 100644 koward/lib/Form/Search.php create mode 100644 koward/lib/Koward/Cli.php create mode 100644 koward/lib/Koward/Controller/Application.php create mode 100644 koward/lib/Koward/Controller/CheckController.php create mode 100644 koward/lib/Koward/Controller/IndexController.php create mode 100644 koward/lib/Koward/Controller/ObjectController.php create mode 100644 koward/lib/Koward/Exception.php create mode 100644 koward/lib/Koward/Form/Actions.php create mode 100644 koward/lib/Koward/Form/Object.php create mode 100644 koward/lib/Koward/Form/Search.php create mode 100644 koward/lib/Koward/Test.php create mode 100644 koward/lib/Koward/Test/AllTests.php create mode 100644 koward/lib/Koward/Test/Renderer.php create mode 100644 koward/lib/Koward/Test/Server/UserTest.php create mode 100644 koward/lib/Koward/Test/Template/scenario.html.dist create mode 100644 koward/lib/Koward/Test/Template/scenario_header.html.dist create mode 100644 koward/lib/Koward/Test/Template/scenarios.html.dist create mode 100644 koward/lib/Koward/Test/Template/step.html.dist create mode 100644 koward/lib/Koward/View/Check/run.html.php create mode 100644 koward/lib/Koward/View/Check/show.html.php create mode 100644 koward/lib/Koward/View/Index/index.html.php create mode 100644 koward/lib/Koward/View/Modify/add.html.php create mode 100644 koward/lib/Koward/View/Object/delete.html.php create mode 100644 koward/lib/Koward/View/Object/edit.html.php create mode 100644 koward/lib/Koward/View/Object/listall.html.php create mode 100644 koward/lib/Koward/View/Object/search.html.php create mode 100644 koward/lib/Koward/View/Object/view.html.php create mode 100644 koward/lib/Koward/View/shared/_header.html.php create mode 100644 koward/lib/Koward/View/shared/_menu.html.php delete mode 100644 koward/lib/Test.php delete mode 100644 koward/lib/Test/AllTests.php delete mode 100644 koward/lib/Test/Renderer.php delete mode 100644 koward/lib/Test/Server/UserTest.php delete mode 100644 koward/lib/Test/Template/scenario.html.dist delete mode 100644 koward/lib/Test/Template/scenario_header.html.dist delete mode 100644 koward/lib/Test/Template/scenarios.html.dist delete mode 100644 koward/lib/Test/Template/step.html.dist http://git.horde.org/diff.php/koward/app/controllers/ApplicationController.php?rt=horde-hatchery&r1=652cc8d27b275009c4f7ded0312013c5326f406d&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/controllers/CheckController.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/controllers/IndexController.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/controllers/ObjectController.php?rt=horde-hatchery&r1=9d8691e3c6ad7ca18c1656a84baa2087d37723c6&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Check/run.html.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Check/show.html.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Index/index.html.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Modify/add.html.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Object/delete.html.php?rt=horde-hatchery&r1=d5037a1d4d2cae8bacb3e24b093b5d28d3865403&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Object/edit.html.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Object/listall.html.php?rt=horde-hatchery&r1=c9451ffb3323dc2c46e691c30c77a68d83c2e7fc&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Object/search.html.php?rt=horde-hatchery&r1=652cc8d27b275009c4f7ded0312013c5326f406d&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/Object/view.html.php?rt=horde-hatchery&r1=9a22711e505b5e8117afd3450c9ad366bb3e2544&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/shared/_header.html.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/app/views/shared/_menu.html.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Cli.php?rt=horde-hatchery&r1=aa9d47e45c7bd67ef272ffa0b77652f822536055&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Exception.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Form/Actions.php?rt=horde-hatchery&r1=ec59f3878a9c02a1464e649b5fc0c48d0e93064b&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Form/Object.php?rt=horde-hatchery&r1=b4c56ba982b2ecedbaa1f66066862b608398ed25&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Form/Search.php?rt=horde-hatchery&r1=652cc8d27b275009c4f7ded0312013c5326f406d&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Cli.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Controller/Application.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Controller/CheckController.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Controller/IndexController.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Controller/ObjectController.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Exception.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Form/Actions.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Form/Object.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Form/Search.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Test.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Test/AllTests.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Test/Renderer.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Test/Server/UserTest.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Test/Template/scenario.html.dist?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Test/Template/scenario_header.html.dist?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Test/Template/scenarios.html.dist?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/Test/Template/step.html.dist?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Check/run.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Check/show.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Index/index.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Modify/add.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Object/delete.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Object/edit.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Object/listall.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Object/search.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/Object/view.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/shared/_header.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/co.php/koward/lib/Koward/View/shared/_menu.html.php?rt=horde-hatchery&r=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Test.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Test/AllTests.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Test/Renderer.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Test/Server/UserTest.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Test/Template/scenario.html.dist?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Test/Template/scenario_header.html.dist?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Test/Template/scenarios.html.dist?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b http://git.horde.org/diff.php/koward/lib/Test/Template/step.html.dist?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=0a58487bbd120b9803f2613ca872ce69bec0519b ----------------------------------------------------------------------- commit 7ca284870168f302cc6e6aa37e31ea9b3e91ddfc Author: Gunnar Wrobel <[email protected]> Date: Wed Apr 29 05:35:42 2009 +0200 Adapt to structural changes and pull in the functionality to deliver content from rampage.php. koward/lib/Koward.php | 75 ++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 74 insertions(+), 1 deletions(-) http://git.horde.org/diff.php/koward/lib/Koward.php?rt=horde-hatchery&r1=1897d3885eff2118980f35c25b4d634b1a4a6f18&r2=7ca284870168f302cc6e6aa37e31ea9b3e91ddfc ----------------------------------------------------------------------- commit ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 Author: Gunnar Wrobel <[email protected]> Date: Wed Apr 29 07:39:40 2009 +0200 Continued reordering the package for a PEAR release. koward/config/.gitignore | 1 - koward/config/attributes.php | 26 ---- koward/config/conf.php | 3 - koward/config/labels.php | 30 ----- koward/config/objects.php | 210 ------------------------------- koward/config/order.php | 17 --- koward/config/routes.php | 12 -- koward/config/search.php | 15 --- koward/config/visible.php | 59 --------- koward/test/AllTests.php | 83 ------------- koward/test/Koward/AllTests.php | 83 +++++++++++++ koward/test/Koward/KowardTest.php | 95 ++++++++++++++ koward/test/Koward/TestInit.php | 25 ++++ koward/test/KowardTest.php | 95 -------------- koward/test/TestInit.php | 25 ---- koward/themes/graphics/favicon.ico | Bin 1406 -> 0 bytes koward/themes/graphics/query.png | Bin 223 -> 0 bytes koward/themes/kolab/screen.css | 212 -------------------------------- koward/themes/screen.css | 3 - koward/www/config/.gitignore | 1 + koward/www/config/attributes.php | 26 ++++ koward/www/config/conf.php | 3 + koward/www/config/labels.php | 30 +++++ koward/www/config/objects.php | 210 +++++++++++++++++++++++++++++++ koward/www/config/order.php | 17 +++ koward/www/config/routes.php | 12 ++ koward/www/config/search.php | 15 +++ koward/www/config/visible.php | 59 +++++++++ koward/www/themes/graphics/favicon.ico | Bin 0 -> 1406 bytes koward/www/themes/graphics/query.png | Bin 0 -> 223 bytes koward/www/themes/kolab/screen.css | 212 ++++++++++++++++++++++++++++++++ koward/www/themes/screen.css | 3 + 32 files changed, 791 insertions(+), 791 deletions(-) delete mode 100644 koward/config/.gitignore delete mode 100644 koward/config/attributes.php delete mode 100644 koward/config/conf.php delete mode 100644 koward/config/labels.php delete mode 100644 koward/config/objects.php delete mode 100644 koward/config/order.php delete mode 100644 koward/config/routes.php delete mode 100644 koward/config/search.php delete mode 100644 koward/config/visible.php delete mode 100644 koward/test/AllTests.php create mode 100644 koward/test/Koward/AllTests.php create mode 100644 koward/test/Koward/KowardTest.php create mode 100644 koward/test/Koward/TestInit.php delete mode 100644 koward/test/KowardTest.php delete mode 100644 koward/test/TestInit.php delete mode 100644 koward/themes/graphics/favicon.ico delete mode 100644 koward/themes/graphics/query.png delete mode 100644 koward/themes/kolab/screen.css delete mode 100644 koward/themes/screen.css create mode 100644 koward/www/config/.gitignore create mode 100644 koward/www/config/attributes.php create mode 100644 koward/www/config/conf.php create mode 100644 koward/www/config/labels.php create mode 100644 koward/www/config/objects.php create mode 100644 koward/www/config/order.php create mode 100644 koward/www/config/routes.php create mode 100644 koward/www/config/search.php create mode 100644 koward/www/config/visible.php create mode 100644 koward/www/themes/graphics/favicon.ico create mode 100644 koward/www/themes/graphics/query.png create mode 100644 koward/www/themes/kolab/screen.css create mode 100644 koward/www/themes/screen.css http://git.horde.org/diff.php/koward/config/.gitignore?rt=horde-hatchery&r1=d862b32cbe5c3b21d451c59a17b9963d6187f1fd&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/config/attributes.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/config/conf.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/config/labels.php?rt=horde-hatchery&r1=92270b54d128e7f08de36893058bfc8f5dbf190b&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/config/objects.php?rt=horde-hatchery&r1=a892f1c2bbf105af9043b6cc1896d82b9fec0d0c&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/config/order.php?rt=horde-hatchery&r1=92270b54d128e7f08de36893058bfc8f5dbf190b&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/config/routes.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/config/search.php?rt=horde-hatchery&r1=652cc8d27b275009c4f7ded0312013c5326f406d&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/config/visible.php?rt=horde-hatchery&r1=a892f1c2bbf105af9043b6cc1896d82b9fec0d0c&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/test/AllTests.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/test/Koward/AllTests.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/test/Koward/KowardTest.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/test/Koward/TestInit.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/test/KowardTest.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/test/TestInit.php?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/themes/graphics/favicon.ico?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/themes/graphics/query.png?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/themes/kolab/screen.css?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/diff.php/koward/themes/screen.css?rt=horde-hatchery&r1=44c8a8057751b04f85484299007a43bdbb3930cb&r2=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/.gitignore?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/attributes.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/conf.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/labels.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/objects.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/order.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/routes.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/search.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/config/visible.php?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/themes/graphics/favicon.ico?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/themes/graphics/query.png?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/themes/kolab/screen.css?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 http://git.horde.org/co.php/koward/www/themes/screen.css?rt=horde-hatchery&r=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314 ----------------------------------------------------------------------- commit 27dd4c29c0202ce3fe76e4a9d18ff6aa7ddeb132 Author: Gunnar Wrobel <[email protected]> Date: Wed Apr 29 07:40:07 2009 +0200 Add a very basic login view. koward/lib/Koward/Controller/LoginController.php | 53 ++++++++++++++++++++++ koward/lib/Koward/View/Login/login.html.php | 28 +++++++++++ 2 files changed, 81 insertions(+), 0 deletions(-) create mode 100644 koward/lib/Koward/Controller/LoginController.php create mode 100644 koward/lib/Koward/View/Login/login.html.php http://git.horde.org/co.php/koward/lib/Koward/Controller/LoginController.php?rt=horde-hatchery&r=27dd4c29c0202ce3fe76e4a9d18ff6aa7ddeb132 http://git.horde.org/co.php/koward/lib/Koward/View/Login/login.html.php?rt=horde-hatchery&r=27dd4c29c0202ce3fe76e4a9d18ff6aa7ddeb132 ----------------------------------------------------------------------- commit 820cdad0c5caed5951627c2296b203fbf9c1d522 Author: Gunnar Wrobel <[email protected]> Date: Wed Apr 29 07:40:19 2009 +0200 Rename to TODO. koward/doc/QUESTIONS.txt | 5 ----- koward/doc/TODO | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) delete mode 100644 koward/doc/QUESTIONS.txt create mode 100644 koward/doc/TODO http://git.horde.org/diff.php/koward/doc/QUESTIONS.txt?rt=horde-hatchery&r1=2f784ca08157c16a993845a9375e8b7ac6e44f37&r2=820cdad0c5caed5951627c2296b203fbf9c1d522 http://git.horde.org/co.php/koward/doc/TODO?rt=horde-hatchery&r=820cdad0c5caed5951627c2296b203fbf9c1d522 ----------------------------------------------------------------------- commit 2554550bbb07e1bb2d2c37221b164f97a379c409 Author: Gunnar Wrobel <[email protected]> Date: Wed Apr 29 07:40:55 2009 +0200 Fixes to make the PEAR based installation work (at least partially). koward/lib/Koward.php | 42 +++++++++++++++----- koward/lib/Koward/Controller/Application.php | 12 +++++- koward/lib/Koward/Controller/ObjectController.php | 9 +--- koward/lib/Koward/Form/Actions.php | 2 +- koward/lib/Koward/Form/Object.php | 2 +- koward/lib/Koward/Form/Search.php | 2 +- 6 files changed, 48 insertions(+), 21 deletions(-) http://git.horde.org/diff.php/koward/lib/Koward.php?rt=horde-hatchery&r1=7ca284870168f302cc6e6aa37e31ea9b3e91ddfc&r2=2554550bbb07e1bb2d2c37221b164f97a379c409 http://git.horde.org/diff.php/koward/lib/Koward/Controller/Application.php?rt=horde-hatchery&r1=0a58487bbd120b9803f2613ca872ce69bec0519b&r2=2554550bbb07e1bb2d2c37221b164f97a379c409 http://git.horde.org/diff.php/koward/lib/Koward/Controller/ObjectController.php?rt=horde-hatchery&r1=0a58487bbd120b9803f2613ca872ce69bec0519b&r2=2554550bbb07e1bb2d2c37221b164f97a379c409 http://git.horde.org/diff.php/koward/lib/Koward/Form/Actions.php?rt=horde-hatchery&r1=0a58487bbd120b9803f2613ca872ce69bec0519b&r2=2554550bbb07e1bb2d2c37221b164f97a379c409 http://git.horde.org/diff.php/koward/lib/Koward/Form/Object.php?rt=horde-hatchery&r1=0a58487bbd120b9803f2613ca872ce69bec0519b&r2=2554550bbb07e1bb2d2c37221b164f97a379c409 http://git.horde.org/diff.php/koward/lib/Koward/Form/Search.php?rt=horde-hatchery&r1=0a58487bbd120b9803f2613ca872ce69bec0519b&r2=2554550bbb07e1bb2d2c37221b164f97a379c409 ----------------------------------------------------------------------- commit 64bcdd0879cf5a69859231a1db399485d0079c9a Author: Gunnar Wrobel <[email protected]> Date: Wed Apr 29 07:41:49 2009 +0200 Ignore all *.local.php files. koward/www/config/.gitignore | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) http://git.horde.org/diff.php/koward/www/config/.gitignore?rt=horde-hatchery&r1=ef5cea689b8a5ecb12b46b9be5b03a4e7d09d314&r2=64bcdd0879cf5a69859231a1db399485d0079c9a __ commits mailing list Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected]
