[commits] Horde branch master updated. 30e8389fd2aaead2b1a0bd27581e2eadf80157eb

Gunnar Wrobel p at rdus.de
Thu Oct 6 13:02:58 UTC 2011


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

from: fa7d51bbf08a980ad6b5c8086264f78b0135520d

7c66db5 Basic skeleton for Horde_Push.
5edc77e Add a first test and the corresponding implementation.
41a709b Allow to set a summary.
3278826 Basic infrastructure that allows setting the summary and content. Added a mock recipient.
8b29347 Add the initial thoughts.
96fd87d Simple twitter support.
9f80940 Started a basic Horde_Push CLI client.
98b30bf Add creation of the Twitter recipient.
16bd4d8 Draft implementation for fetching the data for the push.
c2c3d78 Report the ID of the new object.
30e8389 Merge branch 'push'

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

commit 7c66db52120c431358de6ab919e747add1098d11
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 4 07:00:31 2011 +0200

    Basic skeleton for Horde_Push.

 framework/Push/doc/Horde/Push/COPYING       |  460 +++++++++++++++++++++++++++
 framework/Push/test/Horde/Push/AllTests.php |   50 +++
 framework/Push/test/Horde/Push/Autoload.php |   29 ++
 framework/Push/test/Horde/Push/TestCase.php |   33 ++
 framework/Push/test/Horde/Push/phpunit.xml  |    8 +
 5 files changed, 580 insertions(+), 0 deletions(-)
 create mode 100644 framework/Push/doc/Horde/Push/COPYING
 create mode 100644 framework/Push/test/Horde/Push/AllTests.php
 create mode 100644 framework/Push/test/Horde/Push/Autoload.php
 create mode 100644 framework/Push/test/Horde/Push/TestCase.php
 create mode 100644 framework/Push/test/Horde/Push/phpunit.xml

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

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

commit 5edc77e324bbde4969b741a1957e64363b7fdb98
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 4 07:36:39 2011 +0200

    Add a first test and the corresponding implementation.

 framework/Push/lib/Horde/Push.php                |   34 ++++++++
 framework/Push/package.xml                       |   96 ++++++++++++++++++++++
 framework/Push/test/Horde/Push/Unit/PushTest.php |   43 ++++++++++
 3 files changed, 173 insertions(+), 0 deletions(-)
 create mode 100644 framework/Push/lib/Horde/Push.php
 create mode 100644 framework/Push/package.xml
 create mode 100644 framework/Push/test/Horde/Push/Unit/PushTest.php

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

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

commit 41a709b8d2359b08ef9b7eed2cbc739982c5ad34
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 4 07:41:38 2011 +0200

    Allow to set a summary.

 framework/Push/lib/Horde/Push.php                |   28 +++++++++++++++++++--
 framework/Push/test/Horde/Push/Unit/PushTest.php |    6 ++++
 2 files changed, 31 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/41a709b8d2359b08ef9b7eed2cbc739982c5ad34

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

commit 3278826b9e3f1e7bbc3c267cc9427db943468ea0
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 4 08:47:42 2011 +0200

    Basic infrastructure that allows setting the summary and content. Added a mock recipient.

 framework/Push/lib/Horde/Push.php                |   85 ++++++++++++++++++++--
 framework/Push/lib/Horde/Push/Recipient.php      |   38 ++++++++++
 framework/Push/lib/Horde/Push/Recipient/Mock.php |   49 +++++++++++++
 framework/Push/package.xml                       |   10 +++-
 framework/Push/test/Horde/Push/Unit/PushTest.php |   56 ++++++++++++++-
 5 files changed, 227 insertions(+), 11 deletions(-)
 create mode 100644 framework/Push/lib/Horde/Push/Recipient.php
 create mode 100644 framework/Push/lib/Horde/Push/Recipient/Mock.php

http://git.horde.org/horde-git/-/commit/3278826b9e3f1e7bbc3c267cc9427db943468ea0

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

commit 8b2934777b010b5897966bbfc6a588311705e71b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 4 08:48:54 2011 +0200

    Add the initial thoughts.

 framework/Push/doc/Horde/Push/TODO |   24 ++++++++++++++++++++++++
 framework/Push/package.xml         |    6 +++---
 2 files changed, 27 insertions(+), 3 deletions(-)
 create mode 100644 framework/Push/doc/Horde/Push/TODO

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

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

commit 96fd87d7e066ccc915c2a5f5d42839dd5318e2b9
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 4 09:16:55 2011 +0200

    Simple twitter support.

 framework/Push/lib/Horde/Push/Recipient/Twitter.php               |   60 +++++
 framework/Push/package.xml                                        |   14 +-
 framework/Push/test/Horde/Push/Autoload.php                       |    2 +-
 framework/Push/test/Horde/Push/Stub/Twitter.php                   |   24 ++
 .../Push/test/Horde/Push/Unit/Push/Recipient/TwitterTest.php      |   54 ++++
 5 files changed, 152 insertions(+), 2 deletions(-)
 create mode 100644 framework/Push/lib/Horde/Push/Recipient/Twitter.php
 create mode 100644 framework/Push/test/Horde/Push/Stub/Twitter.php
 create mode 100644 framework/Push/test/Horde/Push/Unit/Push/Recipient/TwitterTest.php

http://git.horde.org/horde-git/-/commit/96fd87d7e066ccc915c2a5f5d42839dd5318e2b9

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

commit 9f80940872ef04c458f14705379a4a7b3fd7897b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Oct 4 21:08:22 2011 +0200

    Started a basic Horde_Push CLI client.

 framework/Push_Cli/bin/push                                  |    8 +
 framework/Push_Cli/doc/Horde/Push/Cli/COPYING                |  281 ++++++++++
 framework/Push_Cli/lib/Horde/Push/Cli.php                    |  109 ++++
 framework/Push_Cli/lib/Horde/Push/Cli/Factory/Push.php       |   41 ++
 framework/Push_Cli/lib/Horde/Push/Cli/Factory/Recipients.php |   41 ++
 framework/Push_Cli/lib/Horde/Push/Cli/Translation.php        |   63 ++
 framework/Push_Cli/package.xml                               |   94 +++
 7 files changed, 637 insertions(+), 0 deletions(-)
 create mode 100644 framework/Push_Cli/bin/push
 create mode 100644 framework/Push_Cli/doc/Horde/Push/Cli/COPYING
 create mode 100644 framework/Push_Cli/lib/Horde/Push/Cli.php
 create mode 100644 framework/Push_Cli/lib/Horde/Push/Cli/Factory/Push.php
 create mode 100644 framework/Push_Cli/lib/Horde/Push/Cli/Factory/Recipients.php
 create mode 100644 framework/Push_Cli/lib/Horde/Push/Cli/Translation.php
 create mode 100644 framework/Push_Cli/package.xml

http://git.horde.org/horde-git/-/commit/9f80940872ef04c458f14705379a4a7b3fd7897b

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

commit 98b30bfac63c3bf6572d031d957820626c5fa0be
Author: Gunnar Wrobel <p at rdus.de>
Date:   Wed Oct 5 09:53:11 2011 +0200

    Add creation of the Twitter recipient.

 framework/Push_Cli/lib/Horde/Push/Cli.php                    |    2 +-
 framework/Push_Cli/lib/Horde/Push/Cli/Factory/Recipients.php |   84 +++++++++-
 framework/Push_Cli/package.xml                               |   21 +++
 3 files changed, 101 insertions(+), 6 deletions(-)

http://git.horde.org/horde-git/-/commit/98b30bfac63c3bf6572d031d957820626c5fa0be

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

commit 16bd4d8399e389be38a0ea4d49d7cdd41b779724
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Oct 6 11:39:58 2011 +0200

    Draft implementation for fetching the data for the push.

 framework/Push_Cli/lib/Horde/Push/Cli.php              |   38 +++--
 framework/Push_Cli/lib/Horde/Push/Cli/Exception.php    |   30 ++++
 framework/Push_Cli/lib/Horde/Push/Cli/Factory/Push.php |  129 +++++++++++++++-
 framework/Push_Cli/package.xml                         |   17 ++-
 4 files changed, 192 insertions(+), 22 deletions(-)
 create mode 100644 framework/Push_Cli/lib/Horde/Push/Cli/Exception.php

http://git.horde.org/horde-git/-/commit/16bd4d8399e389be38a0ea4d49d7cdd41b779724

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

commit c2c3d784eb65a08f3c3ee4e27b09bd8de2b3ae80
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Oct 6 11:40:25 2011 +0200

    Report the ID of the new object.

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Data.php |   21 ++++++++------
 1 files changed, 12 insertions(+), 9 deletions(-)

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

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

commit 30e8389fd2aaead2b1a0bd27581e2eadf80157eb
Merge: fa7d51b c2c3d78
Author: Gunnar Wrobel <p at rdus.de>
Date:   Thu Oct 6 15:02:43 2011 +0200

    Merge branch 'push'

 framework/Kolab_Cli/lib/Horde/Kolab/Cli/Module/Data.php           |   21 +-
 framework/Push/doc/Horde/Push/COPYING                             |  460 +++++
 framework/Push/doc/Horde/Push/TODO                                |   24 +
 framework/Push/lib/Horde/Push.php                                 |  125 ++
 framework/Push/lib/Horde/Push/Recipient.php                       |   38 +
 framework/Push/lib/Horde/Push/Recipient/Mock.php                  |   49 +
 framework/Push/lib/Horde/Push/Recipient/Twitter.php               |   60 +
 framework/Push/package.xml                                        |  116 ++
 framework/Push/test/Horde/Push/AllTests.php                       |   50 +
 framework/Push/test/Horde/Push/Autoload.php                       |   29 +
 framework/Push/test/Horde/Push/Stub/Twitter.php                   |   24 +
 framework/Push/test/Horde/Push/TestCase.php                       |   33 +
 .../Push/test/Horde/Push/Unit/Push/Recipient/TwitterTest.php      |   54 +
 framework/Push/test/Horde/Push/Unit/PushTest.php                  |  101 +
 framework/Push/test/Horde/Push/phpunit.xml                        |    8 +
 framework/Push_Cli/bin/push                                       |    8 +
 framework/Push_Cli/doc/Horde/Push/Cli/COPYING                     |  281 +++
 framework/Push_Cli/lib/Horde/Push/Cli.php                         |  111 +
 framework/Push_Cli/lib/Horde/Push/Cli/Exception.php               |   30 +
 framework/Push_Cli/lib/Horde/Push/Cli/Factory/Push.php            |  168 ++
 framework/Push_Cli/lib/Horde/Push/Cli/Factory/Recipients.php      |  115 +
 framework/Push_Cli/lib/Horde/Push/Cli/Translation.php             |   63 +
 framework/Push_Cli/package.xml                                    |  126 ++
 23 files changed, 2085 insertions(+), 9 deletions(-)

http://git.horde.org/horde-git/-/commit/30e8389fd2aaead2b1a0bd27581e2eadf80157eb




More information about the commits mailing list