[commits] Horde branch master updated. 36b2aecb9606dde5cf936f73132ae8c19a87c746
Michael M Slusarz
slusarz at horde.org
Fri Mar 5 19:09:10 UTC 2010
The branch "master" has been updated.
The following is a summary of the commits.
from: 51365279779cc2dcc6b4e2b3f5c53e8bdf0361dc
d08804f Remove 'sort_limit' configuration option.
f4755db utf8_[en|de]code() requires xml extension
917a165 dom and xml extensions always need to be available
e409ebe Add simplexml to list of required extensions
f603c01 sys_get_temp_dir() gives the temporary directory in PHP 5.2.1+
fe0a818 Clean up help service script
454a548 Remove allow_resume_all_in_drafts config option
36b2aec DIMP now honors the 'allow_resume_all' configuration option
-----------------------------------------------------------------------
commit d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
Author: Michael M Slusarz <slusarz at curecanti.org>
Date: Fri Mar 5 09:50:31 2010 -0700
Remove 'sort_limit' configuration option.
This option was meant to work around slowness/inadequacies of c-client.
Our Imap_Client library is much faster, so this should not be an issue
moving forward (if someone really wants to sort their 1,000,000 message
mailbox by thread, I guess that should be their option).
imp/config/conf.xml | 5 ----
imp/docs/CHANGES | 1 +
imp/docs/UPGRADING | 2 +-
imp/js/DimpBase.js | 8 +-----
imp/js/mailbox.js | 5 +--
imp/lib/IMP.php | 37 ++++++++-------------------
imp/lib/Mailbox.php | 8 ------
imp/lib/Views/ListMessages.php | 4 ---
imp/mailbox-mimp.php | 17 ++++---------
imp/mailbox.php | 17 ++++--------
imp/templates/mailbox/message_headers.html | 4 +-
11 files changed, 29 insertions(+), 79 deletions(-)
http://git.horde.org/diff.php/imp/config/conf.xml?rt=horde-git&r1=2c85abba6e6b4677ffd5c43a0ddb62936f374f9d&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/docs/CHANGES?rt=horde-git&r1=6249c216b7d0262935ab50a6d853c1e6e1ebfa7b&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/docs/UPGRADING?rt=horde-git&r1=594aaccfe7fa87158c6e04f09fb3948f1acfe861&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/js/DimpBase.js?rt=horde-git&r1=0618a51766a95138e898e1a9e6fc4935f8bfdfeb&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/js/mailbox.js?rt=horde-git&r1=99e7aaf59cae56bbdbbfe3256ce8d4564f547e49&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/lib/IMP.php?rt=horde-git&r1=8a43555fd152047db51107508bab3c8c57aa8331&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/lib/Mailbox.php?rt=horde-git&r1=77b8012d6c8c33dbd531e5aa9b2409236ec927b8&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/lib/Views/ListMessages.php?rt=horde-git&r1=18a6430b96d99100b2f06a10d06739d17a8ad8f3&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/mailbox-mimp.php?rt=horde-git&r1=ae01e1a6e888ae56749fad1ef5d249fa7d7e4d05&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/mailbox.php?rt=horde-git&r1=7754df6d17603354e0bef0f7999a9dc262cd7e00&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
http://git.horde.org/diff.php/imp/templates/mailbox/message_headers.html?rt=horde-git&r1=99e7aaf59cae56bbdbbfe3256ce8d4564f547e49&r2=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9
-----------------------------------------------------------------------
commit f4755dbb59d9af7d03ede5db67b7250858cbef32
Author: Michael M Slusarz <slusarz at curecanti.org>
Date: Fri Mar 5 10:18:14 2010 -0700
utf8_[en|de]code() requires xml extension
framework/Util/lib/Horde/String.php | 6 ++++--
framework/Util/lib/Horde/Util.php | 4 +++-
framework/Util/package.xml | 3 +++
3 files changed, 10 insertions(+), 3 deletions(-)
http://git.horde.org/diff.php/framework/Util/lib/Horde/String.php?rt=horde-git&r1=339c841c9e4cc31a8c469a4eb035a8e47d55e50c&r2=f4755dbb59d9af7d03ede5db67b7250858cbef32
http://git.horde.org/diff.php/framework/Util/lib/Horde/Util.php?rt=horde-git&r1=837be59133c0b29f14d5b97f5a187685dbc1be85&r2=f4755dbb59d9af7d03ede5db67b7250858cbef32
http://git.horde.org/diff.php/framework/Util/package.xml?rt=horde-git&r1=837be59133c0b29f14d5b97f5a187685dbc1be85&r2=f4755dbb59d9af7d03ede5db67b7250858cbef32
-----------------------------------------------------------------------
commit 917a165a4f3efd3ae7eaac694c4eedd78549ea1c
Author: Michael M Slusarz <slusarz at curecanti.org>
Date: Fri Mar 5 10:21:09 2010 -0700
dom and xml extensions always need to be available
horde/lib/Test.php | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
http://git.horde.org/diff.php/horde/lib/Test.php?rt=horde-git&r1=3e4f97361ca83443f52e159e7cf7e5cc83ae770e&r2=917a165a4f3efd3ae7eaac694c4eedd78549ea1c
-----------------------------------------------------------------------
commit e409ebe95a3b9cd22c7cd77ff676fda89549aa60
Author: Michael M Slusarz <slusarz at curecanti.org>
Date: Fri Mar 5 10:28:52 2010 -0700
Add simplexml to list of required extensions
horde/docs/INSTALL | 4 ++--
horde/lib/Test.php | 5 +++++
2 files changed, 7 insertions(+), 2 deletions(-)
http://git.horde.org/diff.php/horde/docs/INSTALL?rt=horde-git&r1=6573351b7fc36510940249e18f249ee79816d900&r2=e409ebe95a3b9cd22c7cd77ff676fda89549aa60
http://git.horde.org/diff.php/horde/lib/Test.php?rt=horde-git&r1=917a165a4f3efd3ae7eaac694c4eedd78549ea1c&r2=e409ebe95a3b9cd22c7cd77ff676fda89549aa60
-----------------------------------------------------------------------
commit f603c015d8c348bd4216c12658fa6d777a384ebf
Author: Michael M Slusarz <slusarz at curecanti.org>
Date: Fri Mar 5 10:32:33 2010 -0700
sys_get_temp_dir() gives the temporary directory in PHP 5.2.1+
framework/Util/lib/Horde/Util.php | 36 ++++++++++++++++++++++--------------
1 files changed, 22 insertions(+), 14 deletions(-)
http://git.horde.org/diff.php/framework/Util/lib/Horde/Util.php?rt=horde-git&r1=f4755dbb59d9af7d03ede5db67b7250858cbef32&r2=f603c015d8c348bd4216c12658fa6d777a384ebf
-----------------------------------------------------------------------
commit fe0a818b38edd1ce851e3b247011a6e7d047b235
Author: Michael M Slusarz <slusarz at curecanti.org>
Date: Fri Mar 5 10:58:57 2010 -0700
Clean up help service script
horde/services/help/index.php | 111 +++++++++++++++++++-------------------
horde/templates/help/menu.inc | 1 -
horde/templates/help/sidebar.inc | 2 +-
3 files changed, 57 insertions(+), 57 deletions(-)
http://git.horde.org/diff.php/horde/services/help/index.php?rt=horde-git&r1=b23cc31ca5d964fd8f9be807871eb0595aee63d9&r2=fe0a818b38edd1ce851e3b247011a6e7d047b235
http://git.horde.org/diff.php/horde/templates/help/menu.inc?rt=horde-git&r1=44794778d1e148b988fe57a75b3ef203883fa05f&r2=fe0a818b38edd1ce851e3b247011a6e7d047b235
http://git.horde.org/diff.php/horde/templates/help/sidebar.inc?rt=horde-git&r1=44794778d1e148b988fe57a75b3ef203883fa05f&r2=fe0a818b38edd1ce851e3b247011a6e7d047b235
-----------------------------------------------------------------------
commit 454a548f312d3dc69e10ec20fc1b8c6ab2c3f941
Author: Michael M Slusarz <slusarz at curecanti.org>
Date: Fri Mar 5 11:35:02 2010 -0700
Remove allow_resume_all_in_drafts config option
imp/config/conf.xml | 5 -----
imp/docs/UPGRADING | 4 ++++
imp/message.php | 7 +++----
3 files changed, 7 insertions(+), 9 deletions(-)
http://git.horde.org/diff.php/imp/config/conf.xml?rt=horde-git&r1=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9&r2=454a548f312d3dc69e10ec20fc1b8c6ab2c3f941
http://git.horde.org/diff.php/imp/docs/UPGRADING?rt=horde-git&r1=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9&r2=454a548f312d3dc69e10ec20fc1b8c6ab2c3f941
http://git.horde.org/diff.php/imp/message.php?rt=horde-git&r1=7754df6d17603354e0bef0f7999a9dc262cd7e00&r2=454a548f312d3dc69e10ec20fc1b8c6ab2c3f941
-----------------------------------------------------------------------
commit 36b2aecb9606dde5cf936f73132ae8c19a87c746
Author: Michael M Slusarz <slusarz at curecanti.org>
Date: Fri Mar 5 12:07:37 2010 -0700
DIMP now honors the 'allow_resume_all' configuration option
imp/docs/CHANGES | 1 +
imp/js/DimpBase.js | 25 ++++++++++++-------------
imp/lib/Ui/Mailbox.php | 14 ++++++++++++++
imp/lib/Views/ListMessages.php | 9 +++++----
imp/message.php | 5 +----
imp/templates/index/index-dimp.inc | 17 +----------------
imp/themes/dimp/screen.css | 10 +++++-----
imp/themes/silver/dimp/screen.css | 10 +++++-----
8 files changed, 44 insertions(+), 47 deletions(-)
http://git.horde.org/diff.php/imp/docs/CHANGES?rt=horde-git&r1=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9&r2=36b2aecb9606dde5cf936f73132ae8c19a87c746
http://git.horde.org/diff.php/imp/js/DimpBase.js?rt=horde-git&r1=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9&r2=36b2aecb9606dde5cf936f73132ae8c19a87c746
http://git.horde.org/diff.php/imp/lib/Ui/Mailbox.php?rt=horde-git&r1=1a310b2de34193b3f984e4506d87b32de412a65e&r2=36b2aecb9606dde5cf936f73132ae8c19a87c746
http://git.horde.org/diff.php/imp/lib/Views/ListMessages.php?rt=horde-git&r1=d08804fd706e3cea9c3ea9aa9d9901b17dcf6fa9&r2=36b2aecb9606dde5cf936f73132ae8c19a87c746
http://git.horde.org/diff.php/imp/message.php?rt=horde-git&r1=454a548f312d3dc69e10ec20fc1b8c6ab2c3f941&r2=36b2aecb9606dde5cf936f73132ae8c19a87c746
http://git.horde.org/diff.php/imp/templates/index/index-dimp.inc?rt=horde-git&r1=ebd2d943c73d091e889c70b6a7ceb9afc2a40816&r2=36b2aecb9606dde5cf936f73132ae8c19a87c746
http://git.horde.org/diff.php/imp/themes/dimp/screen.css?rt=horde-git&r1=fe87027848c26c92e92961cc588899a03e830680&r2=36b2aecb9606dde5cf936f73132ae8c19a87c746
http://git.horde.org/diff.php/imp/themes/silver/dimp/screen.css?rt=horde-git&r1=fe87027848c26c92e92961cc588899a03e830680&r2=36b2aecb9606dde5cf936f73132ae8c19a87c746
More information about the commits
mailing list