[commits] Horde branch master updated. a6e50ed6d17f606444e6bb7d4130628d36005d52
Chuck Hagenbuch
chuck at horde.org
Sat Apr 24 15:56:22 UTC 2010
The branch "master" has been updated.
The following is a summary of the commits.
from: 192aca48e2a327b0e17e3465da5b22d9b7b9bfef
3da6402 __toString can't throw an exception or PHP dies, so wrap registry calls in try/catch
a6e50ed First try converting Luxor to H4-git
-----------------------------------------------------------------------
commit 3da64025c42e5fd0358801491857b293415f3652
Author: Chuck Hagenbuch <chuck at bluestatedigital.com>
Date: Fri Apr 23 21:53:03 2010 -0400
__toString can't throw an exception or PHP dies, so wrap registry calls in try/catch
framework/Core/lib/Horde/Core/Notification/Status.php | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
http://git.horde.org/diff.php/framework/Core/lib/Horde/Core/Notification/Status.php?rt=horde-git&r1=5dfb1dc4140eb2996f0251c6335ccdb05028f93c&r2=3da64025c42e5fd0358801491857b293415f3652
-----------------------------------------------------------------------
commit a6e50ed6d17f606444e6bb7d4130628d36005d52
Author: Chuck Hagenbuch <chuck at bluestatedigital.com>
Date: Sat Apr 24 12:00:04 2010 -0400
First try converting Luxor to H4-git
luxor/.htaccess | 6 +
luxor/COPYING | 280 +++++++++++++++
luxor/README | 11 +
luxor/bin/.htaccess | 1 +
luxor/bin/indexer | 149 ++++++++
luxor/config/.htaccess | 1 +
luxor/config/conf.xml | 43 +++
luxor/config/languages.php.dist | 286 ++++++++++++++++
luxor/config/mime_drivers.php.dist | 37 ++
luxor/config/sources.php.dist | 31 ++
luxor/docs/CHANGES | 23 ++
luxor/docs/CREDITS | 22 ++
luxor/docs/INSTALL | 175 ++++++++++
luxor/docs/TODO | 14 +
luxor/index.php | 11 +
luxor/js/show_var.js | 17 +
luxor/lib/.htaccess | 1 +
luxor/lib/Application.php | 63 ++++
luxor/lib/Driver.php | 47 +++
luxor/lib/Driver/sql.php | 564 +++++++++++++++++++++++++++++++
luxor/lib/Files.php | 35 ++
luxor/lib/Files/plain.php | 172 ++++++++++
luxor/lib/Lang.php | 86 +++++
luxor/lib/Lang/Generic.php | 198 +++++++++++
luxor/lib/Luxor.php | 460 +++++++++++++++++++++++++
luxor/lib/SimpleParse.php | 178 ++++++++++
luxor/lib/Tagger.php | 104 ++++++
luxor/locale/de_DE/LC_MESSAGES/luxor.mo | Bin 0 -> 158650 bytes
luxor/locale/es_ES/LC_MESSAGES/luxor.mo | Bin 0 -> 150790 bytes
luxor/locale/ro_RO/LC_MESSAGES/luxor.mo | Bin 0 -> 18669 bytes
luxor/po/.htaccess | 1 +
luxor/po/README | 1 +
luxor/po/de_DE.po | 181 ++++++++++
luxor/po/es_ES.po | 169 +++++++++
luxor/po/luxor.pot | 170 ++++++++++
luxor/po/ro_RO.po | 215 ++++++++++++
luxor/scripts/.htaccess | 1 +
luxor/scripts/sql/luxor.sql | 57 +++
luxor/search.php | 64 ++++
luxor/source.php | 157 +++++++++
luxor/symbol.php | 86 +++++
luxor/templates/.htaccess | 1 +
luxor/templates/common-header.inc | 29 ++
luxor/templates/directory.html.php | 20 ++
luxor/templates/headerbar.inc | 23 ++
luxor/templates/menu.inc | 20 ++
luxor/templates/symbol.html.php | 29 ++
luxor/themes/graphics/favicon.ico | Bin 0 -> 1150 bytes
luxor/themes/graphics/folder.png | Bin 0 -> 479 bytes
luxor/themes/graphics/luxor.png | Bin 0 -> 508 bytes
luxor/themes/graphics/parent.png | Bin 0 -> 428 bytes
luxor/themes/screen.css | 60 ++++
52 files changed, 4299 insertions(+), 0 deletions(-)
create mode 100644 luxor/.htaccess
create mode 100644 luxor/COPYING
create mode 100644 luxor/README
create mode 100644 luxor/bin/.htaccess
create mode 100755 luxor/bin/indexer
create mode 100644 luxor/config/.htaccess
create mode 100644 luxor/config/conf.xml
create mode 100644 luxor/config/languages.php.dist
create mode 100644 luxor/config/mime_drivers.php.dist
create mode 100644 luxor/config/sources.php.dist
create mode 100644 luxor/docs/CHANGES
create mode 100644 luxor/docs/CREDITS
create mode 100644 luxor/docs/INSTALL
create mode 100644 luxor/docs/TODO
create mode 100644 luxor/index.php
create mode 100644 luxor/js/show_var.js
create mode 100644 luxor/lib/.htaccess
create mode 100644 luxor/lib/Application.php
create mode 100644 luxor/lib/Driver.php
create mode 100644 luxor/lib/Driver/sql.php
create mode 100644 luxor/lib/Files.php
create mode 100644 luxor/lib/Files/plain.php
create mode 100644 luxor/lib/Lang.php
create mode 100644 luxor/lib/Lang/Generic.php
create mode 100644 luxor/lib/Luxor.php
create mode 100644 luxor/lib/SimpleParse.php
create mode 100644 luxor/lib/Tagger.php
create mode 100644 luxor/locale/de_DE/LC_MESSAGES/luxor.mo
create mode 100644 luxor/locale/es_ES/LC_MESSAGES/luxor.mo
create mode 100644 luxor/locale/ro_RO/LC_MESSAGES/luxor.mo
create mode 100644 luxor/po/.htaccess
create mode 100644 luxor/po/README
create mode 100644 luxor/po/de_DE.po
create mode 100644 luxor/po/es_ES.po
create mode 100644 luxor/po/luxor.pot
create mode 100644 luxor/po/ro_RO.po
create mode 100644 luxor/scripts/.htaccess
create mode 100644 luxor/scripts/sql/luxor.sql
create mode 100644 luxor/search.php
create mode 100644 luxor/source.php
create mode 100644 luxor/symbol.php
create mode 100644 luxor/templates/.htaccess
create mode 100644 luxor/templates/common-header.inc
create mode 100644 luxor/templates/directory.html.php
create mode 100644 luxor/templates/headerbar.inc
create mode 100644 luxor/templates/menu.inc
create mode 100644 luxor/templates/symbol.html.php
create mode 100644 luxor/themes/graphics/favicon.ico
create mode 100644 luxor/themes/graphics/folder.png
create mode 100644 luxor/themes/graphics/luxor.png
create mode 100644 luxor/themes/graphics/parent.png
create mode 100644 luxor/themes/screen.css
http://git.horde.org/co.php/luxor/.htaccess?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/COPYING?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/README?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/bin/.htaccess?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/bin/indexer?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/config/.htaccess?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/config/conf.xml?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/config/languages.php.dist?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/config/mime_drivers.php.dist?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/config/sources.php.dist?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/docs/CHANGES?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/docs/CREDITS?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/docs/INSTALL?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/docs/TODO?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/index.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/js/show_var.js?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/.htaccess?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Application.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Driver.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Driver/sql.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Files.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Files/plain.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Lang.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Lang/Generic.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Luxor.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/SimpleParse.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/lib/Tagger.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/locale/de_DE/LC_MESSAGES/luxor.mo?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/locale/es_ES/LC_MESSAGES/luxor.mo?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/locale/ro_RO/LC_MESSAGES/luxor.mo?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/po/.htaccess?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/po/README?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/po/de_DE.po?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/po/es_ES.po?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/po/luxor.pot?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/po/ro_RO.po?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/scripts/.htaccess?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/scripts/sql/luxor.sql?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/search.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/source.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/symbol.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/templates/.htaccess?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/templates/common-header.inc?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/templates/directory.html.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/templates/headerbar.inc?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/templates/menu.inc?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/templates/symbol.html.php?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/themes/graphics/favicon.ico?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/themes/graphics/folder.png?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/themes/graphics/luxor.png?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/themes/graphics/parent.png?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
http://git.horde.org/co.php/luxor/themes/screen.css?rt=horde-git&r=a6e50ed6d17f606444e6bb7d4130628d36005d52
More information about the commits
mailing list