[commits] Horde branch master updated. 0c3941982f223b87e86c7748c518382f71a433b0

Jan Schneider jan at horde.org
Fri Mar 19 17:06:27 UTC 2010


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

from: 86846d96ad9064fec8bde556f7dcd105afc50cd4

cea0283 Library, not class.
423a06b Make Horde_History an abstract class. Add Horde_History_Exception. phpdoc
4b160ee Implement Iterator, ArrayAccess, Countable interfaces.
e9bbdca Use History's iterators, catch exceptions.
d940daa Add Log.php.
0c39419 Fix installing individual packages.

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

commit cea02837c6e8a4ad84f94eb035edc9b69d354194
Author: Jan Schneider <jan at horde.org>
Date:   Fri Mar 19 13:17:41 2010 +0100

    Library, not class.

 framework/Alarm/lib/Horde/Alarm/Exception.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/framework/Alarm/lib/Horde/Alarm/Exception.php?rt=horde-git&r1=a07b57e1c5c7c951321a6c89f06f2682d5cb08c6&r2=cea02837c6e8a4ad84f94eb035edc9b69d354194

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

commit 423a06bffd54aa7e96ab31f31afeb76a10d4a82a
Author: Jan Schneider <jan at horde.org>
Date:   Fri Mar 19 16:24:54 2010 +0100

    Make Horde_History an abstract class.
    Add Horde_History_Exception.
    phpdoc

 framework/History/lib/Horde/History.php                |  121 +++++++---------
 framework/History/lib/Horde/History/Exception.php      |   16 ++
 framework/History/lib/Horde/History/Factory.php        |   54 ++++---
 framework/History/lib/Horde/History/Mock.php           |   51 +++----
 framework/History/lib/Horde/History/Sql.php            |   83 +++++------
 framework/History/lib/Horde/HistoryObject.php          |    2 +-
 framework/History/test/Horde/History/InterfaceTest.php |   63 +++-----
 7 files changed, 180 insertions(+), 210 deletions(-)
 create mode 100644 framework/History/lib/Horde/History/Exception.php

http://git.horde.org/diff.php/framework/History/lib/Horde/History.php?rt=horde-git&r1=33eb7243328cac82e4f43fbc1060a9c089d7efb6&r2=423a06bffd54aa7e96ab31f31afeb76a10d4a82a
http://git.horde.org/co.php/framework/History/lib/Horde/History/Exception.php?rt=horde-git&r=423a06bffd54aa7e96ab31f31afeb76a10d4a82a
http://git.horde.org/diff.php/framework/History/lib/Horde/History/Factory.php?rt=horde-git&r1=1a310b2de34193b3f984e4506d87b32de412a65e&r2=423a06bffd54aa7e96ab31f31afeb76a10d4a82a
http://git.horde.org/diff.php/framework/History/lib/Horde/History/Mock.php?rt=horde-git&r1=1a310b2de34193b3f984e4506d87b32de412a65e&r2=423a06bffd54aa7e96ab31f31afeb76a10d4a82a
http://git.horde.org/diff.php/framework/History/lib/Horde/History/Sql.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=423a06bffd54aa7e96ab31f31afeb76a10d4a82a
http://git.horde.org/diff.php/framework/History/lib/Horde/HistoryObject.php?rt=horde-git&r1=1a310b2de34193b3f984e4506d87b32de412a65e&r2=423a06bffd54aa7e96ab31f31afeb76a10d4a82a
http://git.horde.org/diff.php/framework/History/test/Horde/History/InterfaceTest.php?rt=horde-git&r1=48933a992a6162dfa5724e084f0c54ee8224b928&r2=423a06bffd54aa7e96ab31f31afeb76a10d4a82a

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

commit 4b160ee19bbc07163c5919b33b8dab56d02f6f05
Author: Jan Schneider <jan at horde.org>
Date:   Fri Mar 19 17:01:56 2010 +0100

    Implement Iterator, ArrayAccess, Countable interfaces.

 framework/History/lib/Horde/History.php                |   42 +++---
 framework/History/lib/Horde/History/Log.php            |  108 +++++++++++++++
 framework/History/lib/Horde/History/Mock.php           |   33 ++---
 framework/History/lib/Horde/History/Sql.php            |   33 ++---
 framework/History/lib/Horde/HistoryObject.php          |   63 ---------
 framework/History/test/Horde/History/InterfaceTest.php |  115 ++++++++--------
 6 files changed, 215 insertions(+), 179 deletions(-)
 create mode 100644 framework/History/lib/Horde/History/Log.php
 delete mode 100644 framework/History/lib/Horde/HistoryObject.php

http://git.horde.org/diff.php/framework/History/lib/Horde/History.php?rt=horde-git&r1=423a06bffd54aa7e96ab31f31afeb76a10d4a82a&r2=4b160ee19bbc07163c5919b33b8dab56d02f6f05
http://git.horde.org/co.php/framework/History/lib/Horde/History/Log.php?rt=horde-git&r=4b160ee19bbc07163c5919b33b8dab56d02f6f05
http://git.horde.org/diff.php/framework/History/lib/Horde/History/Mock.php?rt=horde-git&r1=423a06bffd54aa7e96ab31f31afeb76a10d4a82a&r2=4b160ee19bbc07163c5919b33b8dab56d02f6f05
http://git.horde.org/diff.php/framework/History/lib/Horde/History/Sql.php?rt=horde-git&r1=423a06bffd54aa7e96ab31f31afeb76a10d4a82a&r2=4b160ee19bbc07163c5919b33b8dab56d02f6f05
http://git.horde.org/diff.php/framework/History/lib/Horde/HistoryObject.php?rt=horde-git&r1=423a06bffd54aa7e96ab31f31afeb76a10d4a82a&r2=4b160ee19bbc07163c5919b33b8dab56d02f6f05
http://git.horde.org/diff.php/framework/History/test/Horde/History/InterfaceTest.php?rt=horde-git&r1=423a06bffd54aa7e96ab31f31afeb76a10d4a82a&r2=4b160ee19bbc07163c5919b33b8dab56d02f6f05

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

commit e9bbdcadead3594fe6e608e0e530895d7d2c616e
Author: Jan Schneider <jan at horde.org>
Date:   Fri Mar 19 17:56:32 2010 +0100

    Use History's iterators, catch exceptions.

 framework/Group/Group.php                                 |   20 ++++--
 framework/Group/Group/ldap.php                            |    5 +-
 framework/Group/Group/sql.php                             |   21 ++++--
 framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data.php  |    9 +--
 imp/lib/Maillog.php                                       |   11 ++--
 kronolith/lib/Api.php                                     |   38 +++++------
 kronolith/lib/Application.php                             |    5 +-
 kronolith/lib/Driver.php                                  |    8 ++-
 kronolith/lib/Driver/Kolab.php                            |   14 +++-
 kronolith/lib/Driver/Sql.php                              |   21 ++++--
 kronolith/lib/Event.php                                   |   28 ++++-----
 kronolith/lib/View/Event.php                              |   44 ++++++-------
 nag/lib/Api.php                                           |   22 +++---
 nag/lib/Application.php                                   |    3 +-
 nag/lib/Driver.php                                        |   45 ++++++++++---
 nag/lib/Task.php                                          |   10 ++--
 nag/scripts/upgrades/create_missing_add_histories_sql.php |    2 +-
 nag/view.php                                              |    9 +--
 turba/lib/Api.php                                         |   20 ++++--
 turba/lib/Driver.php                                      |   28 ++++++--
 turba/lib/Driver/Sql.php                                  |   19 ++++--
 turba/lib/View/Browse.php                                 |   11 ++-
 turba/lib/View/Contact.php                                |    9 +--
 23 files changed, 236 insertions(+), 166 deletions(-)

http://git.horde.org/diff.php/framework/Group/Group.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/framework/Group/Group/ldap.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/framework/Group/Group/sql.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/framework/Kolab_Storage/lib/Horde/Kolab/Storage/Data.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/imp/lib/Maillog.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/kronolith/lib/Api.php?rt=horde-git&r1=97fd203dcaaf5ddf7c9c2252eb44ac76e8d84846&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/kronolith/lib/Application.php?rt=horde-git&r1=6cabfab972f38336f204179e5b41d0ecf3b0525d&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/kronolith/lib/Driver.php?rt=horde-git&r1=8e991d7139c86d178bb37a227d7493c46e488b27&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/kronolith/lib/Driver/Kolab.php?rt=horde-git&r1=9cd9238e67c6e01ab095db6b87a028ef0638a92f&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/kronolith/lib/Driver/Sql.php?rt=horde-git&r1=3912301ac6650bf8e4166861e418b9a9e62375c7&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/kronolith/lib/Event.php?rt=horde-git&r1=f25091e10c4b702b0a5e403b4dfc88b6ab56efad&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/kronolith/lib/View/Event.php?rt=horde-git&r1=fceb627cd4b0741364af021e012a68ea74fcfde6&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/nag/lib/Api.php?rt=horde-git&r1=97fd203dcaaf5ddf7c9c2252eb44ac76e8d84846&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/nag/lib/Application.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/nag/lib/Driver.php?rt=horde-git&r1=6cabfab972f38336f204179e5b41d0ecf3b0525d&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/nag/lib/Task.php?rt=horde-git&r1=97fd203dcaaf5ddf7c9c2252eb44ac76e8d84846&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/nag/scripts/upgrades/create_missing_add_histories_sql.php?rt=horde-git&r1=54a26e22e01a369372381a50d79eb655339c0956&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/nag/view.php?rt=horde-git&r1=659c348abc1a65fec88aa8c25b6848687dcb9f05&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/turba/lib/Api.php?rt=horde-git&r1=97fd203dcaaf5ddf7c9c2252eb44ac76e8d84846&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/turba/lib/Driver.php?rt=horde-git&r1=9f529bff639f1cafde6bae97fa3d6c7ee0112bce&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/turba/lib/Driver/Sql.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/turba/lib/View/Browse.php?rt=horde-git&r1=389d36abd716c558578b3ebb588fa90daf1342e6&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e
http://git.horde.org/diff.php/turba/lib/View/Contact.php?rt=horde-git&r1=240ff73e2a3bcfe5e5649e5d9153d87b25471d36&r2=e9bbdcadead3594fe6e608e0e530895d7d2c616e

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

commit d940daa8d7fb8dfbe3f862cc18066fc932d7e8d7
Author: Jan Schneider <jan at horde.org>
Date:   Fri Mar 19 18:06:00 2010 +0100

    Add Log.php.

 framework/History/package.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://git.horde.org/diff.php/framework/History/package.xml?rt=horde-git&r1=1c91915a864f158e7ba702f2dd5be8c0f42e42f5&r2=d940daa8d7fb8dfbe3f862cc18066fc932d7e8d7

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

commit 0c3941982f223b87e86c7748c518382f71a433b0
Author: Jan Schneider <jan at horde.org>
Date:   Fri Mar 19 18:06:14 2010 +0100

    Fix installing individual packages.

 framework/bin/install_framework |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/framework/bin/install_framework?rt=horde-git&r1=d6cf38e613385ab814c1d44f4ec5e46f9dd3ae17&r2=0c3941982f223b87e86c7748c518382f71a433b0




More information about the commits mailing list