[commits] Horde branch develop updated. 6273181d3dacf25919e9436fe80cb86fca455387

Michael M Slusarz slusarz at horde.org
Sun Dec 4 01:41:38 UTC 2011


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

from: f3b52094638562e32069e91e1f8f812ec249d21a

44152f4 This credential no longer exists
4d56979 [mms] Fix 'server' credential in preauthenticate hook.
b4a757a [mms] Redirect to login page if IMAP credentials are lost somehow during the session.
16bdd49 Better workaround for broken Horde installations.
4d88ec0 Add look behind assertion to avoid including question marks in the end-of-url match.
82691b5 Move temperature unit to the actual temperatures.
52ad954 Sanity checking when grabbing the mailboxlist object from the session
aa477ad Workaround IE JS lameness
73d3b0b Add ingo defaults.
8b53536 Extended Autoloading description.
7ae67b3 Typo.
510c8b8 [mms] Fix setting compose message body on IE 9 in dynamic view.
859071f HTML editor may not be available yet here in IE
4c90470 Export the detailed fields that each driver supports.
81d792c Only display the columns for detailed forecast fields if the driver supports the field.
fffb62c changes
48c03f7 Don't display 'N/A' if precipitation_percent is set,  but equal to zero.
52d92d0 Update nl translation.
116f687 New Dutch translator.
8774bb7 [jan] Update Dutch translation (Pieterjan Heyse <pieterjan.heyse at scheppers-wetteren.be>).
ea37fb9 [jan] Check permissions when building application drop down (sberthelot at emisfr.com, Bug #10811).
e20ff02 Add note how to set the vhost when running CLI scripts (Bug #10758).
6ef1dfb [jan] Automatically create parent permissions when adding the first restricted comment.
f0d7974 [jan] Catch exceptions from Horde_Mime when sending alarm messages (Bug #10388).
73378c5 Agora threads tree doesn't have an icon.
1573349e Use the ajax framework to save the panel expansion state (Bug #10797).
80265ca [jan] Correctly parse "nacht" in German (Bug #10511).
39a0d24 [jan] Don't fail on empty CalDAV calendars (christof at buergi.lugs.ch, Bug #10739).
a9816a1 Fix object.
38f4fb2 Add unit test for bug #10759.
657972e [jan] Add Dutch translation (Arjen de Korte <build+horde at de-korte.org>).
173c6d3 [mms] Fix for broken 8BITMIME/BINARYMIME SMTP capability detection (Bug #10820).
f9d0144 Released Horde_Mime-1.3.2
4907a64 Development mode for Horde_Mime-1.3.3
6f435e0 Fix regressions in search mailboxes due to Ticket #9773
3fbcc23 No need to poll remote/listTimeObject calendars here.
03176d0 phpdoc
f21318f The 'date' form field was renamed to 'startdate'.
9900b93 Use the driver's listEvents() method, not the deprecated Kronolith::listEvents()
45d184d Even shorter.
5f9d53c Fix function order (Bug #10831).
3e02739 [mms] Fix unnecessary use of POSIX collating element in Linkurls filter (Bug #10828; jr at yaina.de).
90b4222 [mms] Don't list parent mailboxes after child mailboxes (Bug #10802).
672c9dc Make sure viewport loading icon is cleared whenver the viewport list is loaded
73308d4 This method should be protected
2cc3181 [mms] Add ability to quickly add unsubscribed mailboxes to available search mailboxes in advanced search (Request #10832).
80085b9 Merge branch 'master' into develop
6273181 This got lost somewhere.

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

commit 44152f4dacdf79c231cd0b3198fcfdb5f757ffcd
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Nov 29 01:22:24 2011 -0700

    This credential no longer exists

 imp/lib/Application.php |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/44152f4dacdf79c231cd0b3198fcfdb5f757ffcd

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

commit 4d56979bef8c5c4424a7ce1516604429f5dbc8d8
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Nov 29 01:22:46 2011 -0700

    [mms] Fix 'server' credential in preauthenticate hook.

 imp/docs/CHANGES        |    1 +
 imp/lib/Application.php |   10 +++++++++-
 imp/package.xml         |    2 ++
 3 files changed, 12 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/4d56979bef8c5c4424a7ce1516604429f5dbc8d8

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

commit b4a757a9922102f849bb3d45c94d99f7a4b634a4
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Nov 29 01:59:36 2011 -0700

    [mms] Redirect to login page if IMAP credentials are lost somehow during the session.

 imp/docs/CHANGES |    2 ++
 imp/lib/Imap.php |    7 ++++++-
 imp/package.xml  |    2 ++
 3 files changed, 10 insertions(+), 1 deletions(-)

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

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

commit 16bdd494ac076d2b392af452932691009bf84b88
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Nov 29 02:33:51 2011 -0700

    Better workaround for broken Horde installations.
    
    If something crashes on initial IMP login, we could potentially lose
    authentication information.  Instead, on initial IMAP object creation,
    explicitly store in the session to give best shot of maintaining this
    data in case something happens.

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

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

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

commit 4d88ec0f5d9dd342818d18a2f02fdd1fdcbf1051
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Nov 29 15:23:59 2011 +0100

    Add look behind assertion to avoid including question marks in the end-of-url match.
    
    Comments concerning the fix:
    
    I admit I do not fully understand the reason why the regex does not
    match the long sequence of question marks. The matching works up to
    about ten question marks and then magically fails. I assume there is
    some kind of backtracking mechanism that fails once a certain count is
    hit. The middle part of the regex will certainly encompasses the
    complete test string at first. When the regex mechanism tries to match
    the end-of-url part (see "End with:" in the regex) it will need to
    backtrack and reduce the middle match. To me it looks as if this
    backtracking has limits. Why the look behind assertion cures this is
    also not 100% clear to me.
    
    So this is just a suggestion that needs checking and I won't complain
    if it is reverted :)
    
    
    Concerning breaking the build:
    
    I don't see a reason why a test got added with the explicit intention
    of breaking the build. The tested problem does not seem to be any
    critical issue that would require immediate fixing. Which is also
    suggested by the amount of time it was left unfixed.
    
    I would suggest to add a test marked as incomplete in such cases. And
    at the same time a corresponding issue should be opened in our bug
    tracker and linked in a comment to the test method.

 framework/Text_Filter/lib/Horde/Text/Filter/Linkurls.php |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/4d88ec0f5d9dd342818d18a2f02fdd1fdcbf1051

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

commit 82691b5a82a1237d879cf028b9f58a939425049b
Author: Jan Schneider <jan at horde.org>
Date:   Tue Nov 29 18:06:53 2011 +0100

    Move temperature unit to the actual temperatures.
    
    It makes more sense there, and there's more room than in the header too.

 horde/lib/Block/Weather.php |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

http://git.horde.org/horde-git/-/commit/82691b5a82a1237d879cf028b9f58a939425049b

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

commit 52ad954e778f2f337ab7787a61f4f9fb4f8e1f59
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Nov 29 11:13:31 2011 -0700

    Sanity checking when grabbing the mailboxlist object from the session

 imp/lib/Factory/MailboxList.php |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/52ad954e778f2f337ab7787a61f4f9fb4f8e1f59

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

commit aa477ad5b547c6035d0006a2af38818f9d7fd455
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Nov 29 11:18:53 2011 -0700

    Workaround IE JS lameness

 imp/js/imp.js |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

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

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

commit 73d3b0b336c99bdded18863cb4969c39bd8d5c96
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Nov 29 19:44:52 2011 +0100

    Add ingo defaults.

 bundles/kolab_webmail/ingo/config/conf.d/20-kolab.xml |    8 ++++++++
 bundles/kolab_webmail/package.xml                     |   10 +++++++---
 2 files changed, 15 insertions(+), 3 deletions(-)
 create mode 100644 bundles/kolab_webmail/ingo/config/conf.d/20-kolab.xml

http://git.horde.org/horde-git/-/commit/73d3b0b336c99bdded18863cb4969c39bd8d5c96

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

commit 8b53536025d073d32b8b51cd07ce6fb159948c12
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Nov 29 20:02:33 2011 +0100

    Extended Autoloading description.

 horde/docs/PERFORMANCE |   15 +++++++++++++--
 1 files changed, 13 insertions(+), 2 deletions(-)

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

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

commit 7ae67b33cbb8a11b1a646d4e174e83bddb1737be
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Nov 29 21:30:40 2011 +0100

    Typo.

 bundles/kolab_webmail/ingo/config/conf.d/20-kolab.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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

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

commit 510c8b89aab2261fdbf1c24c7b3762096795d665
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Nov 29 14:46:57 2011 -0700

    [mms] Fix setting compose message body on IE 9 in dynamic view.

 imp/compose-dimp.php |    2 +-
 imp/docs/CHANGES     |    1 +
 imp/package.xml      |    2 ++
 3 files changed, 4 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/510c8b89aab2261fdbf1c24c7b3762096795d665

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

commit 859071ffbe96ac1fb57ca6fe31d846108edb8598
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Nov 29 14:49:40 2011 -0700

    HTML editor may not be available yet here in IE

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

http://git.horde.org/horde-git/-/commit/859071ffbe96ac1fb57ca6fe31d846108edb8598

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

commit 4c90470ff85e37a4b722f1e7fe094fe83bd9c9ed
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Tue Nov 29 21:48:44 2011 -0500

    Export the detailed fields that each driver supports.
    
    Bug: 10813

 framework/Service_Weather/lib/Horde/Service/Weather.php           |    4 +++
 .../Service_Weather/lib/Horde/Service/Weather/Forecast/Google.php |    3 ++
 .../lib/Horde/Service/Weather/Forecast/WeatherUnderground.php     |    6 +++++
 .../Service_Weather/lib/Horde/Service/Weather/Forecast/Wwo.php    |    4 +++
 framework/Service_Weather/package.xml                             |    2 +
 5 files changed, 19 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/4c90470ff85e37a4b722f1e7fe094fe83bd9c9ed

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

commit 81d792c5d6795a7b0a1d7bd1cf9c6522c26e6670
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Tue Nov 29 21:50:44 2011 -0500

    Only display the columns for detailed forecast fields if the driver supports the field.
    
    Bug: 10813

 horde/lib/Block/Weather.php |   83 ++++++++++++++++++++-----------------------
 1 files changed, 39 insertions(+), 44 deletions(-)

http://git.horde.org/horde-git/-/commit/81d792c5d6795a7b0a1d7bd1cf9c6522c26e6670

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

commit fffb62c4d7f2d73a24648306162167a869802faf
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Tue Nov 29 22:00:03 2011 -0500

    changes

 horde/docs/CHANGES |    1 +
 horde/package.xml  |    2 ++
 2 files changed, 3 insertions(+), 0 deletions(-)

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

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

commit 48c03f7ecfdc1879b9b6608003846ec968b0f04e
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Tue Nov 29 22:00:16 2011 -0500

    Don't display 'N/A' if precipitation_percent is set,  but equal to zero.

 horde/lib/Block/Weather.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/48c03f7ecfdc1879b9b6608003846ec968b0f04e

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

commit 52d92d0dfb932a503e854e6a9a1a2fd291d28bfa
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 11:14:13 2011 +0100

    Update nl translation.

 horde/locale/nl/LC_MESSAGES/horde.mo |  Bin 49166 -> 49163 bytes
 horde/locale/nl/LC_MESSAGES/horde.po |    4 +-
 imp/locale/nl/LC_MESSAGES/imp.mo     |  Bin 243051 -> 150014 bytes
 imp/locale/nl/LC_MESSAGES/imp.po     | 6037 +++++++++++++++++++---------------
 4 files changed, 3330 insertions(+), 2711 deletions(-)

http://git.horde.org/horde-git/-/commit/52d92d0dfb932a503e854e6a9a1a2fd291d28bfa

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

commit 116f6872e363cd203773798c3d336f3ca75c7bb3
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 11:15:16 2011 +0100

    New Dutch translator.

 imp/docs/CREDITS |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/116f6872e363cd203773798c3d336f3ca75c7bb3

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

commit 8774bb76ce0d558a2036fd77df62ad5ec2bcc16d
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 13:39:33 2011 +0100

    [jan] Update Dutch translation (Pieterjan Heyse <pieterjan.heyse at scheppers-wetteren.be>).

 imp/docs/CHANGES |    2 ++
 imp/package.xml  |    2 ++
 2 files changed, 4 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/8774bb76ce0d558a2036fd77df62ad5ec2bcc16d

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

commit ea37fb940d38d1f3b7711bde0b03f4e5273a7134
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 14:16:46 2011 +0100

    [jan] Check permissions when building application drop down (sberthelot at emisfr.com, Bug #10811).

 kronolith/docs/CHANGES              |    2 ++
 kronolith/package.xml               |    2 ++
 kronolith/templates/index/index.inc |    2 ++
 3 files changed, 6 insertions(+), 0 deletions(-)

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

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

commit e20ff021bef930e37f3a2401443e7e4226e90c7b
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 14:21:39 2011 +0100

    Add note how to set the vhost when running CLI scripts (Bug #10758).

 horde/config/conf.xml |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

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

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

commit 6ef1dfbcaffbd347d0789dcb51aa077a446db9bd
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 15:57:28 2011 +0100

    [jan] Automatically create parent permissions when adding the first restricted comment.

 whups/docs/CHANGES   |    2 ++
 whups/lib/Ticket.php |   20 ++++++++++++++------
 whups/package.xml    |    2 ++
 3 files changed, 18 insertions(+), 6 deletions(-)

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

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

commit f0d79743c7453854a57728d85c0e726a4b795b79
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 17:50:34 2011 +0100

    [jan] Catch exceptions from Horde_Mime when sending alarm messages (Bug #10388).

 framework/Alarm/lib/Horde/Alarm/Handler.php      |    2 +
 framework/Alarm/lib/Horde/Alarm/Handler/Mail.php |   36 +++++++++++++--------
 framework/Alarm/package.xml                      |    4 +-
 3 files changed, 26 insertions(+), 16 deletions(-)

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

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

commit 73378c505041406ce697402f7747ca2f9bae0a29
Author: Vilius Å umskas <vilius at lnk.lt>
Date:   Wed Jul 27 17:16:54 2011 +0300

    Agora threads tree doesn't have an icon.
    
    Bug: 9954
    Signed-off-by: Jan Schneider <jan at horde.org>

 agora/lib/Driver.php |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/73378c505041406ce697402f7747ca2f9bae0a29

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

commit 1573349e27d5a57274a2a194b5ef0f86563e9d1f
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 18:46:13 2011 +0100

    Use the ajax framework to save the panel expansion state (Bug #10797).
    
    We should probably ditch horde/services/prefs/index.php altogether because it
    doesn't really work anymore since we require tokens for preference updates.

 mnemo/docs/CHANGES             |    1 +
 mnemo/lib/Ajax/Application.php |   15 +++++++++++++++
 mnemo/package.xml              |   10 +++++++---
 mnemo/templates/panel.inc      |    2 +-
 4 files changed, 24 insertions(+), 4 deletions(-)
 create mode 100644 mnemo/lib/Ajax/Application.php

http://git.horde.org/horde-git/-/commit/1573349e27d5a57274a2a194b5ef0f86563e9d1f

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

commit 80265ca92d0bef75faea14c653d5473fe825cab6
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 19:16:44 2011 +0100

    [jan] Correctly parse "nacht" in German (Bug #10511).

 .../Date_Parser/lib/Horde/Date/Parser/Locale/De/Repeater.php      |    1 +
 framework/Date_Parser/package.xml                                 |    4 ++--
 framework/Date_Parser/test/Horde/Date/Parser/Locale/DeTest.php    |    4 ++++
 3 files changed, 7 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/80265ca92d0bef75faea14c653d5473fe825cab6

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

commit 39a0d24e2a4c3c688475692957351b8a12c3c163
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 19:34:29 2011 +0100

    [jan] Don't fail on empty CalDAV calendars (christof at buergi.lugs.ch, Bug #10739).

 kronolith/docs/CHANGES        |    2 ++
 kronolith/lib/Driver/Ical.php |    3 +++
 kronolith/package.xml         |    2 ++
 3 files changed, 7 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/39a0d24e2a4c3c688475692957351b8a12c3c163

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

commit a9816a1191ff7f1d8e62a94577c108f332152db7
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 19:37:56 2011 +0100

    Fix object.

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

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

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

commit 38f4fb25724f483bc7c296231c0192f1b867192b
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 19:50:31 2011 +0100

    Add unit test for bug #10759.

 framework/Date/test/Horde/Date/DateTest.php |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/38f4fb25724f483bc7c296231c0192f1b867192b

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

commit 657972e492272b87276124e00a62fdc9bd10ab36
Author: Jan Schneider <jan at horde.org>
Date:   Wed Nov 30 21:22:01 2011 +0100

    [jan] Add Dutch translation (Arjen de Korte <build+horde at de-korte.org>).

 .../locale/nl/LC_MESSAGES/Horde_Service_Weather.mo                |  Bin 0 -> 8306 bytes
 .../locale/nl/LC_MESSAGES/Horde_Service_Weather.po                |  616 +++++
 framework/Service_Weather/package.xml                             |    2 +
 3 files changed, 618 insertions(+), 0 deletions(-)
 create mode 100644 framework/Service_Weather/locale/nl/LC_MESSAGES/Horde_Service_Weather.mo
 create mode 100644 framework/Service_Weather/locale/nl/LC_MESSAGES/Horde_Service_Weather.po

http://git.horde.org/horde-git/-/commit/657972e492272b87276124e00a62fdc9bd10ab36

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

commit 173c6d3a695419a9105626794f6e40fdc00069b9
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Nov 30 14:33:23 2011 -0700

    [mms] Fix for broken 8BITMIME/BINARYMIME SMTP capability detection (Bug #10820).

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

http://git.horde.org/horde-git/-/commit/173c6d3a695419a9105626794f6e40fdc00069b9

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

commit f9d01448a1c537fca4a4e4e308256f57a5916dc2
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Nov 30 14:40:15 2011 -0700

    Released Horde_Mime-1.3.2

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

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

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

commit 4907a64de0bf37fd51b41bccd1c38704226a071c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Nov 30 14:40:15 2011 -0700

    Development mode for Horde_Mime-1.3.3

 framework/Mime/package.xml |   19 ++++++++++++++++---
 1 files changed, 16 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/4907a64de0bf37fd51b41bccd1c38704226a071c

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

commit 6f435e07cd2a1419a35c1de8f73fa81cc3d22b9c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Nov 30 15:21:56 2011 -0700

    Fix regressions in search mailboxes due to Ticket #9773
    
    Move UIDVALIDITY check before empty mailbox check, since a UIDVALIDITY
    failure should cause all viewport information to be reset, regardless of
    whether the mailbox contains messages.
    
    UIDVALIDITY will also fail when the day changes, so metadata creation
    needs to appear below this line since metadata will be reset in this
    instance.

 imp/lib/Mailbox.php            |    2 +-
 imp/lib/Views/ListMessages.php |   70 ++++++++++++++++++++--------------------
 2 files changed, 36 insertions(+), 36 deletions(-)

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

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

commit 3fbcc23e4fdff7b395255cadd84f19e803692943
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Nov 30 22:40:41 2011 -0500

    No need to poll remote/listTimeObject calendars here.
    
    Related to Bug: 10806

 kronolith/lib/Resource/Single.php |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/3fbcc23e4fdff7b395255cadd84f19e803692943

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

commit 03176d04281ab0af854a2d226319f06c8f68e296
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Nov 30 23:13:55 2011 -0500

    phpdoc

 kronolith/lib/Driver/Horde.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://git.horde.org/horde-git/-/commit/03176d04281ab0af854a2d226319f06c8f68e296

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

commit f21318fc73931ce8942bcc17bd7d802d52d69f02
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Nov 30 23:14:36 2011 -0500

    The 'date' form field was renamed to 'startdate'.
    
    Bug: 10806

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

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

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

commit 9900b93469b050af7558265f58d089388e4bf4d4
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Wed Nov 30 23:26:12 2011 -0500

    Use the driver's listEvents() method, not the deprecated Kronolith::listEvents()

 kronolith/lib/Resource/Single.php |   13 ++++---------
 1 files changed, 4 insertions(+), 9 deletions(-)

http://git.horde.org/horde-git/-/commit/9900b93469b050af7558265f58d089388e4bf4d4

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

commit 45d184d7dee6b161cd5398549a9ab425d9c61c93
Author: Jan Schneider <jan at horde.org>
Date:   Thu Dec 1 11:16:25 2011 +0100

    Even shorter.

 kronolith/lib/Resource/Single.php |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

http://git.horde.org/horde-git/-/commit/45d184d7dee6b161cd5398549a9ab425d9c61c93

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

commit 5f9d53cb14db83d29fb3e8aa37cd95d3b0c3160a
Author: Jan Schneider <jan at horde.org>
Date:   Fri Dec 2 21:12:14 2011 +0100

    Fix function order (Bug #10831).

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

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

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

commit 3e02739040e526d6a9213d5696026e60d401840e
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Dec 2 14:22:22 2011 -0700

    [mms] Fix unnecessary use of POSIX collating element in Linkurls filter (Bug #10828; jr at yaina.de).

 framework/Text_Filter/lib/Horde/Text/Filter/Linkurls.php |    4 ++--
 framework/Text_Filter/package.xml                        |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/3e02739040e526d6a9213d5696026e60d401840e

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

commit 90b42223e0735a4823c81b2b4cfd24a100915aea
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Dec 2 15:10:04 2011 -0700

    [mms] Don't list parent mailboxes after child mailboxes (Bug #10802).

 imp/docs/CHANGES             |    1 +
 imp/lib/Ajax/Application.php |    1 -
 imp/package.xml              |    2 ++
 3 files changed, 3 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/90b42223e0735a4823c81b2b4cfd24a100915aea

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

commit 672c9dc5f4c63caefba20a25633f4494c891e932
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Dec 2 15:11:00 2011 -0700

    Make sure viewport loading icon is cleared whenver the viewport list is loaded

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

http://git.horde.org/horde-git/-/commit/672c9dc5f4c63caefba20a25633f4494c891e932

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

commit 73308d4bcb107a41c196f45392075bb2b57a7487
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Dec 2 15:53:56 2011 -0700

    This method should be protected

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

http://git.horde.org/horde-git/-/commit/73308d4bcb107a41c196f45392075bb2b57a7487

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

commit 2cc3181acff36a091685cc2944c30ea26a7f2e73
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Dec 2 16:04:14 2011 -0700

    [mms] Add ability to quickly add unsubscribed mailboxes to available search mailboxes in advanced search (Request #10832).

 imp/docs/CHANGES                     |    2 +
 imp/js/search.js                     |   22 ++++++++++++
 imp/lib/Ajax/Application.php         |   23 +++++++++++++
 imp/lib/Ui/Search.php                |   60 ++++++++++++++++++++++++++++++++++
 imp/package.xml                      |    2 +
 imp/search.php                       |   30 ++++------------
 imp/templates/imp/search/search.html |    3 ++
 7 files changed, 120 insertions(+), 22 deletions(-)
 create mode 100644 imp/lib/Ui/Search.php

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

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

commit 80085b97cbb2595b0df3cc85789699d7ca1da87d
Merge: f3b5209 2cc3181
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Dec 3 18:11:33 2011 -0700

    Merge branch 'master' into develop
    
    Conflicts:
    	framework/Service_Weather/package.xml
    	horde/package.xml
    	imp/compose-dimp.php
    	imp/docs/CHANGES
    	imp/package.xml
    	kronolith/package.xml
    	mnemo/package.xml

 agora/lib/Driver.php                                              |    1 +
 framework/Alarm/lib/Horde/Alarm/Handler.php                       |    2 +
 framework/Alarm/lib/Horde/Alarm/Handler/Mail.php                  |   36 +-
 framework/Alarm/package.xml                                       |    4 +-
 framework/Date/test/Horde/Date/DateTest.php                       |   18 +-
 .../Date_Parser/lib/Horde/Date/Parser/Locale/De/Repeater.php      |    1 +
 framework/Date_Parser/package.xml                                 |    4 +-
 framework/Date_Parser/test/Horde/Date/Parser/Locale/DeTest.php    |    4 +
 framework/Mime/lib/Horde/Mime/Part.php                            |    2 +-
 framework/Mime/package.xml                                        |   21 +-
 .../locale/nl/LC_MESSAGES/Horde_Service_Weather.mo                |  Bin 0 -> 8306 bytes
 .../locale/nl/LC_MESSAGES/Horde_Service_Weather.po                |  616 +
 framework/Service_Weather/package.xml                             |    2 +
 framework/Text_Filter/lib/Horde/Text/Filter/Linkurls.php          |    4 +-
 framework/Text_Filter/package.xml                                 |    4 +-
 framework/Token/lib/Horde/Token/Base.php                          |    2 +-
 framework/Vcs/lib/Horde/Vcs/Svn.php                               |    2 +-
 horde/config/conf.xml                                             |    7 +-
 horde/locale/nl/LC_MESSAGES/horde.mo                              |  Bin 49166 -> 49163 bytes
 horde/locale/nl/LC_MESSAGES/horde.po                              |    4 +-
 horde/package.xml                                                 |  260 +-
 imp/compose-dimp.php                                              |    3 +-
 imp/docs/CHANGES                                                  |    5 +
 imp/docs/CREDITS                                                  |    1 +
 imp/js/dimpbase.js                                                |    3 +-
 imp/js/search.js                                                  |   22 +
 imp/lib/Ajax/Application.php                                      |   26 +-
 imp/lib/Mailbox.php                                               |    2 +-
 imp/lib/Ui/Search.php                                             |   60 +
 imp/lib/Views/ListMessages.php                                    |   70 +-
 imp/locale/nl/LC_MESSAGES/imp.mo                                  |  Bin 243051 -> 150014 bytes
 imp/locale/nl/LC_MESSAGES/imp.po                                  | 6037 +++--
 imp/package.xml                                                   |    3 +
 imp/search.php                                                    |   30 +-
 imp/templates/imp/search/search.html                              |    3 +
 kronolith/attendees.php                                           |    4 +-
 kronolith/docs/CHANGES                                            |    4 +
 kronolith/lib/Driver/Horde.php                                    |    4 +-
 kronolith/lib/Driver/Ical.php                                     |    3 +
 kronolith/lib/Resource/Single.php                                 |    5 +-
 kronolith/package.xml                                             |    2 +
 kronolith/templates/index/index.inc                               |    2 +
 mnemo/docs/CHANGES                                                |    1 +
 mnemo/lib/Ajax/Application.php                                    |   15 +
 mnemo/package.xml                                                 |    9 +-
 mnemo/templates/panel.inc                                         |    2 +-
 whups/docs/CHANGES                                                |    2 +
 whups/lib/Ticket.php                                              |   20 +-
 whups/package.xml                                                 |    2 +
 49 files changed, 4496 insertions(+), 2838 deletions(-)

http://git.horde.org/horde-git/-/commit/80085b97cbb2595b0df3cc85789699d7ca1da87d

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

commit 6273181d3dacf25919e9436fe80cb86fca455387
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Dec 3 18:17:05 2011 -0700

    This got lost somewhere.

 horde/package.xml |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/6273181d3dacf25919e9436fe80cb86fca455387




More information about the commits mailing list