[commits] Horde branch master updated. 0fb50877f6872047c47818fa143e14a4ffb69dc5

Gunnar Wrobel p at rdus.de
Fri Oct 21 04:00:08 UTC 2011


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

from: 3db5b7dff094e92e67eb7d8daa478ea27b5d0b38

cbff272 Rename factory.
484e583 Remove "Cli" sub hierarchy. Add testing for the push factory.
e1d0a2a Support "pretend" option.
e607aa9 Adapt message signature.
8082af0 Some fixes to the mails that are being pushed and "pretend" support.
d3146ab [gwr] Fixed setting response headers for the mock response.
42d3a0d [gwr] Support multiple mock responses with the mock request.
2b1b7a9 Next version will be 1.1.0.
24542ab Add blogger test and add "pretend" support.
b15bb1e Support passing options and a return value.
86a1289 Support pretend mode and return a result value.
77f721f Allow selecting named recipients and support acl in a generic way.
40a6bba Support creating a mock client.
5f35109 Add test for no recipients.
6d023eb Basic test for the CLI. Finalize CLI.
0fb5087 Update package.xml

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

commit cbff2722d942c5c3c5bab548f5cc59a9a4492cc8
Author: Gunnar Wrobel <p at rdus.de>
Date:   Mon Oct 17 21:19:31 2011 +0200

    Rename factory.

 framework/Push/lib/Horde/Push/Cli/Factory/Recipients.php          |  133 ----
 framework/Push/lib/Horde/Push/Factory/Recipients.php              |  134 +++++
 framework/Push/package.xml                                        |   10 +-
 .../Push/test/Horde/Push/Unit/Push/Factory/RecipientTest.php      |   75 +++
 4 files changed, 216 insertions(+), 136 deletions(-)
 delete mode 100644 framework/Push/lib/Horde/Push/Cli/Factory/Recipients.php
 create mode 100644 framework/Push/lib/Horde/Push/Factory/Recipients.php
 create mode 100644 framework/Push/test/Horde/Push/Unit/Push/Factory/RecipientTest.php

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

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

commit 484e583866377571514ea3e415af058ca1283b9c
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 18 05:26:44 2011 +0200

    Remove "Cli" sub hierarchy. Add testing for the push factory.

 framework/Push/lib/Horde/Push/Cli/Exception.php               |   30 --
 framework/Push/lib/Horde/Push/Cli/Factory/Push.php            |  171 --------
 framework/Push/lib/Horde/Push/Cli/Translation.php             |   63 ---
 framework/Push/lib/Horde/Push/Exception.php                   |   30 ++
 framework/Push/lib/Horde/Push/Factory/Push.php                |  171 ++++++++
 framework/Push/lib/Horde/Push/Factory/Recipients.php          |   12 +-
 framework/Push/lib/Horde/Push/Translation.php                 |   61 +++
 framework/Push/package.xml                                    |   28 +-
 framework/Push/test/Horde/Push/Unit/Push/Factory/PushTest.php |  192 +++++++++
 framework/Push/test/Horde/Push/fixtures/empty.php             |    1 +
 framework/Push/test/Horde/Push/fixtures/note.struct           |   33 ++
 framework/Push/test/Horde/Push/fixtures/note.xml.qp           |    6 +
 framework/Push/test/Horde/Push/fixtures/push.php              |    3 +
 framework/Push/test/Horde/Push/fixtures/push.yaml             |    2 +
 14 files changed, 518 insertions(+), 285 deletions(-)
 delete mode 100644 framework/Push/lib/Horde/Push/Cli/Exception.php
 delete mode 100644 framework/Push/lib/Horde/Push/Cli/Factory/Push.php
 delete mode 100644 framework/Push/lib/Horde/Push/Cli/Translation.php
 create mode 100644 framework/Push/lib/Horde/Push/Exception.php
 create mode 100644 framework/Push/lib/Horde/Push/Factory/Push.php
 create mode 100644 framework/Push/lib/Horde/Push/Translation.php
 create mode 100644 framework/Push/test/Horde/Push/Unit/Push/Factory/PushTest.php
 create mode 100644 framework/Push/test/Horde/Push/fixtures/empty.php
 create mode 100644 framework/Push/test/Horde/Push/fixtures/note.struct
 create mode 100644 framework/Push/test/Horde/Push/fixtures/note.xml.qp
 create mode 100644 framework/Push/test/Horde/Push/fixtures/push.php
 create mode 100644 framework/Push/test/Horde/Push/fixtures/push.yaml

http://git.horde.org/horde-git/-/commit/484e583866377571514ea3e415af058ca1283b9c

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

commit e1d0a2a5580e641e79f55d70f3bdf64dcf1d868c
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 18 20:49:56 2011 +0200

    Support "pretend" option.

 framework/Push/lib/Horde/Push/Recipient.php                       |    3 +-
 framework/Push/lib/Horde/Push/Recipient/Twitter.php               |   16 ++-
 .../Push/test/Horde/Push/Unit/Push/Recipient/TwitterTest.php      |   26 +++++
 3 files changed, 40 insertions(+), 5 deletions(-)

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

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

commit e607aa959e498cf5672908a2f1504cfc45dc00f9
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 18 20:50:17 2011 +0200

    Adapt message signature.

 framework/Push/lib/Horde/Push/Recipient/Mock.php |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

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

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

commit 8082af04eb9e9fd03c029ee352ae24ec45df2cf9
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 18 21:42:52 2011 +0200

    Some fixes to the mails that are being pushed and "pretend" support.

 framework/Push/lib/Horde/Push/Recipient/Mail.php                |   33 +++-
 framework/Push/test/Horde/Push/Unit/Push/Recipient/MailTest.php |   65 ++++++-
 2 files changed, 88 insertions(+), 10 deletions(-)

http://git.horde.org/horde-git/-/commit/8082af04eb9e9fd03c029ee352ae24ec45df2cf9

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

commit d3146ab09cced2ba77f1af6453feb3cb882b9f09
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 09:01:22 2011 +0200

    [gwr] Fixed setting response headers for the mock response.

 framework/Http/lib/Horde/Http/Response/Mock.php |    2 +-
 framework/Http/package.xml                      |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

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

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

commit 42d3a0d925ff841f84ccb5c91a646016f8c12860
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 09:02:19 2011 +0200

    [gwr] Support multiple mock responses with the mock request.

 framework/Http/lib/Horde/Http/Request/Mock.php |   82 ++++++++++++++++--
 framework/Http/package.xml                     |    2 +
 framework/Http/test/Horde/Http/MockTest.php    |  110 ++++++++++++++++++++++++
 3 files changed, 185 insertions(+), 9 deletions(-)
 create mode 100644 framework/Http/test/Horde/Http/MockTest.php

http://git.horde.org/horde-git/-/commit/42d3a0d925ff841f84ccb5c91a646016f8c12860

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

commit 2b1b7a9e72347939fd949ec2cd333739c4850fe2
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 09:03:22 2011 +0200

    Next version will be 1.1.0.

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

http://git.horde.org/horde-git/-/commit/2b1b7a9e72347939fd949ec2cd333739c4850fe2

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

commit 24542abae3e4f08a21b7ad384ed4fb588dc7c4ef
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 09:19:45 2011 +0200

    Add blogger test and add "pretend" support.

 framework/Push/lib/Horde/Push/Recipient/Blogger.php               |   48 +-
 framework/Push/package.xml                                        |    7 +
 .../Push/test/Horde/Push/Unit/Push/Recipient/BloggerTest.php      |  178 +++++
 3 files changed, 216 insertions(+), 17 deletions(-)
 create mode 100644 framework/Push/test/Horde/Push/Unit/Push/Recipient/BloggerTest.php

http://git.horde.org/horde-git/-/commit/24542abae3e4f08a21b7ad384ed4fb588dc7c4ef

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

commit b15bb1e672a2d7d1f4edf90f0218b8cbfc464508
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 09:28:43 2011 +0200

    Support passing options and a return value.

 framework/Push/lib/Horde/Push.php                |    9 ++++++---
 framework/Push/test/Horde/Push/Unit/PushTest.php |   19 +++++++++++++++++++
 2 files changed, 25 insertions(+), 3 deletions(-)

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

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

commit 86a1289d696541366ee48409340fd71223a91858
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 09:29:20 2011 +0200

    Support pretend mode and return a result value.

 framework/Push/lib/Horde/Push/Recipient/Mock.php |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/86a1289d696541366ee48409340fd71223a91858

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

commit 77f721fb029f1eb0270842ae22e3bb403cdaf71c
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 20:28:18 2011 +0200

    Allow selecting named recipients and support acl in a generic way.

 framework/Push/lib/Horde/Push/Factory/Recipients.php              |   78 ++-
 framework/Push/lib/Horde/Push/Recipient/Base.php                  |   59 ++
 framework/Push/lib/Horde/Push/Recipient/Blogger.php               |    6 +-
 framework/Push/lib/Horde/Push/Recipient/Mail.php                  |   35 +-
 framework/Push/lib/Horde/Push/Recipient/Mock.php                  |    2 +-
 framework/Push/lib/Horde/Push/Recipient/Twitter.php               |    2 +-
 framework/Push/package.xml                                        |   24 +-
 .../Push/test/Horde/Push/Unit/Push/Factory/RecipientTest.php      |  195 ++++-
 framework/Push/test/Horde/Push/Unit/Push/Recipient/MailTest.php   |   12 +-
 9 files changed, 376 insertions(+), 37 deletions(-)
 create mode 100644 framework/Push/lib/Horde/Push/Recipient/Base.php

http://git.horde.org/horde-git/-/commit/77f721fb029f1eb0270842ae22e3bb403cdaf71c

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

commit 40a6bba766504c51a3e27030c20d00f873d06d83
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 21:00:39 2011 +0200

    Support creating a mock client.

 framework/Push/lib/Horde/Push/Factory/Recipients.php |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/40a6bba766504c51a3e27030c20d00f873d06d83

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

commit 5f35109e15d7e22b7e07492c3686ae99778477e7
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 21:01:05 2011 +0200

    Add test for no recipients.

 .../Push/test/Horde/Push/Unit/Push/Factory/RecipientTest.php      |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/5f35109e15d7e22b7e07492c3686ae99778477e7

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

commit 6d023eb1a9c0abc40209afae1d1e91c973c28ea7
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 21:01:48 2011 +0200

    Basic test for the CLI. Finalize CLI.

 framework/Push/lib/Horde/Push/Cli.php                |   66 ++++++++++++------
 framework/Push/test/Horde/Push/Unit/Push/CliTest.php |   53 ++++++++++++++
 2 files changed, 98 insertions(+), 21 deletions(-)
 create mode 100644 framework/Push/test/Horde/Push/Unit/Push/CliTest.php

http://git.horde.org/horde-git/-/commit/6d023eb1a9c0abc40209afae1d1e91c973c28ea7

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

commit 0fb50877f6872047c47818fa143e14a4ffb69dc5
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 19 21:03:54 2011 +0200

    Update package.xml

 framework/Push/package.xml |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

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




More information about the commits mailing list