[commits] Horde branch master updated. b65c24d82666bba302bee7960b2f1260e02ad6ae

Michael M Slusarz slusarz at horde.org
Sat Oct 9 07:32:21 UTC 2010


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

from: d7729b3812584bcbd2fd9a2896c3c21cac74fb83

2f76218 SESSION->imp->user does not exist anymore
ea14b52 Fix object call
a975424 Ticket #8023: Add ArrayAccess implementation to Horde_Session.
bf4c43f Ticket #8023: Add transparent lzf compression to Horde_Session.
00c63fa Convert IMP to the new Horde_Session API
fcc43d0 Reduce the size/complexity of the factories definition array.
9bfb0a3 phpdoc
335beec H4 coding style
7ed4fdc Remove PEAR dependency in horde/Browser
0c1f735 Remove horde/Core dependency in Horde_Browser
465430c No need to store credentials for app if it is the same as the base horde credentials
7249639 Don't authenticate to non-applications
076f840 Start moving some framework stuff to Horde_Session.
a95d6b5 Horde_Form: H4 fixes
b65c24d Use the Horde:: token checking methods

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

commit 2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 15:00:58 2010 -0600

    SESSION->imp->user does not exist anymore

 imp/config/backends.php.dist       |    4 ++--
 imp/config/hooks.php.dist          |   12 ++++++++----
 imp/lib/Injector/Factory/Quota.php |    6 ++----
 imp/lib/Quota/Base.php             |    4 +++-
 imp/lib/Quota/Command.php          |    4 ++--
 imp/lib/Quota/Maildir.php          |    5 +----
 imp/lib/Quota/Mdaemon.php          |    6 +++++-
 imp/lib/Quota/Mercury32.php        |    2 +-
 imp/lib/Quota/Sql.php              |   13 ++++++-------
 9 files changed, 30 insertions(+), 26 deletions(-)

http://git.horde.org/diff.php/imp/config/backends.php.dist?rt=horde-git&r1=fd52519fbb69d8fd71d4620ab92854869195a55d&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
http://git.horde.org/diff.php/imp/config/hooks.php.dist?rt=horde-git&r1=fc55d6178d33ca825f59a1a2eba44c8c7daa6019&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
http://git.horde.org/diff.php/imp/lib/Injector/Factory/Quota.php?rt=horde-git&r1=cbbf69b02148b50a053b3c5f336597cbafda9e7f&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
http://git.horde.org/diff.php/imp/lib/Quota/Base.php?rt=horde-git&r1=618b889787d97cabcb906378074cfc8828e7f5ab&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
http://git.horde.org/diff.php/imp/lib/Quota/Command.php?rt=horde-git&r1=618b889787d97cabcb906378074cfc8828e7f5ab&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
http://git.horde.org/diff.php/imp/lib/Quota/Maildir.php?rt=horde-git&r1=f7a841309b4256444d8bb07d9ef64ac15215d712&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
http://git.horde.org/diff.php/imp/lib/Quota/Mdaemon.php?rt=horde-git&r1=618b889787d97cabcb906378074cfc8828e7f5ab&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
http://git.horde.org/diff.php/imp/lib/Quota/Mercury32.php?rt=horde-git&r1=618b889787d97cabcb906378074cfc8828e7f5ab&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff
http://git.horde.org/diff.php/imp/lib/Quota/Sql.php?rt=horde-git&r1=c5626b8713d562b24f7aedd8a1aebbfc4eba37f0&r2=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff

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

commit ea14b52952495f77e29ea75c45df618669a4d3f4
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 15:55:07 2010 -0600

    Fix object call

 imp/mailbox.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://git.horde.org/diff.php/imp/mailbox.php?rt=horde-git&r1=8352173fc37d37ad4a99af2a4508a8b7e9600f50&r2=ea14b52952495f77e29ea75c45df618669a4d3f4

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

commit a9754245850ddedcf552aaf73195748e24d5c79b
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 15:21:52 2010 -0600

    Ticket #8023: Add ArrayAccess implementation to Horde_Session.
    
    This is the new API for accessing session variables.  What previously
    looked like:
    $_SESSION['app']['foo']
    
    Now looks like:
    $GLOBALS['session']['app:foo']

 framework/Core/lib/Horde/Session.php |  135 +++++++++++++++++++++++++++++++++-
 1 files changed, 132 insertions(+), 3 deletions(-)

http://git.horde.org/diff.php/framework/Core/lib/Horde/Session.php?rt=horde-git&r1=d2b3eb6a89d574aac60dc5150b159d1a5aadd6bc&r2=a9754245850ddedcf552aaf73195748e24d5c79b

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

commit bf4c43fcee6137a1418658c79e0f6e15496d97f0
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 15:34:12 2010 -0600

    Ticket #8023: Add transparent lzf compression to Horde_Session.
    
    Only compress arrays and objects at this time.

 framework/Core/lib/Horde/Session.php |   41 ++++++++++++++++++++++++++-------
 framework/Core/package.xml           |    5 ++++
 2 files changed, 37 insertions(+), 9 deletions(-)

http://git.horde.org/diff.php/framework/Core/lib/Horde/Session.php?rt=horde-git&r1=a9754245850ddedcf552aaf73195748e24d5c79b&r2=bf4c43fcee6137a1418658c79e0f6e15496d97f0
http://git.horde.org/diff.php/framework/Core/package.xml?rt=horde-git&r1=6a64863d678589d3ecbce8a97c075d2bcd84d7ae&r2=bf4c43fcee6137a1418658c79e0f6e15496d97f0

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

commit 00c63fa70475450522f1f98b802f50a7c6cbb5bd
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 15:23:15 2010 -0600

    Convert IMP to the new Horde_Session API

 imp/compose-dimp.php                        |    4 +-
 imp/compose-mimp.php                        |    4 +-
 imp/compose.php                             |   14 ++--
 imp/folders-mimp.php                        |    4 +-
 imp/folders.php                             |    8 +-
 imp/lib/Ajax/Application.php                |    5 +-
 imp/lib/Ajax/Imple/ContactAutoCompleter.php |    6 +-
 imp/lib/Api.php                             |   13 ++--
 imp/lib/Application.php                     |   16 ++--
 imp/lib/Auth.php                            |  117 ++++++++++++++-------------
 imp/lib/Block/summary.php                   |    2 +-
 imp/lib/Compose.php                         |   30 ++++----
 imp/lib/Crypt/Pgp.php                       |   24 ++++--
 imp/lib/Crypt/Smime.php                     |   33 ++++----
 imp/lib/Filter.php                          |    2 +-
 imp/lib/IMP.php                             |   17 ++--
 imp/lib/Imap.php                            |   38 +++++-----
 imp/lib/Imap/Acl.php                        |    4 +-
 imp/lib/Imap/Flags.php                      |    2 +-
 imp/lib/Imap/Tree.php                       |   21 +++---
 imp/lib/Injector/Factory/AuthImap.php       |    4 +-
 imp/lib/Injector/Factory/Compose.php        |   14 +++-
 imp/lib/Injector/Factory/Imap.php           |    6 +-
 imp/lib/Injector/Factory/Imaptree.php       |   13 ++-
 imp/lib/Injector/Factory/Mail.php           |    4 +-
 imp/lib/Injector/Factory/MailboxList.php    |   13 ++--
 imp/lib/Injector/Factory/Quota.php          |   18 +++-
 imp/lib/Injector/Factory/Search.php         |   22 ++---
 imp/lib/Mailbox/List.php                    |   10 +-
 imp/lib/Message.php                         |    2 +-
 imp/lib/Mime/Viewer/Html.php                |    6 +-
 imp/lib/Mime/Viewer/Itip.php                |    2 +-
 imp/lib/Mime/Viewer/Pgp.php                 |    2 +-
 imp/lib/Mime/Viewer/Plain.php               |    2 +-
 imp/lib/Mime/Viewer/Smime.php               |    2 +-
 imp/lib/Prefs/Identity.php                  |    4 +-
 imp/lib/Prefs/Ui.php                        |   39 +++++-----
 imp/lib/Quota/Mdaemon.php                   |    2 +-
 imp/lib/Search.php                          |    3 +-
 imp/lib/Sentmail/Base.php                   |    2 +-
 imp/lib/Tree/Flist.php                      |    4 +-
 imp/lib/Ui/Block.php                        |    2 +-
 imp/lib/Ui/Message.php                      |    6 +-
 imp/lib/Views/Compose.php                   |    2 +-
 imp/lib/Views/ListMessages.php              |    4 +-
 imp/mailbox-mimp.php                        |    5 +-
 imp/mailbox.php                             |    6 +-
 imp/message-mimp.php                        |    2 +-
 imp/message.php                             |    2 +-
 imp/search-basic.php                        |    4 +-
 imp/search.php                              |    6 +-
 imp/templates/dimp/index.inc                |   10 +-
 imp/templates/dimp/javascript_defs_dimp.php |    2 +-
 imp/templates/imp/javascript_defs.php       |    2 +-
 54 files changed, 303 insertions(+), 288 deletions(-)

http://git.horde.org/diff.php/imp/compose-dimp.php?rt=horde-git&r1=4cba931280dddddf4497b0b94fa0d6a66cdea315&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/compose-mimp.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/compose.php?rt=horde-git&r1=d6b83bfb3fd0988403c6b074a855d5c2f1342e11&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/folders-mimp.php?rt=horde-git&r1=b0ee59fe2b830806015bb4a030a5106d29cb3993&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/folders.php?rt=horde-git&r1=5244ddfdc3b8f67a48aeb204d7fe79ddc7fdf3a3&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Ajax/Application.php?rt=horde-git&r1=3b7b778a19b3e9e4cd4cf75af8a46a6de3082d6c&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Ajax/Imple/ContactAutoCompleter.php?rt=horde-git&r1=6717b87acee9b8f9b42b638d7b952428021ad80f&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Api.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Application.php?rt=horde-git&r1=cbbf69b02148b50a053b3c5f336597cbafda9e7f&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Auth.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Block/summary.php?rt=horde-git&r1=bf4719ffd4d666e00287a27dc1f42085a36ccb0e&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Compose.php?rt=horde-git&r1=d1719f334a03e88cddade61b24edfec9fb59bbfc&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Crypt/Pgp.php?rt=horde-git&r1=ee55e0993d8c6777bd26c789830e3bde251114cf&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Crypt/Smime.php?rt=horde-git&r1=ee55e0993d8c6777bd26c789830e3bde251114cf&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Filter.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/IMP.php?rt=horde-git&r1=8352173fc37d37ad4a99af2a4508a8b7e9600f50&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Imap.php?rt=horde-git&r1=fd52519fbb69d8fd71d4620ab92854869195a55d&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Imap/Acl.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Imap/Flags.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Imap/Tree.php?rt=horde-git&r1=d46440a10a583a3ddf3e8d61086328eef2b566d1&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Injector/Factory/AuthImap.php?rt=horde-git&r1=cbbf69b02148b50a053b3c5f336597cbafda9e7f&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Injector/Factory/Compose.php?rt=horde-git&r1=4cba931280dddddf4497b0b94fa0d6a66cdea315&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Injector/Factory/Imap.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Injector/Factory/Imaptree.php?rt=horde-git&r1=cbbf69b02148b50a053b3c5f336597cbafda9e7f&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Injector/Factory/Mail.php?rt=horde-git&r1=cbbf69b02148b50a053b3c5f336597cbafda9e7f&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Injector/Factory/MailboxList.php?rt=horde-git&r1=3b7b778a19b3e9e4cd4cf75af8a46a6de3082d6c&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Injector/Factory/Quota.php?rt=horde-git&r1=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Injector/Factory/Search.php?rt=horde-git&r1=cbbf69b02148b50a053b3c5f336597cbafda9e7f&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Mailbox/List.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Message.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Mime/Viewer/Html.php?rt=horde-git&r1=ade9f083006ff1498f26ed3909eebc10069f685b&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Mime/Viewer/Itip.php?rt=horde-git&r1=e60da622060274282dd92c2d41c4c0dce4724dd6&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Mime/Viewer/Pgp.php?rt=horde-git&r1=6600cef25a20902e7cf54a772cf24aaed39f9a7d&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Mime/Viewer/Plain.php?rt=horde-git&r1=fc55d6178d33ca825f59a1a2eba44c8c7daa6019&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Mime/Viewer/Smime.php?rt=horde-git&r1=6600cef25a20902e7cf54a772cf24aaed39f9a7d&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Prefs/Identity.php?rt=horde-git&r1=e65bf980760b66584758f3c6e324279491ed01ed&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Prefs/Ui.php?rt=horde-git&r1=8352173fc37d37ad4a99af2a4508a8b7e9600f50&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Quota/Mdaemon.php?rt=horde-git&r1=2f76218fd0a64dc121003ca7d07edd0bd1d4e0ff&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Search.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Sentmail/Base.php?rt=horde-git&r1=618b889787d97cabcb906378074cfc8828e7f5ab&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Tree/Flist.php?rt=horde-git&r1=e51180fdcf4fa2baead760532eadc75b254b2e27&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Ui/Block.php?rt=horde-git&r1=1121fb4fdde21774156cca072cbce4f6aac49313&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Ui/Message.php?rt=horde-git&r1=8352173fc37d37ad4a99af2a4508a8b7e9600f50&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Views/Compose.php?rt=horde-git&r1=4cba931280dddddf4497b0b94fa0d6a66cdea315&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/lib/Views/ListMessages.php?rt=horde-git&r1=3b7b778a19b3e9e4cd4cf75af8a46a6de3082d6c&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/mailbox-mimp.php?rt=horde-git&r1=3b7b778a19b3e9e4cd4cf75af8a46a6de3082d6c&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/mailbox.php?rt=horde-git&r1=ea14b52952495f77e29ea75c45df618669a4d3f4&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/message-mimp.php?rt=horde-git&r1=8352173fc37d37ad4a99af2a4508a8b7e9600f50&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/message.php?rt=horde-git&r1=5244ddfdc3b8f67a48aeb204d7fe79ddc7fdf3a3&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/search-basic.php?rt=horde-git&r1=5244ddfdc3b8f67a48aeb204d7fe79ddc7fdf3a3&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/search.php?rt=horde-git&r1=746fd8a136b2d33195b65baff5d31b41e0f747d9&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/templates/dimp/index.inc?rt=horde-git&r1=ba07223fe4914281def4deba824852ec8991086f&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/templates/dimp/javascript_defs_dimp.php?rt=horde-git&r1=ee55e0993d8c6777bd26c789830e3bde251114cf&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd
http://git.horde.org/diff.php/imp/templates/imp/javascript_defs.php?rt=horde-git&r1=ee55e0993d8c6777bd26c789830e3bde251114cf&r2=00c63fa70475450522f1f98b802f50a7c6cbb5bd

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

commit fcc43d0691b5586b2e5bc7e17021eceea6d3c3c8
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 16:35:51 2010 -0600

    Reduce the size/complexity of the factories definition array.

 framework/Core/lib/Horde/Registry.php |  122 ++++++++-------------------------
 1 files changed, 29 insertions(+), 93 deletions(-)

http://git.horde.org/diff.php/framework/Core/lib/Horde/Registry.php?rt=horde-git&r1=52721373f1d94edff24a3e119043b68d60f8ce61&r2=fcc43d0691b5586b2e5bc7e17021eceea6d3c3c8

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

commit 9bfb0a3731277593e792991236dd430d779924c0
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 16:53:07 2010 -0600

    phpdoc

 framework/Browser/lib/Horde/Browser.php           |    2 +-
 framework/Browser/lib/Horde/Browser/Exception.php |    4 ++--
 framework/Browser/lib/Horde/Browser/Imode.php     |    5 +++--
 3 files changed, 6 insertions(+), 5 deletions(-)

http://git.horde.org/diff.php/framework/Browser/lib/Horde/Browser.php?rt=horde-git&r1=84ff50960b31e40ffedb0719088f86760e5d352c&r2=9bfb0a3731277593e792991236dd430d779924c0
http://git.horde.org/diff.php/framework/Browser/lib/Horde/Browser/Exception.php?rt=horde-git&r1=c2e1ddffae57a1f7b1687ae4594f5848bdcfe2d1&r2=9bfb0a3731277593e792991236dd430d779924c0
http://git.horde.org/diff.php/framework/Browser/lib/Horde/Browser/Imode.php?rt=horde-git&r1=c20ac2d6ea33159089724f2bda526bfeae1e7fc4&r2=9bfb0a3731277593e792991236dd430d779924c0

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

commit 335beecd44c9e602b5c54dff8eec144f318d18ba
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 16:53:26 2010 -0600

    H4 coding style

 framework/Browser/lib/Horde/Browser/Imode.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/framework/Browser/lib/Horde/Browser/Imode.php?rt=horde-git&r1=9bfb0a3731277593e792991236dd430d779924c0&r2=335beecd44c9e602b5c54dff8eec144f318d18ba

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

commit 7ed4fdc089e8a4f60545b4ea4a602d63b49de486
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 16:53:44 2010 -0600

    Remove PEAR dependency in horde/Browser

 framework/Browser/lib/Horde/Browser/Imode.php |    5 +++--
 framework/Browser/package.xml                 |   13 ++++++-------
 2 files changed, 9 insertions(+), 9 deletions(-)

http://git.horde.org/diff.php/framework/Browser/lib/Horde/Browser/Imode.php?rt=horde-git&r1=335beecd44c9e602b5c54dff8eec144f318d18ba&r2=7ed4fdc089e8a4f60545b4ea4a602d63b49de486
http://git.horde.org/diff.php/framework/Browser/package.xml?rt=horde-git&r1=84ff50960b31e40ffedb0719088f86760e5d352c&r2=7ed4fdc089e8a4f60545b4ea4a602d63b49de486

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

commit 0c1f7359e97b66a36633d66b3a1fc0c97bc9dc66
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 16:55:18 2010 -0600

    Remove horde/Core dependency in Horde_Browser

 framework/Browser/lib/Horde/Browser.php           |   52 -------------
 framework/Browser/package.xml                     |    2 +-
 framework/Core/lib/Horde/Core/Browser.php         |   80 +++++++++++++++++++++
 framework/Core/lib/Horde/Core/Factory/Browser.php |   15 ++++
 framework/Core/lib/Horde/Registry.php             |    3 +-
 framework/Core/package.xml                        |    4 +
 6 files changed, 102 insertions(+), 54 deletions(-)
 create mode 100644 framework/Core/lib/Horde/Core/Browser.php
 create mode 100644 framework/Core/lib/Horde/Core/Factory/Browser.php

http://git.horde.org/diff.php/framework/Browser/lib/Horde/Browser.php?rt=horde-git&r1=9bfb0a3731277593e792991236dd430d779924c0&r2=0c1f7359e97b66a36633d66b3a1fc0c97bc9dc66
http://git.horde.org/diff.php/framework/Browser/package.xml?rt=horde-git&r1=7ed4fdc089e8a4f60545b4ea4a602d63b49de486&r2=0c1f7359e97b66a36633d66b3a1fc0c97bc9dc66
http://git.horde.org/co.php/framework/Core/lib/Horde/Core/Browser.php?rt=horde-git&r=0c1f7359e97b66a36633d66b3a1fc0c97bc9dc66
http://git.horde.org/co.php/framework/Core/lib/Horde/Core/Factory/Browser.php?rt=horde-git&r=0c1f7359e97b66a36633d66b3a1fc0c97bc9dc66
http://git.horde.org/diff.php/framework/Core/lib/Horde/Registry.php?rt=horde-git&r1=fcc43d0691b5586b2e5bc7e17021eceea6d3c3c8&r2=0c1f7359e97b66a36633d66b3a1fc0c97bc9dc66
http://git.horde.org/diff.php/framework/Core/package.xml?rt=horde-git&r1=bf4c43fcee6137a1418658c79e0f6e15496d97f0&r2=0c1f7359e97b66a36633d66b3a1fc0c97bc9dc66

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

commit 465430cbe4ff3840d08b033231bb3c0a373b6121
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 17:30:32 2010 -0600

    No need to store credentials for app if it is the same as the base horde credentials

 framework/Core/lib/Horde/Registry.php |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

http://git.horde.org/diff.php/framework/Core/lib/Horde/Registry.php?rt=horde-git&r1=0c1f7359e97b66a36633d66b3a1fc0c97bc9dc66&r2=465430cbe4ff3840d08b033231bb3c0a373b6121

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

commit 724963997513e9645feaaf3b3d8fd82ebdf344cc
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Sat Oct 9 01:00:19 2010 -0600

    Don't authenticate to non-applications

 framework/Core/lib/Horde/Core/Sidebar.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

http://git.horde.org/diff.php/framework/Core/lib/Horde/Core/Sidebar.php?rt=horde-git&r1=d46440a10a583a3ddf3e8d61086328eef2b566d1&r2=724963997513e9645feaaf3b3d8fd82ebdf344cc

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

commit 076f840558bd01446d2a3f9d26ae6e6df0ffbf37
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Fri Oct 8 16:55:33 2010 -0600

    Start moving some framework stuff to Horde_Session.

 framework/Alarm/lib/Horde/Alarm.php            |   12 +++++++-----
 framework/Block/lib/Horde/Block/Collection.php |    7 ++++---
 framework/Core/lib/Horde.php                   |    9 ++++++---
 framework/Core/lib/Horde/Core/Prefs/Ui.php     |    6 +++---
 framework/Form/Form.php                        |    8 ++++----
 5 files changed, 24 insertions(+), 18 deletions(-)

http://git.horde.org/diff.php/framework/Alarm/lib/Horde/Alarm.php?rt=horde-git&r1=7a2d81fd76e0612c270c8250c9ea50131e1b421f&r2=076f840558bd01446d2a3f9d26ae6e6df0ffbf37
http://git.horde.org/diff.php/framework/Block/lib/Horde/Block/Collection.php?rt=horde-git&r1=e996f37f779a7d49e97a20a589252f04bab79ded&r2=076f840558bd01446d2a3f9d26ae6e6df0ffbf37
http://git.horde.org/diff.php/framework/Core/lib/Horde.php?rt=horde-git&r1=8352173fc37d37ad4a99af2a4508a8b7e9600f50&r2=076f840558bd01446d2a3f9d26ae6e6df0ffbf37
http://git.horde.org/diff.php/framework/Core/lib/Horde/Core/Prefs/Ui.php?rt=horde-git&r1=ec604b28b431054f96ce346520e8b98de031102a&r2=076f840558bd01446d2a3f9d26ae6e6df0ffbf37
http://git.horde.org/diff.php/framework/Form/Form.php?rt=horde-git&r1=98a35a329803b90e1530f24660b002495d35b81a&r2=076f840558bd01446d2a3f9d26ae6e6df0ffbf37

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

commit a95d6b5909d417d8986b247eb4028d8011b1f23e
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Sat Oct 9 01:24:48 2010 -0600

    Horde_Form: H4 fixes
    
    Form still has a bunch of things that need to be converted.

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

http://git.horde.org/diff.php/framework/Form/package.xml?rt=horde-git&r1=9cb1db2414871d3c98a0ebed0d11288c84cb384f&r2=a95d6b5909d417d8986b247eb4028d8011b1f23e

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

commit b65c24d82666bba302bee7960b2f1260e02ad6ae
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Sat Oct 9 01:30:07 2010 -0600

    Use the Horde:: token checking methods

 koward/lib/Koward.php                             |   33 ---------------------
 koward/lib/Koward/Cli.php                         |    6 +--
 koward/lib/Koward/Controller/ObjectController.php |    8 ++--
 koward/test/Koward/KowardTest.php                 |   28 -----------------
 4 files changed, 6 insertions(+), 69 deletions(-)

http://git.horde.org/diff.php/koward/lib/Koward.php?rt=horde-git&r1=f4f153147c89de458e435625189b68f05cf8ac4c&r2=b65c24d82666bba302bee7960b2f1260e02ad6ae
http://git.horde.org/diff.php/koward/lib/Koward/Cli.php?rt=horde-git&r1=f4f153147c89de458e435625189b68f05cf8ac4c&r2=b65c24d82666bba302bee7960b2f1260e02ad6ae
http://git.horde.org/diff.php/koward/lib/Koward/Controller/ObjectController.php?rt=horde-git&r1=7f7a4300f16b429ed645bc3e2af2cedffc70ce3e&r2=b65c24d82666bba302bee7960b2f1260e02ad6ae
http://git.horde.org/diff.php/koward/test/Koward/KowardTest.php?rt=horde-git&r1=4d249a3af4faea6509fe8da806264dd5d87ab4e5&r2=b65c24d82666bba302bee7960b2f1260e02ad6ae




More information about the commits mailing list