[commits] Horde branch master updated. 2d5a3a4fdbf38b70e2d4f3a86ffd7059ee8ae30e

Michael M Slusarz slusarz at horde.org
Thu Sep 30 18:08:13 UTC 2010


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

from: 6b609a77f9d6a96635955d7bb5d6bbe96fdf501a

92dd1eb Split IMP_Mailbox into two separate classes.
3e17c2b Don't show collapsed mailboxes by default in simplehtml renderer
d633e76 simplehtml renderer: show toggle after to make elements line up better
7c47587 phpdoc; better logic
687c73d Fix forwarding in dimp if only forwarding one message
f3fc5b6 args may not be defined
2d5a3a4 Move compose loading graphic into the textarea box

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

commit 92dd1eb28d591865518ac5e9a8016029f1487d94
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Mon Sep 27 15:31:22 2010 -0600

    Split IMP_Mailbox into two separate classes.
    
    One holds the sorted list information, one extends to include array
    index tracking (since this part of the class is only used in the message
    views of IMP/MIMP).
    Improve serialization of this data.

 imp/config/hooks.php.dist                |    6 +-
 imp/lib/Ajax/Application.php             |    8 +-
 imp/lib/Application.php                  |    2 +-
 imp/lib/Indices.php                      |    4 +-
 imp/lib/Injector/Binder/Mailbox.php      |   31 --
 imp/lib/Injector/Binder/MailboxList.php  |   31 ++
 imp/lib/Injector/Factory/Mailbox.php     |   74 ---
 imp/lib/Injector/Factory/MailboxList.php |  126 +++++
 imp/lib/Mailbox.php                      |  792 ------------------------------
 imp/lib/Mailbox/List.php                 |  741 ++++++++++++++++++++++++++++
 imp/lib/Mailbox/List/Track.php           |  155 ++++++
 imp/lib/Message.php                      |    8 +-
 imp/lib/Spam.php                         |    2 +-
 imp/lib/Views/ListMessages.php           |   12 +-
 imp/mailbox-mimp.php                     |    2 +-
 imp/mailbox.php                          |    2 +-
 imp/message-mimp.php                     |    2 +-
 imp/message.php                          |    2 +-
 imp/rss.php                              |    2 +-
 imp/thread.php                           |    2 +-
 20 files changed, 1080 insertions(+), 924 deletions(-)
 delete mode 100644 imp/lib/Injector/Binder/Mailbox.php
 create mode 100644 imp/lib/Injector/Binder/MailboxList.php
 delete mode 100644 imp/lib/Injector/Factory/Mailbox.php
 create mode 100644 imp/lib/Injector/Factory/MailboxList.php
 delete mode 100644 imp/lib/Mailbox.php
 create mode 100644 imp/lib/Mailbox/List.php
 create mode 100644 imp/lib/Mailbox/List/Track.php

http://git.horde.org/diff.php/imp/config/hooks.php.dist?rt=horde-git&r1=6b2c7d5e725f211a601798d707c631ba710748e2&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Ajax/Application.php?rt=horde-git&r1=5cf6024e5df05a355d3a53ab46486da04faeb27e&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Application.php?rt=horde-git&r1=de5fc2fd52dcdf366f811609b92aac293e1092d4&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Indices.php?rt=horde-git&r1=ee41befbee2e640ba74e255e9bd4a15d0fd675d2&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Injector/Binder/Mailbox.php?rt=horde-git&r1=bf4719ffd4d666e00287a27dc1f42085a36ccb0e&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/co.php/imp/lib/Injector/Binder/MailboxList.php?rt=horde-git&r=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Injector/Factory/Mailbox.php?rt=horde-git&r1=bf4719ffd4d666e00287a27dc1f42085a36ccb0e&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/co.php/imp/lib/Injector/Factory/MailboxList.php?rt=horde-git&r=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Mailbox.php?rt=horde-git&r1=e6a5a80835ffcf5a625383ad0d68754676c42b71&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/co.php/imp/lib/Mailbox/List.php?rt=horde-git&r=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/co.php/imp/lib/Mailbox/List/Track.php?rt=horde-git&r=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Message.php?rt=horde-git&r1=0b933ffd4447d918f445484d43a70d70ff25bc27&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Spam.php?rt=horde-git&r1=c290069b9aac6172344281ac2efedda2620b95d3&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/lib/Views/ListMessages.php?rt=horde-git&r1=5cf6024e5df05a355d3a53ab46486da04faeb27e&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/mailbox-mimp.php?rt=horde-git&r1=0b933ffd4447d918f445484d43a70d70ff25bc27&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/mailbox.php?rt=horde-git&r1=8267407b9326e82ce455e88ebd87d5841e0c3268&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/message-mimp.php?rt=horde-git&r1=c290069b9aac6172344281ac2efedda2620b95d3&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/message.php?rt=horde-git&r1=c1ab6e56046c7cb7a9a163baab6af8842c96a076&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/rss.php?rt=horde-git&r1=e6a5a80835ffcf5a625383ad0d68754676c42b71&r2=92dd1eb28d591865518ac5e9a8016029f1487d94
http://git.horde.org/diff.php/imp/thread.php?rt=horde-git&r1=7277728730e6ab11d05f3a5f0c7133315a350917&r2=92dd1eb28d591865518ac5e9a8016029f1487d94

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

commit 3e17c2bde9070bf8b237962fbb2f6e42789d6de6
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Sep 28 11:58:08 2010 -0600

    Don't show collapsed mailboxes by default in simplehtml renderer

 imp/lib/Imap/Tree.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/imp/lib/Imap/Tree.php?rt=horde-git&r1=e6a5a80835ffcf5a625383ad0d68754676c42b71&r2=3e17c2bde9070bf8b237962fbb2f6e42789d6de6

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

commit d633e769b121026aca7a3c78d69b607b59cb2575
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Tue Sep 28 11:59:15 2010 -0600

    simplehtml renderer: show toggle after to make elements line up better

 framework/Tree/lib/Horde/Tree/Simplehtml.php |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)

http://git.horde.org/diff.php/framework/Tree/lib/Horde/Tree/Simplehtml.php?rt=horde-git&r1=a561d04ceedd0e676b6db2996c9e047566631c92&r2=d633e769b121026aca7a3c78d69b607b59cb2575

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

commit 7c47587b2677bd61fd1b18d28741c63b83d932d2
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Wed Sep 29 16:29:01 2010 -0600

    phpdoc; better logic

 imp/lib/Contents.php |   17 +++++++----------
 1 files changed, 7 insertions(+), 10 deletions(-)

http://git.horde.org/diff.php/imp/lib/Contents.php?rt=horde-git&r1=eaf0ec8bbaaeb1405863771dcc7d9e44f05072c8&r2=7c47587b2677bd61fd1b18d28741c63b83d932d2

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

commit 687c73d6c0078fe9f2181a5b9f2e86e69ed68d43
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Thu Sep 30 11:47:06 2010 -0600

    Fix forwarding in dimp if only forwarding one message

 imp/compose-dimp.php   |   19 +++++++++++--------
 imp/lib/Ui/Compose.php |    2 ++
 2 files changed, 13 insertions(+), 8 deletions(-)

http://git.horde.org/diff.php/imp/compose-dimp.php?rt=horde-git&r1=e576e8df0a59449aa36f0e0e1f71f4f1d973f3fb&r2=687c73d6c0078fe9f2181a5b9f2e86e69ed68d43
http://git.horde.org/diff.php/imp/lib/Ui/Compose.php?rt=horde-git&r1=e576e8df0a59449aa36f0e0e1f71f4f1d973f3fb&r2=687c73d6c0078fe9f2181a5b9f2e86e69ed68d43

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

commit f3fc5b64e3047efbe55e21248ae444bdcde598c8
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Thu Sep 30 11:50:55 2010 -0600

    args may not be defined

 imp/js/dimpcore.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/diff.php/imp/js/dimpcore.js?rt=horde-git&r1=e0da9f53f2af6c5b6c30ffca75b4b9939655d138&r2=f3fc5b64e3047efbe55e21248ae444bdcde598c8

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

commit 2d5a3a4fdbf38b70e2d4f3a86ffd7059ee8ae30e
Author: Michael M Slusarz <slusarz at curecanti.org>
Date:   Thu Sep 30 12:03:41 2010 -0600

    Move compose loading graphic into the textarea box

 imp/templates/dimp/chunks/compose.php |    8 ++++----
 imp/themes/dimp/ie7.css               |   11 ++++++++++-
 imp/themes/dimp/screen.css            |    9 +++++++--
 3 files changed, 21 insertions(+), 7 deletions(-)

http://git.horde.org/diff.php/imp/templates/dimp/chunks/compose.php?rt=horde-git&r1=c15384659293c558d80cc752fc73e89c568c7803&r2=2d5a3a4fdbf38b70e2d4f3a86ffd7059ee8ae30e
http://git.horde.org/diff.php/imp/themes/dimp/ie7.css?rt=horde-git&r1=814e2509aef27451e94e68a986c027cfe5993c08&r2=2d5a3a4fdbf38b70e2d4f3a86ffd7059ee8ae30e
http://git.horde.org/diff.php/imp/themes/dimp/screen.css?rt=horde-git&r1=e6a5a80835ffcf5a625383ad0d68754676c42b71&r2=2d5a3a4fdbf38b70e2d4f3a86ffd7059ee8ae30e




More information about the commits mailing list