[commits] Horde branch develop updated. d5f29fd1f20fd3de9e2ad88456ceea0ebef0536a

Michael J. Rubinsky mrubinsk at horde.org
Wed Apr 4 15:37:27 UTC 2012


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

from: 742276d0fcdc1a6804f112bf4c77810c2237a94e

7ebc864 Start implementing SETTINGS requests.
0e6eea4 fix variable name
309f19c Add status constants, throw exceptions
d1ab707 abstract methods for [set|get]Settings requests.
d669137 Clean up driver class a bit.
1a20558 Add ability to get vacation message properties from the API
3126b5b Return the vacation rule's disable status
01a0576 Implement getting vacation message details
b13104b Use constants
d5f29fd Implement setting vacation message from device.

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

commit 7ebc86479df84ae2f8482cdd068789ae83032344
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 09:45:25 2012 -0400

    Start implementing SETTINGS requests.
    
    Unfortunately, none of my devices actually send this command, so I
    can't currently test this.

 framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php |  255 ++++++++
 1 files changed, 255 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/7ebc86479df84ae2f8482cdd068789ae83032344

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

commit 0e6eea4859e2aee08754c87d1da0f958cd16b2a6
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 09:47:11 2012 -0400

    fix variable name

 framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/0e6eea4859e2aee08754c87d1da0f958cd16b2a6

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

commit 309f19c6f853f8db9891e6286cdf31e4653b2c19
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 09:58:34 2012 -0400

    Add status constants, throw exceptions

 framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php |   15 +++++---
 1 files changed, 9 insertions(+), 6 deletions(-)

http://git.horde.org/horde-git/-/commit/309f19c6f853f8db9891e6286cdf31e4653b2c19

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

commit d1ab7070d5f105e1bc6def69c3d30adc5086af31
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 09:58:54 2012 -0400

    abstract methods for [set|get]Settings requests.

 framework/ActiveSync/lib/Horde/ActiveSync/Driver/Base.php |   22 +++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

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

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

commit d669137a5abea9f0b854016d8e427cf49fbce2d5
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 10:10:58 2012 -0400

    Clean up driver class a bit.
    
    phpdoc, no need for private methods/properties - make them protected.
    move protected methods to end of file etc...

 framework/ActiveSync/lib/Horde/ActiveSync/Driver/Base.php |   21 +-
 framework/Core/lib/Horde/Core/ActiveSync/Driver.php       |  342 +++++++------
 2 files changed, 187 insertions(+), 176 deletions(-)

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

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

commit 1a205580b561d271a24176a39a88a89b3a19dfd3
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 10:38:13 2012 -0400

    Add ability to get vacation message properties from the API

 ingo/lib/Api.php              |   18 ++++++++++++++++++
 ingo/lib/Storage/Vacation.php |   19 +++++++++++++++++++
 2 files changed, 37 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/1a205580b561d271a24176a39a88a89b3a19dfd3

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

commit 3126b5b029526aba099d85dceaa5149ed4edf33b
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 11:01:53 2012 -0400

    Return the vacation rule's disable status

 ingo/lib/Api.php |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/3126b5b029526aba099d85dceaa5149ed4edf33b

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

commit 01a0576088fd6c8c705f89ef59eca848ce9b56a5
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 11:24:02 2012 -0400

    Implement getting vacation message details

 framework/Core/lib/Horde/Core/ActiveSync/Connector.php |   15 ++++
 framework/Core/lib/Horde/Core/ActiveSync/Driver.php    |   71 ++++++++++++++++
 2 files changed, 86 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/01a0576088fd6c8c705f89ef59eca848ce9b56a5

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

commit b13104be9cd9fa42b2011c5d1e41e0b3a85d8901
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 11:28:18 2012 -0400

    Use constants

 framework/ActiveSync/lib/Horde/ActiveSync/Request/Settings.php |    3 +++
 framework/Core/lib/Horde/Core/ActiveSync/Driver.php            |    4 +++-
 2 files changed, 6 insertions(+), 1 deletions(-)

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

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

commit d5f29fd1f20fd3de9e2ad88456ceea0ebef0536a
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Apr 4 11:36:16 2012 -0400

    Implement setting vacation message from device.
    
    untested

 framework/Core/lib/Horde/Core/ActiveSync/Connector.php |   20 ++++++++++++++-
 1 files changed, 18 insertions(+), 2 deletions(-)

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




More information about the commits mailing list