[commits] Horde branch master updated.

Michael M Slusarz slusarz at horde.org
Mon Jul 6 03:53:02 UTC 2009


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

from: 909134e15a0f30646b7360144a1613d34243dec4

2cd2155... Logging & error reporting tweaks
9520e89... POP3 driver improvements.
2f81bd8... Remove Blowfish and Cast128 ciphers
98864ec... Add stream fetch() output to Cclient driver

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

commit 2cd215590c0adc601109d419db746377dc1f1954
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Sun Jul 5 15:05:59 2009 -0600

    Logging & error reporting tweaks

 framework/Imap_Client/lib/Horde/Imap/Client/Exception.php   |    4 ++--
 framework/Imap_Client/lib/Horde/Imap/Client/Socket.php      |    4 ++--
 framework/Imap_Client/lib/Horde/Imap/Client/Socket/Pop3.php |    9 +++++++--
 3 files changed, 11 insertions(+), 6 deletions(-)

http://git.horde.org/diff.php/framework/Imap_Client/lib/Horde/Imap/Client/Exception.php?rt=horde-git&r1=2a35f0e6f049707fee6f36b1c7f6d0c043c2ff00&r2=2cd215590c0adc601109d419db746377dc1f1954
http://git.horde.org/diff.php/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php?rt=horde-git&r1=7acc33f2f785e6e9e72f658e6a005db0917b4761&r2=2cd215590c0adc601109d419db746377dc1f1954
http://git.horde.org/diff.php/framework/Imap_Client/lib/Horde/Imap/Client/Socket/Pop3.php?rt=horde-git&r1=e32ce532ae9313ef6d9acf0f58daa44d4507b875&r2=2cd215590c0adc601109d419db746377dc1f1954

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

commit 9520e89e1b86b753e0761f935bcfc699dd4b7cad
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Sun Jul 5 21:37:58 2009 -0600

    POP3 driver improvements.
    
    Implement capability checking for servers which lack CAPA.
    Implement getID() for POP3 servers that support the IMPLEMENTATION
    capability string.
    Use streams internally for body data.
    Honor 'stream' argument to various fetch() functions.

 framework/Imap_Client/lib/Horde/Imap/Client/Socket/Pop3.php |  116 ++++++++---
 1 files changed, 84 insertions(+), 32 deletions(-)

http://git.horde.org/diff.php/framework/Imap_Client/lib/Horde/Imap/Client/Socket/Pop3.php?rt=horde-git&r1=2cd215590c0adc601109d419db746377dc1f1954&r2=9520e89e1b86b753e0761f935bcfc699dd4b7cad

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

commit 2f81bd807f54c0a35e480c7fe639b25bae09970c
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Sun Jul 5 21:52:30 2009 -0600

    Remove Blowfish and Cast128 ciphers

 framework/Cipher/lib/Horde/Cipher/Blowfish.php          |  468 ----------
 framework/Cipher/lib/Horde/Cipher/Cast128.php           |  693 ---------------
 framework/Cipher/package.xml                            |   11 +-
 framework/Cipher/test/Horde/Cipher/Cipher5.phpt         |  155 ----
 framework/Cipher/test/Horde/Cipher/Cipher6.phpt         |   76 --
 framework/Cipher/test/Horde/Cipher/cipher_functions.php |   18 -
 6 files changed, 2 insertions(+), 1419 deletions(-)
 delete mode 100644 framework/Cipher/lib/Horde/Cipher/Blowfish.php
 delete mode 100644 framework/Cipher/lib/Horde/Cipher/Cast128.php
 delete mode 100644 framework/Cipher/test/Horde/Cipher/Cipher5.phpt
 delete mode 100644 framework/Cipher/test/Horde/Cipher/Cipher6.phpt

http://git.horde.org/diff.php/framework/Cipher/lib/Horde/Cipher/Blowfish.php?rt=horde-git&r1=2c018fb41a8d8b9b39d14260ff2aeeb7cf091548&r2=2f81bd807f54c0a35e480c7fe639b25bae09970c
http://git.horde.org/diff.php/framework/Cipher/lib/Horde/Cipher/Cast128.php?rt=horde-git&r1=2c018fb41a8d8b9b39d14260ff2aeeb7cf091548&r2=2f81bd807f54c0a35e480c7fe639b25bae09970c
http://git.horde.org/diff.php/framework/Cipher/package.xml?rt=horde-git&r1=2c018fb41a8d8b9b39d14260ff2aeeb7cf091548&r2=2f81bd807f54c0a35e480c7fe639b25bae09970c
http://git.horde.org/diff.php/framework/Cipher/test/Horde/Cipher/Cipher5.phpt?rt=horde-git&r1=2c018fb41a8d8b9b39d14260ff2aeeb7cf091548&r2=2f81bd807f54c0a35e480c7fe639b25bae09970c
http://git.horde.org/diff.php/framework/Cipher/test/Horde/Cipher/Cipher6.phpt?rt=horde-git&r1=2c018fb41a8d8b9b39d14260ff2aeeb7cf091548&r2=2f81bd807f54c0a35e480c7fe639b25bae09970c
http://git.horde.org/diff.php/framework/Cipher/test/Horde/Cipher/cipher_functions.php?rt=horde-git&r1=2c018fb41a8d8b9b39d14260ff2aeeb7cf091548&r2=2f81bd807f54c0a35e480c7fe639b25bae09970c

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

commit 98864eceaab4946bd6470a6993bebba54296c4e1
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Sun Jul 5 21:52:58 2009 -0600

    Add stream fetch() output to Cclient driver

 framework/Imap_Client/lib/Horde/Imap/Client/Cclient.php |   23 +++++++++++++--
 framework/Imap_Client/lib/Horde/Imap/Client/Socket.php  |    3 +-
 2 files changed, 21 insertions(+), 5 deletions(-)

http://git.horde.org/diff.php/framework/Imap_Client/lib/Horde/Imap/Client/Cclient.php?rt=horde-git&r1=370ebf4b20c29e4c7012d23ec942a02fb0ac426c&r2=98864eceaab4946bd6470a6993bebba54296c4e1
http://git.horde.org/diff.php/framework/Imap_Client/lib/Horde/Imap/Client/Socket.php?rt=horde-git&r1=2cd215590c0adc601109d419db746377dc1f1954&r2=98864eceaab4946bd6470a6993bebba54296c4e1




More information about the commits mailing list