[commits] Horde branch master updated. 1477dcdd2c87fea159204361bb42c46f61eee5f6

Michael M Slusarz slusarz at horde.org
Mon Feb 9 21:30:46 UTC 2015


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

from: 6035f2d0f829e63de2d846928f4c81f7bfd19dc4

b215da1 phpdoc
0bc1969 Treat filters object using our typical driver model
16dd2c9 Do SQL filters init within the object
a40480e [mms] Work around broken line-oriented data when transfer encoding (Bug #13835).
2b2f29d Cleanups of Filters class
682b484 Move test related files to the proper location
f74ab0c This variable is only used in one class (and not even where it is defined)
9d291d9 code cleanups
2f364be Have Filters extend Ingo_Storage_Rule
d6b7bac Clean up prefs storage class
4accabd Prefs driver also can implement removeUserData()
1b13649 Mark _retrieve() and _store() as abstract
06adecf Don't throw error if one component of SQL remove user data fails
1bf51f7 Fix tests
1477dcd simplify

Summary: http://github.com/horde/horde/compare/6035f2d0f829e63de2d846928f4c81f7bfd19dc4...1477dcdd2c87fea159204361bb42c46f61eee5f6

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

commit b215da1b7da626d7fbe651632a11cbd710d65954
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Feb 3 14:24:33 2015 -0700

    phpdoc

 ingo/lib/Storage/Filters.php     |   20 ++++++++++----------
 ingo/lib/Storage/Filters/Sql.php |   21 ++++++++++-----------
 2 files changed, 20 insertions(+), 21 deletions(-)

http://github.com/horde/horde/commit/b215da1b7da626d7fbe651632a11cbd710d65954

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

commit 0bc1969ad1d9b53ca1299fd242401b989a17c714
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Feb 3 14:34:03 2015 -0700

    Treat filters object using our typical driver model

 ingo/lib/Storage/Filters.php       |   10 ---------
 ingo/lib/Storage/Filters/Mock.php  |   35 ++++++++++++++++++++++++++++++++++
 ingo/lib/Storage/Filters/Prefs.php |   37 ++++++++++++++++++++++++++++++++++++
 ingo/lib/Storage/Filters/Sql.php   |    5 +--
 ingo/lib/Storage/Mock.php          |    5 ++-
 ingo/lib/Storage/Prefs.php         |    5 +---
 6 files changed, 78 insertions(+), 19 deletions(-)
 create mode 100644 ingo/lib/Storage/Filters/Mock.php
 create mode 100644 ingo/lib/Storage/Filters/Prefs.php

http://github.com/horde/horde/commit/0bc1969ad1d9b53ca1299fd242401b989a17c714

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

commit 16dd2c9cb921946385d469e5599444aaae69dc24
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Feb 3 14:36:41 2015 -0700

    Do SQL filters init within the object

 ingo/lib/Storage/Filters/Sql.php |   11 +++++++----
 ingo/lib/Storage/Sql.php         |    7 +++++--
 2 files changed, 12 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/16dd2c9cb921946385d469e5599444aaae69dc24

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

commit a40480ee6e352c25fbb8ba98cdc0da39072bed10
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sun Feb 8 04:49:11 2015 -0700

    [mms] Work around broken line-oriented data when transfer encoding (Bug #13835).

 framework/Mime/lib/Horde/Mime/Filter/Encoding.php      |   26 ++++++++++++++++
 framework/Mime/lib/Horde/Mime/Part.php                 |    1 +
 framework/Mime/package.xml                             |    2 +
 framework/Mime/test/Horde/Mime/Filter/EncodingTest.php |   16 ++++++++++
 4 files changed, 45 insertions(+), 0 deletions(-)

http://github.com/horde/horde/commit/a40480ee6e352c25fbb8ba98cdc0da39072bed10

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

commit 2b2f29ded1aee4884b2e279c6e11cb2868e27597
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 20:29:17 2015 -0700

    Cleanups of Filters class

 ingo/lib/Storage/Filters.php     |   54 +++++-----
 ingo/lib/Storage/Filters/Sql.php |  210 +++++++++++++++++++++-----------------
 2 files changed, 144 insertions(+), 120 deletions(-)

http://github.com/horde/horde/commit/2b2f29ded1aee4884b2e279c6e11cb2868e27597

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

commit 682b48485c332723cbf2f501ed577199aecf5b0e
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 20:52:42 2015 -0700

    Move test related files to the proper location

 ingo/lib/Storage/Mock.php                |   72 ------------------------------
 ingo/lib/Storage/VacationTest.php        |   32 -------------
 ingo/test/Ingo/Autoload.php              |    2 +
 ingo/test/Ingo/Stub/Storage/Mock.php     |   70 +++++++++++++++++++++++++++++
 ingo/test/Ingo/Stub/Storage/Vacation.php |   32 +++++++++++++
 ingo/test/Ingo/Unit/ProcmailTest.php     |    4 +-
 ingo/test/Ingo/Unit/ScriptTest.php       |    2 +-
 ingo/test/Ingo/Unit/SieveTest.php        |    4 +-
 ingo/test/Ingo/Unit/TestBase.php         |    2 +-
 9 files changed, 110 insertions(+), 110 deletions(-)
 delete mode 100644 ingo/lib/Storage/Mock.php
 delete mode 100644 ingo/lib/Storage/VacationTest.php
 create mode 100644 ingo/test/Ingo/Stub/Storage/Mock.php
 create mode 100644 ingo/test/Ingo/Stub/Storage/Vacation.php

http://github.com/horde/horde/commit/682b48485c332723cbf2f501ed577199aecf5b0e

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

commit f74ab0ce9ce6acc0009edde707501aaacccca946
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 20:58:11 2015 -0700

    This variable is only used in one class (and not even where it is defined)

 ingo/lib/Storage/Rule.php |   27 ---------------------------
 ingo/lib/Storage/Sql.php  |   27 +++++++++++++++++----------
 2 files changed, 17 insertions(+), 37 deletions(-)

http://github.com/horde/horde/commit/f74ab0ce9ce6acc0009edde707501aaacccca946

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

commit 9d291d974b2389233ff9e260672ffa110ce6961e
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 21:01:27 2015 -0700

    code cleanups

 ingo/lib/Storage.php      |    2 +-
 ingo/lib/Storage/Rule.php |    4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/9d291d974b2389233ff9e260672ffa110ce6961e

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

commit 2f364be6f533148929495005c479fff33d944525
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 20:20:58 2015 -0700

    Have Filters extend Ingo_Storage_Rule

 ingo/lib/Storage.php                |    8 +++---
 ingo/lib/Storage/Blacklist.php      |    4 +-
 ingo/lib/Storage/Filters.php        |   14 +---------
 ingo/lib/Storage/Forward.php        |    7 +---
 ingo/lib/Storage/Prefs.php          |    4 +-
 ingo/lib/Storage/Rule.php           |   17 ------------
 ingo/lib/Storage/Rule/Addresses.php |   50 +++++++++++++++++++++++++++++++++++
 ingo/lib/Storage/Sql.php            |    4 +-
 ingo/lib/Storage/Vacation.php       |    7 +---
 ingo/lib/Storage/Whitelist.php      |    7 +---
 10 files changed, 67 insertions(+), 55 deletions(-)
 create mode 100644 ingo/lib/Storage/Rule/Addresses.php

http://github.com/horde/horde/commit/2f364be6f533148929495005c479fff33d944525

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

commit d6b7bac9a25ef80bed35ad045c6225fadac1f351
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 21:30:06 2015 -0700

    Clean up prefs storage class

 ingo/lib/Storage/Prefs.php |   74 ++++++++++++++++++++++++-------------------
 1 files changed, 41 insertions(+), 33 deletions(-)

http://github.com/horde/horde/commit/d6b7bac9a25ef80bed35ad045c6225fadac1f351

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

commit 4accabd17244f51dc0e315aa11ac6868e955025d
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 21:39:25 2015 -0700

    Prefs driver also can implement removeUserData()

 ingo/lib/Storage.php       |   20 +++++++++++++++++---
 ingo/lib/Storage/Prefs.php |   19 +++++++++++++++++--
 ingo/lib/Storage/Sql.php   |   12 +-----------
 3 files changed, 35 insertions(+), 16 deletions(-)

http://github.com/horde/horde/commit/4accabd17244f51dc0e315aa11ac6868e955025d

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

commit 1b136495eeca512b29ba8f8c5c40d458e3a82a17
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 21:40:37 2015 -0700

    Mark _retrieve() and _store() as abstract

 ingo/lib/Storage.php |    9 ++-------
 1 files changed, 2 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/1b136495eeca512b29ba8f8c5c40d458e3a82a17

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

commit 06adecf947ed0135985a3551fef964bfaadb66df
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Feb 7 21:45:40 2015 -0700

    Don't throw error if one component of SQL remove user data fails

 ingo/lib/Storage/Sql.php |   38 ++++++++++++++++++++++++--------------
 1 files changed, 24 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/06adecf947ed0135985a3551fef964bfaadb66df

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

commit 1bf51f740c86b452c31f3ea492fd7b2d6a46fa45
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Feb 9 13:50:11 2015 -0700

    Fix tests

 ingo/lib/Storage/Filters/Memory.php  |   35 ++++++++++++++++++++++++++++++++++
 ingo/lib/Storage/Filters/Mock.php    |   35 ----------------------------------
 ingo/lib/Storage/Forward.php         |    7 ------
 ingo/test/Ingo/Stub/Storage/Mock.php |   10 ++++----
 ingo/test/Ingo/Unit/ProcmailTest.php |    6 +++++
 ingo/test/Ingo/Unit/SieveTest.php    |   10 +++++++++
 6 files changed, 56 insertions(+), 47 deletions(-)
 create mode 100644 ingo/lib/Storage/Filters/Memory.php
 delete mode 100644 ingo/lib/Storage/Filters/Mock.php

http://github.com/horde/horde/commit/1bf51f740c86b452c31f3ea492fd7b2d6a46fa45

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

commit 1477dcdd2c87fea159204361bb42c46f61eee5f6
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Mon Feb 9 14:03:10 2015 -0700

    simplify

 ingo/lib/Storage/Forward.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/1477dcdd2c87fea159204361bb42c46f61eee5f6




More information about the commits mailing list