The branch "master" has been updated. The following is a summary of the commits.
from: d408839a2fdd7ec131b6ddec44a8782ae3a1793b d900291... Import skoli. ----------------------------------------------------------------------- commit d900291bf7e6be1468116e5806310668122b9095 Author: Jan Schneider <[email protected]> Date: Wed Apr 29 15:52:58 2009 +0200 Import skoli. skoli/LICENSE | 48 ++ skoli/README | 89 +++ skoli/add.php | 44 ++ skoli/classes/create.php | 51 ++ skoli/classes/delete.php | 54 ++ skoli/classes/edit.php | 81 +++ skoli/classes/index.php | 41 ++ skoli/config/conf.xml | 62 ++ skoli/config/prefs.php.dist | 207 ++++++ skoli/config/schools.php.dist | 116 ++++ skoli/data.php | 185 +++++ skoli/docs/CHANGES | 5 + skoli/docs/CREDITS | 17 + skoli/docs/INSTALL | 243 +++++++ skoli/docs/RELEASE_NOTES | 52 ++ skoli/docs/TODO | 15 + skoli/entry.php | 121 ++++ skoli/index.php | 24 + skoli/lib/Block/tree_menu.php | 57 ++ skoli/lib/Driver.php | 153 +++++ skoli/lib/Driver/sql.php | 694 +++++++++++++++++++ skoli/lib/Forms/CreateClass.php | 236 +++++++ skoli/lib/Forms/DeleteClass.php | 82 +++ skoli/lib/Forms/EditClass.php | 176 +++++ skoli/lib/Forms/Entry.php | 184 +++++ skoli/lib/School.php | 288 ++++++++ skoli/lib/Skoli.php | 1083 ++++++++++++++++++++++++++++++ skoli/lib/base.php | 52 ++ skoli/lib/version.php | 1 + skoli/list.php | 165 +++++ skoli/locale/de_DE/LC_MESSAGES/skoli.mo | Bin 0 -> 176332 bytes skoli/locale/de_DE/help.xml | 15 + skoli/locale/en_US/help.xml | 17 + skoli/po/README | 1 + skoli/po/de_DE.po | 997 +++++++++++++++++++++++++++ skoli/po/skoli.pot | 1006 +++++++++++++++++++++++++++ skoli/pref_api.php | 71 ++ skoli/scripts/.htaccess | 1 + skoli/scripts/sql/skoli.sql | 83 +++ skoli/search.php | 184 +++++ skoli/templates/classes/list.php | 35 + skoli/templates/common-header.inc | 38 + skoli/templates/data/export.inc | 34 + skoli/templates/entry/delete.inc | 10 + skoli/templates/list/classes.inc | 48 ++ skoli/templates/list/empty.inc | 3 + skoli/templates/list/footers.inc | 6 + skoli/templates/list/header.inc | 10 + skoli/templates/list/headers.inc | 96 +++ skoli/templates/list/students.inc | 51 ++ skoli/templates/menu.inc | 4 + skoli/templates/panel.inc | 77 +++ skoli/templates/search/criteria.inc | 44 ++ skoli/templates/search/empty.inc | 3 + skoli/templates/search/entries.inc | 27 + skoli/templates/search/footers.inc | 6 + skoli/templates/search/header.inc | 11 + skoli/templates/search/headers.inc | 50 ++ skoli/themes/categoryCSS.php | 36 + skoli/themes/graphics/add.png | Bin 0 -> 3895 bytes skoli/themes/graphics/az.png | Bin 0 -> 117 bytes skoli/themes/graphics/favicon.ico | Bin 0 -> 792 bytes skoli/themes/graphics/minus.png | Bin 0 -> 203 bytes skoli/themes/graphics/plus.png | Bin 0 -> 229 bytes skoli/themes/graphics/redbox_spinner.gif | Bin 0 -> 6820 bytes skoli/themes/graphics/search.png | Bin 0 -> 794 bytes skoli/themes/graphics/skoli.png | Bin 0 -> 3921 bytes skoli/themes/graphics/timetable.png | Bin 0 -> 501 bytes skoli/themes/graphics/za.png | Bin 0 -> 119 bytes skoli/themes/screen.css | 166 +++++ 70 files changed, 7756 insertions(+), 0 deletions(-) create mode 100644 skoli/LICENSE create mode 100644 skoli/README create mode 100644 skoli/add.php create mode 100644 skoli/classes/create.php create mode 100644 skoli/classes/delete.php create mode 100644 skoli/classes/edit.php create mode 100644 skoli/classes/index.php create mode 100644 skoli/config/conf.xml create mode 100644 skoli/config/prefs.php.dist create mode 100644 skoli/config/schools.php.dist create mode 100644 skoli/data.php create mode 100644 skoli/docs/CHANGES create mode 100644 skoli/docs/CREDITS create mode 100644 skoli/docs/INSTALL create mode 100644 skoli/docs/RELEASE_NOTES create mode 100644 skoli/docs/TODO create mode 100644 skoli/entry.php create mode 100644 skoli/index.php create mode 100644 skoli/lib/Block/tree_menu.php create mode 100644 skoli/lib/Driver.php create mode 100644 skoli/lib/Driver/sql.php create mode 100644 skoli/lib/Forms/CreateClass.php create mode 100644 skoli/lib/Forms/DeleteClass.php create mode 100644 skoli/lib/Forms/EditClass.php create mode 100644 skoli/lib/Forms/Entry.php create mode 100644 skoli/lib/School.php create mode 100644 skoli/lib/Skoli.php create mode 100644 skoli/lib/base.php create mode 100644 skoli/lib/version.php create mode 100644 skoli/list.php create mode 100644 skoli/locale/de_DE/LC_MESSAGES/skoli.mo create mode 100644 skoli/locale/de_DE/help.xml create mode 100644 skoli/locale/en_US/help.xml create mode 100644 skoli/po/README create mode 100644 skoli/po/de_DE.po create mode 100644 skoli/po/skoli.pot create mode 100644 skoli/pref_api.php create mode 100755 skoli/scripts/.htaccess create mode 100755 skoli/scripts/sql/skoli.sql create mode 100644 skoli/search.php create mode 100644 skoli/templates/classes/list.php create mode 100644 skoli/templates/common-header.inc create mode 100644 skoli/templates/data/export.inc create mode 100644 skoli/templates/entry/delete.inc create mode 100644 skoli/templates/list/classes.inc create mode 100644 skoli/templates/list/empty.inc create mode 100644 skoli/templates/list/footers.inc create mode 100644 skoli/templates/list/header.inc create mode 100644 skoli/templates/list/headers.inc create mode 100644 skoli/templates/list/students.inc create mode 100644 skoli/templates/menu.inc create mode 100644 skoli/templates/panel.inc create mode 100644 skoli/templates/search/criteria.inc create mode 100644 skoli/templates/search/empty.inc create mode 100644 skoli/templates/search/entries.inc create mode 100644 skoli/templates/search/footers.inc create mode 100644 skoli/templates/search/header.inc create mode 100644 skoli/templates/search/headers.inc create mode 100644 skoli/themes/categoryCSS.php create mode 100644 skoli/themes/graphics/add.png create mode 100644 skoli/themes/graphics/az.png create mode 100644 skoli/themes/graphics/favicon.ico create mode 100644 skoli/themes/graphics/minus.png create mode 100644 skoli/themes/graphics/plus.png create mode 100644 skoli/themes/graphics/redbox_spinner.gif create mode 100644 skoli/themes/graphics/search.png create mode 100644 skoli/themes/graphics/skoli.png create mode 100644 skoli/themes/graphics/timetable.png create mode 100644 skoli/themes/graphics/za.png create mode 100644 skoli/themes/screen.css http://git.horde.org/co.php/skoli/LICENSE?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/README?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/add.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/classes/create.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/classes/delete.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/classes/edit.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/classes/index.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/config/conf.xml?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/config/prefs.php.dist?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/config/schools.php.dist?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/data.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/docs/CHANGES?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/docs/CREDITS?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/docs/INSTALL?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/docs/RELEASE_NOTES?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/docs/TODO?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/entry.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/index.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/Block/tree_menu.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/Driver.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/Driver/sql.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/Forms/CreateClass.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/Forms/DeleteClass.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/Forms/EditClass.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/Forms/Entry.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/School.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/Skoli.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/base.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/lib/version.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/list.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/locale/de_DE/LC_MESSAGES/skoli.mo?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/locale/de_DE/help.xml?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/locale/en_US/help.xml?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/po/README?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/po/de_DE.po?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/po/skoli.pot?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/pref_api.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/scripts/.htaccess?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/scripts/sql/skoli.sql?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/search.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/classes/list.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/common-header.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/data/export.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/entry/delete.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/list/classes.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/list/empty.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/list/footers.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/list/header.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/list/headers.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/list/students.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/menu.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/panel.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/search/criteria.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/search/empty.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/search/entries.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/search/footers.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/search/header.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/templates/search/headers.inc?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/categoryCSS.php?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/add.png?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/az.png?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/favicon.ico?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/minus.png?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/plus.png?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/redbox_spinner.gif?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/search.png?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/skoli.png?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/timetable.png?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/graphics/za.png?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 http://git.horde.org/co.php/skoli/themes/screen.css?rt=horde-hatchery&r=d900291bf7e6be1468116e5806310668122b9095 __ commits mailing list Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected]
