[commits] Horde branch develop updated. f0646a39084ebfdae34c339a4200c1c33c6ab61c

Michael M Slusarz slusarz at horde.org
Tue Jan 31 06:37:34 UTC 2012


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

from: 227c8f75b29e1c3064e7c11d6ad08e67c274994c

f72e0b6 Fix API call
3279004 Cleanups/phpdoc
6010c37 Convert Ingo_Script::factory() to Horde_Injector factory
8d6991d Move Ingo_Storage::factory() to Horde_Injector factory
0787ece Convert Ingo_Transport::factory() to Horde_Injector factory
f0646a3 Update ingo package.xml

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

commit f72e0b6ba5a558deb396cc746c33e3f063647f23
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 30 21:35:00 2012 -0700

    Fix API call

 turba/lib/Turba.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/f72e0b6ba5a558deb396cc746c33e3f063647f23

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

commit 3279004f184ad3d18a324447f30905f204c6aaae
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 30 21:58:11 2012 -0700

    Cleanups/phpdoc

 ingo/lib/Application.php |   83 ++++++++++++++++++++++++++++++++++++-------
 ingo/lib/Ingo.php        |   89 +++++++++-------------------------------------
 ingo/lib/Storage.php     |   28 +++++++-------
 ingo/lib/Transport.php   |    8 +++-
 4 files changed, 107 insertions(+), 101 deletions(-)

http://git.horde.org/horde-git/-/commit/3279004f184ad3d18a324447f30905f204c6aaae

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

commit 6010c37d17fabbf47febcba468aa5b5810086b2e
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 30 22:40:58 2012 -0700

    Convert Ingo_Script::factory() to Horde_Injector factory

 ingo/blacklist.php              |    7 +---
 ingo/filters.php                |    2 +-
 ingo/lib/Api.php                |   24 +++++--------
 ingo/lib/Application.php        |   13 ++++++-
 ingo/lib/Factory/Script.php     |   75 +++++++++++++++++++++++++++++++++++++++
 ingo/lib/Ingo.php               |   16 +--------
 ingo/lib/Script.php             |   60 ++++++-------------------------
 ingo/lib/tests/MaildropTest.php |   12 +++---
 ingo/lib/tests/ProcmailTest.php |   12 +++---
 ingo/lib/tests/ScriptTest.php   |   25 +++++++------
 ingo/lib/tests/SieveTest.php    |   14 ++++----
 ingo/rule.php                   |    2 +-
 ingo/script.php                 |   10 ++----
 13 files changed, 145 insertions(+), 127 deletions(-)
 create mode 100644 ingo/lib/Factory/Script.php

http://git.horde.org/horde-git/-/commit/6010c37d17fabbf47febcba468aa5b5810086b2e

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

commit 8d6991d9998629703c8c76fe8283f42d1b3c4f37
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 30 23:15:54 2012 -0700

    Move Ingo_Storage::factory() to Horde_Injector factory

 ingo/bin/ingo-convert-prefs-to-sql |    7 +--
 ingo/bin/ingo-postfix-policyd      |    9 ++--
 ingo/blacklist.php                 |    1 +
 ingo/filters.php                   |    1 +
 ingo/forward.php                   |    1 +
 ingo/lib/Api.php                   |   22 ++++++----
 ingo/lib/Application.php           |    6 +--
 ingo/lib/Block/Overview.php        |    2 +-
 ingo/lib/Factory/Storage.php       |   81 ++++++++++++++++++++++++++++++++++++
 ingo/lib/Script/Imap.php           |    7 ++-
 ingo/lib/Script/Maildrop.php       |   12 +++---
 ingo/lib/Script/Procmail.php       |   10 ++--
 ingo/lib/Script/Sieve.php          |   14 +++----
 ingo/lib/Storage.php               |   47 ++++-----------------
 ingo/lib/Storage/Prefs.php         |   11 -----
 ingo/lib/Storage/Sql.php           |   57 ++++++-------------------
 ingo/lib/tests/MaildropTest.php    |    8 ++--
 ingo/lib/tests/ProcmailTest.php    |    8 ++--
 ingo/lib/tests/ScriptTest.php      |    2 +-
 ingo/lib/tests/SieveTest.php       |    8 ++--
 ingo/lib/tests/TestBase.php        |    4 +-
 ingo/rule.php                      |    1 +
 ingo/spam.php                      |    1 +
 ingo/vacation.php                  |    1 +
 ingo/whitelist.php                 |    1 +
 25 files changed, 168 insertions(+), 154 deletions(-)
 create mode 100644 ingo/lib/Factory/Storage.php

http://git.horde.org/horde-git/-/commit/8d6991d9998629703c8c76fe8283f42d1b3c4f37

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

commit 0787ecec1b97779a26ff36c07d9fc7c638f14ec0
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 30 23:31:20 2012 -0700

    Convert Ingo_Transport::factory() to Horde_Injector factory

 ingo/lib/Application.php         |    5 ++-
 ingo/lib/Factory/Transport.php   |   59 ++++++++++++++++++++++++++++++++++++++
 ingo/lib/Ingo.php                |   27 +----------------
 ingo/lib/Transport.php           |   35 +++++-----------------
 ingo/lib/Transport/Ldap.php      |    2 +-
 ingo/lib/Transport/Null.php      |    5 ++-
 ingo/lib/Transport/Sivtest.php   |    6 ++--
 ingo/lib/Transport/Timsieved.php |    6 ++--
 ingo/lib/Transport/Vfs.php       |    6 ++--
 9 files changed, 84 insertions(+), 67 deletions(-)
 create mode 100644 ingo/lib/Factory/Transport.php

http://git.horde.org/horde-git/-/commit/0787ecec1b97779a26ff36c07d9fc7c638f14ec0

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

commit f0646a39084ebfdae34c339a4200c1c33c6ab61c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Jan 30 22:41:42 2012 -0700

    Update ingo package.xml

 ingo/package.xml |   20 ++++++++++++++++++--
 1 files changed, 18 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/f0646a39084ebfdae34c339a4200c1c33c6ab61c




More information about the commits mailing list