[commits] Horde branch master updated. 413405d0e327265fc040114808380c4711010d0f
Jan Schneider
jan at horde.org
Thu Aug 4 08:40:53 UTC 2011
The branch "master" has been updated.
The following is a summary of the commits.
from: 12cdfbb80894d46f4ef5c4fa055d7f351a9d8775
8602f9f phpdoc
34c9469 Add notes and middlenames attributes to Facebook driver.
8548328 Not needed.
40cb6ac Rename Agora_Messages to Agora_Driver to better match other applications.
db81138 Initial driver factory and exception class.
96334ed phpdoc.
f905beb Add migration scripts for Agora.
72ca463 Fix ban form submit URL.
192a0a6 No need to specify encoding and extension. These are the defaults.
8a6b532 Remove left over from row highlighting. It was removed years ago.
21f55df This is Agora.
0352eee Fix forums block.
52d22e6 Use factory and convert to Horde_Db at the same time.
e861e41 Fix locale permissions.
be41c3b These files are already included through Horde_Form.
b704f31 Really fix file permissions.
413405d Already logged by Horde_Db.
-----------------------------------------------------------------------
commit 8602f9f3233da067f58d5952b87e2daecba2bd5f
Author: Jan Schneider <jan at horde.org>
Date: Thu Aug 4 10:22:53 2011 +0200
phpdoc
framework/Core/lib/Horde/Registry.php | 27 +++++++++++++--------------
1 files changed, 13 insertions(+), 14 deletions(-)
http://git.horde.org/horde-git/-/commit/8602f9f3233da067f58d5952b87e2daecba2bd5f
-----------------------------------------------------------------------
commit 34c94692d13f93456359e12a36e8348288c81378
Author: Jan Schneider <jan at horde.org>
Date: Thu Aug 4 10:23:32 2011 +0200
Add notes and middlenames attributes to Facebook driver.
Per docs, email should be used instead of proxied_email, but neither work, so
comment it out. Add outcommented website attribute too, which doesn't work
either despite being documented.
turba/config/backends.php | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/34c94692d13f93456359e12a36e8348288c81378
-----------------------------------------------------------------------
commit 85483288654f6fb123f60b306831b1aed5173414
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Sun Jul 10 17:31:43 2011 +0300
Not needed.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/lib/version.php | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
delete mode 100644 agora/lib/version.php
http://git.horde.org/horde-git/-/commit/85483288654f6fb123f60b306831b1aed5173414
-----------------------------------------------------------------------
commit 40cb6ac5064ab938e11aeb5fec8e8fa25c0e975f
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Sun Jul 10 17:37:10 2011 +0300
Rename Agora_Messages to Agora_Driver to better match other applications.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/ban.php | 2 +-
agora/deleteforum.php | 2 +-
agora/editforum.php | 2 +-
agora/forums.php | 2 +-
agora/lib/Agora.php | 2 +-
agora/lib/Api.php | 48 +-
agora/lib/Application.php | 6 +-
agora/lib/Block/Forums.php | 4 +-
agora/lib/Block/Thread.php | 6 +-
agora/lib/Block/Threads.php | 6 +-
agora/lib/Comments.php | 4 +-
agora/lib/Driver.php | 2342 ++++++++++++++++++++++++++++++++++++++
agora/lib/Driver/SplitSql.php | 300 +++++
agora/lib/Driver/Sql.php | 298 +++++
agora/lib/Form/Search.php | 2 +-
agora/lib/Messages.php | 2341 -------------------------------------
agora/lib/Messages/split_sql.php | 300 -----
agora/lib/Messages/sql.php | 298 -----
agora/messages/abuse.php | 4 +-
agora/messages/delete.php | 4 +-
agora/messages/edit.php | 2 +-
agora/messages/index.php | 4 +-
agora/messages/lock.php | 4 +-
agora/messages/merge.php | 4 +-
agora/messages/move.php | 4 +-
agora/messages/split.php | 4 +-
agora/moderate.php | 2 +-
agora/moderators.php | 2 +-
agora/owner.php | 2 +-
agora/rss/index.php | 2 +-
agora/rss/messages.php | 2 +-
agora/rss/threads.php | 6 +-
agora/scripts/phorum2agora.php | 2 +-
agora/search.php | 2 +-
agora/threads.php | 4 +-
35 files changed, 3010 insertions(+), 3009 deletions(-)
create mode 100644 agora/lib/Driver.php
create mode 100644 agora/lib/Driver/SplitSql.php
create mode 100644 agora/lib/Driver/Sql.php
delete mode 100644 agora/lib/Messages.php
delete mode 100644 agora/lib/Messages/split_sql.php
delete mode 100644 agora/lib/Messages/sql.php
http://git.horde.org/horde-git/-/commit/40cb6ac5064ab938e11aeb5fec8e8fa25c0e975f
-----------------------------------------------------------------------
commit db81138f327efe6d3a2d491152a6b419616316db
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Sun Jul 10 17:38:50 2011 +0300
Initial driver factory and exception class.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/lib/Exception.php | 15 ++++++++
agora/lib/Factory/Driver.php | 83 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 98 insertions(+), 0 deletions(-)
create mode 100644 agora/lib/Exception.php
create mode 100644 agora/lib/Factory/Driver.php
http://git.horde.org/horde-git/-/commit/db81138f327efe6d3a2d491152a6b419616316db
-----------------------------------------------------------------------
commit 96334ed248e5fa5462d9c57c9941268670f61ce5
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Sun Jul 10 17:46:35 2011 +0300
phpdoc.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/lib/Factory/Driver.php | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
http://git.horde.org/horde-git/-/commit/96334ed248e5fa5462d9c57c9941268670f61ce5
-----------------------------------------------------------------------
commit f905beb0d09aede2650121bb5c8dfc5331079d00
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Tue Jul 19 12:18:21 2011 +0300
Add migration scripts for Agora.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/migration/1_agora_base_tables.php | 109 ++++++++
agora/migration/2_agora_upgrade_autoincrement.php | 48 ++++
agora/scripts/sql/agora.mysql.sql | 65 -----
agora/scripts/sql/agora.sql | 65 -----
agora/scripts/upgrades/2007-02-04_modifystamp.sql | 3 -
agora/scripts/upgrades/2007-09-23_last_message.php | 79 ------
agora/scripts/upgrades/2007-09-23_last_message.sql | 6 -
agora/scripts/upgrades/2008-10-26_add_distribution_address.sql | 1 -
8 files changed, 157 insertions(+), 219 deletions(-)
create mode 100644 agora/migration/1_agora_base_tables.php
create mode 100644 agora/migration/2_agora_upgrade_autoincrement.php
delete mode 100644 agora/scripts/sql/agora.mysql.sql
delete mode 100644 agora/scripts/sql/agora.sql
delete mode 100644 agora/scripts/upgrades/2007-02-04_modifystamp.sql
delete mode 100644 agora/scripts/upgrades/2007-09-23_last_message.php
delete mode 100644 agora/scripts/upgrades/2007-09-23_last_message.sql
delete mode 100644 agora/scripts/upgrades/2008-10-26_add_distribution_address.sql
http://git.horde.org/horde-git/-/commit/f905beb0d09aede2650121bb5c8dfc5331079d00
-----------------------------------------------------------------------
commit 72ca4631442073948c397bd62bd4ab51c68aba59
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Thu Jul 21 10:22:45 2011 +0300
Fix ban form submit URL.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/ban.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/72ca4631442073948c397bd62bd4ab51c68aba59
-----------------------------------------------------------------------
commit 192a0a6aa8666460918d351d694fb2162470ff02
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Thu Jul 21 13:56:25 2011 +0300
No need to specify encoding and extension. These are the defaults.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/ban.php | 2 +-
agora/deleteforum.php | 2 +-
agora/editforum.php | 2 +-
agora/forums.php | 2 +-
agora/lib/Block/Forums.php | 2 +-
agora/lib/Block/Thread.php | 2 +-
agora/lib/Block/Threads.php | 2 +-
agora/lib/Comments.php | 2 +-
agora/lib/Driver.php | 2 +-
agora/lib/View.php | 3 +--
agora/messages/abuse.php | 2 +-
agora/messages/delete.php | 2 +-
agora/messages/edit.php | 2 +-
agora/messages/index.php | 8 ++++----
agora/messages/lock.php | 2 +-
agora/messages/merge.php | 2 +-
agora/messages/move.php | 2 +-
agora/messages/split.php | 2 +-
agora/moderate.php | 4 ++--
agora/moderators.php | 2 +-
agora/owner.php | 2 +-
agora/search.php | 2 +-
agora/threads.php | 2 +-
23 files changed, 27 insertions(+), 28 deletions(-)
http://git.horde.org/horde-git/-/commit/192a0a6aa8666460918d351d694fb2162470ff02
-----------------------------------------------------------------------
commit 8a6b532cffb35c38242b2e4217b3df6396be55a7
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Thu Jul 21 18:23:47 2011 +0300
Remove left over from row highlighting. It was removed years ago.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/templates/block/thread.html.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
http://git.horde.org/horde-git/-/commit/8a6b532cffb35c38242b2e4217b3df6396be55a7
-----------------------------------------------------------------------
commit 21f55df563507e89274bc862dd27191627e89639
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Thu Jul 21 21:53:45 2011 +0300
This is Agora.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/lib/View.php | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/21f55df563507e89274bc862dd27191627e89639
-----------------------------------------------------------------------
commit 0352eeede197567e49d2b0fd2bb9e5191fad3ed3
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Thu Jul 21 21:55:58 2011 +0300
Fix forums block.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/lib/Block/Forums.php | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
http://git.horde.org/horde-git/-/commit/0352eeede197567e49d2b0fd2bb9e5191fad3ed3
-----------------------------------------------------------------------
commit 52d22e69b9d98df64bd8450a9c389b53d7e5c6f6
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Thu Jul 21 22:40:22 2011 +0300
Use factory and convert to Horde_Db at the same time.
I still think Horde_Db needs selectAssoc() badly which would work
on more than two columns. I spent hours trying to figure out how
to refactor some code to use indexed arrays.
Anyway most of the code except for API is tested and should work.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/ban.php | 2 +-
agora/deleteforum.php | 12 +-
agora/editforum.php | 30 +-
agora/forums.php | 2 +-
agora/lib/Agora.php | 13 +-
agora/lib/Api.php | 51 +-
agora/lib/Application.php | 8 +-
agora/lib/Block/Forums.php | 16 +-
agora/lib/Block/Thread.php | 14 +-
agora/lib/Block/Threads.php | 14 +-
agora/lib/Comments.php | 8 +-
agora/lib/Driver.php | 873 +++++++++++++++-----------------
agora/lib/Driver/SplitSql.php | 48 ++-
agora/lib/Driver/Sql.php | 48 ++-
agora/lib/Form/Search.php | 2 +-
agora/messages/abuse.php | 2 +-
agora/messages/delete.php | 2 +-
agora/messages/edit.php | 4 +-
agora/messages/index.php | 6 +-
agora/messages/lock.php | 2 +-
agora/messages/merge.php | 11 +-
agora/messages/move.php | 2 +-
agora/messages/split.php | 4 +-
agora/moderate.php | 2 +-
agora/moderators.php | 12 +-
agora/owner.php | 2 +-
agora/rss/index.php | 8 +-
agora/rss/messages.php | 8 +-
agora/rss/threads.php | 10 +-
agora/scripts/phorum2agora.php | 2 +-
agora/search.php | 2 +-
agora/templates/block/forums.html.php | 10 +-
agora/templates/block/threads.html.php | 2 +-
agora/templates/moderators.html.php | 2 +-
agora/threads.php | 2 +-
35 files changed, 608 insertions(+), 628 deletions(-)
http://git.horde.org/horde-git/-/commit/52d22e69b9d98df64bd8450a9c389b53d7e5c6f6
-----------------------------------------------------------------------
commit e861e413f5ef898f80e264b4aa053fd5e6765073
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Thu Jul 21 22:52:34 2011 +0300
Fix locale permissions.
Signed-off-by: Jan Schneider <jan at horde.org>
0 files changed, 0 insertions(+), 0 deletions(-)
mode change 100755 => 100644 agora/locale/.htaccess
http://git.horde.org/horde-git/-/commit/e861e413f5ef898f80e264b4aa053fd5e6765073
-----------------------------------------------------------------------
commit be41c3b2f2d15d6701195afbec5a8c4e7aed8182
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Sun Jul 24 11:31:05 2011 +0300
These files are already included through Horde_Form.
Signed-off-by: Jan Schneider <jan at horde.org>
agora/messages/index.php | 2 --
agora/moderate.php | 1 -
agora/moderators.php | 1 -
3 files changed, 0 insertions(+), 4 deletions(-)
http://git.horde.org/horde-git/-/commit/be41c3b2f2d15d6701195afbec5a8c4e7aed8182
-----------------------------------------------------------------------
commit b704f315d22fedb738e221b794b4185dadab88d0
Author: Jan Schneider <jan at horde.org>
Date: Thu Aug 4 10:33:39 2011 +0200
Really fix file permissions.
agora/locale/es/LC_MESSAGES/agora.mo | Bin 86263 -> 86263 bytes
agora/locale/fi/LC_MESSAGES/agora.mo | Bin 86190 -> 86190 bytes
agora/locale/fr/LC_MESSAGES/agora.mo | Bin 57961 -> 57961 bytes
agora/locale/hu/LC_MESSAGES/agora.mo | Bin 167859 -> 167859 bytes
agora/locale/it/LC_MESSAGES/agora.mo | Bin 155272 -> 155272 bytes
agora/locale/ja/LC_MESSAGES/agora.mo | Bin 89900 -> 89900 bytes
agora/locale/lt/LC_MESSAGES/agora.mo | Bin 82873 -> 82873 bytes
agora/locale/ro/LC_MESSAGES/agora.mo | Bin 18785 -> 18785 bytes
agora/locale/zh_TW/LC_MESSAGES/agora.mo | Bin 140346 -> 140346 bytes
9 files changed, 0 insertions(+), 0 deletions(-)
mode change 100755 => 100644 agora/locale/es/LC_MESSAGES/agora.mo
mode change 100755 => 100644 agora/locale/fi/LC_MESSAGES/agora.mo
mode change 100755 => 100644 agora/locale/fr/LC_MESSAGES/agora.mo
mode change 100755 => 100644 agora/locale/hu/LC_MESSAGES/agora.mo
mode change 100755 => 100644 agora/locale/it/LC_MESSAGES/agora.mo
mode change 100755 => 100644 agora/locale/ja/LC_MESSAGES/agora.mo
mode change 100755 => 100644 agora/locale/lt/LC_MESSAGES/agora.mo
mode change 100755 => 100644 agora/locale/ro/LC_MESSAGES/agora.mo
mode change 100755 => 100644 agora/locale/zh_TW/LC_MESSAGES/agora.mo
http://git.horde.org/horde-git/-/commit/b704f315d22fedb738e221b794b4185dadab88d0
-----------------------------------------------------------------------
commit 413405d0e327265fc040114808380c4711010d0f
Author: Vilius Å umskas <vilius at lnk.lt>
Date: Wed Aug 3 13:59:43 2011 +0300
Already logged by Horde_Db.
Bug: #10408
Signed-off-by: Jan Schneider <jan at horde.org>
passwd/lib/Driver/Sql.php | 2 --
passwd/lib/Driver/Vpopmail.php | 2 --
2 files changed, 0 insertions(+), 4 deletions(-)
http://git.horde.org/horde-git/-/commit/413405d0e327265fc040114808380c4711010d0f
More information about the commits
mailing list