[commits] Horde branch master updated. 33c28c5b3e4f09e6c7d750f276186336e7f3a8e0

Michael M Slusarz slusarz at horde.org
Sat Nov 3 07:09:23 UTC 2012


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

from: 8534492b3f44078caa345b637eee5f39abb37b37

91d2da7 Mirror regular login screen - there is no 'Log in' header
7e2138a Do basic HTML cleanup for Ingo 3.0.x
d7acbc2 Clean up search criteria styling
1d25beb Some documentation tweaks
54c8740 These two graphics should be the same
3c703b7 [mms] Massive performance increase for cached FETCH queries.
c10ff43 [mms] Only specify maxmemory argument when creating temp stream if it was given.
431e1fe Released Horde_Stream-1.1.1
5a72d3a Development mode for Horde_Stream-1.1.2
2a296a8 Released Horde_Imap_Client-2.1.1
33c28c5 Development mode for Horde_Imap_Client-2.1.2

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

commit 91d2da70bcf18976a094b022f8371e70ed5386cf
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Nov 2 21:53:50 2012 -0600

    Mirror regular login screen - there is no 'Log in' header

 horde/templates/login/smartmobile.html.php |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

http://git.horde.org/horde-git/-/commit/91d2da70bcf18976a094b022f8371e70ed5386cf

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

commit 7e2138abde46088e8083a59e257c4a7d27202e8b
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Nov 2 22:29:54 2012 -0600

    Do basic HTML cleanup for Ingo 3.0.x
    
    Full rewrite is probably a good idea for 3.1, to get rid of table
    formatting.  This at least makes fields somewhat easier to read and have
    elements line up with each other.

 ingo/rule.php                          |    2 +-
 ingo/templates/blacklist/blacklist.inc |   34 ++++++++++++++---------
 ingo/templates/filters/footer.inc      |    2 +-
 ingo/templates/filters/header.inc      |   23 ++++++++-------
 ingo/templates/filters/settings.inc    |    2 +-
 ingo/templates/rule/filter.inc         |    8 +++---
 ingo/templates/rule/footer.inc         |   46 +++++++++++++++++--------------
 ingo/templates/rule/header.inc         |   26 +++++++++++-------
 ingo/templates/script/activate.inc     |    2 +-
 ingo/templates/script/header.inc       |    2 +-
 ingo/templates/script/script.inc       |    2 +-
 ingo/templates/whitelist/whitelist.inc |   22 +++++++++-----
 ingo/themes/default/screen.css         |   14 +++++++++
 13 files changed, 112 insertions(+), 73 deletions(-)

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

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

commit d7acbc2828397703831d8e82fb6d9f1d432794d2
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Nov 2 23:00:01 2012 -0600

    Clean up search criteria styling

 imp/js/search.js                     |   10 ++++----
 imp/templates/search/search.html.php |    8 +++---
 imp/themes/default/screen.css        |   40 +++++++++++++++++----------------
 3 files changed, 30 insertions(+), 28 deletions(-)

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

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

commit 1d25bebe09dbe874981ba1dff4df94dd0981992f
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Nov 2 23:35:23 2012 -0600

    Some documentation tweaks

 imp/docs/INSTALL     |   25 +++++++++++--------------
 imp/docs/PERFORMANCE |   16 +++++++++++++---
 2 files changed, 24 insertions(+), 17 deletions(-)

http://git.horde.org/horde-git/-/commit/1d25bebe09dbe874981ba1dff4df94dd0981992f

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

commit 54c8740a5c2d7e33ab497aafa9d287db14a6acf5
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Nov 2 23:39:27 2012 -0600

    These two graphics should be the same

 imp/themes/default/graphics/delete.png |  Bin 412 -> 408 bytes
 1 files changed, 0 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/54c8740a5c2d7e33ab497aafa9d287db14a6acf5

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

commit 3c703b79a2bbaa0a1a8749b4dc4d019f509a2a8c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Fri Nov 2 23:55:22 2012 -0600

    [mms] Massive performance increase for cached FETCH queries.
    
    Turns out that Horde_Imap_Client_Ids#add() is very slow. Probably
    because we are adding as strings instead of array, so it needs to be
    parsed every call.
    
    Optimize even more by passing a single array, and indicate that there is
    no need to check for duplicates, since this would have already been
    caught in the code.

 framework/Imap_Client/lib/Horde/Imap/Client/Base.php |    9 ++++++---
 framework/Imap_Client/package.xml                    |    4 ++--
 2 files changed, 8 insertions(+), 5 deletions(-)

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

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

commit c10ff43bf2700d08d2f7e5131323c5da3e148af7
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Nov 3 00:58:03 2012 -0600

    [mms] Only specify maxmemory argument when creating temp stream if it was given.
    
    For some strange reason, this will cause a PHP segfault after about 1000
    temp streams are opened (i.e. exporting a mailbox in IMP in a mailbox
    with 5000 messages would break). Seems to work perfectly when not
    specified, so I'm not going to track this down anymore.

 framework/Stream/lib/Horde/Stream/Temp.php |   12 ++++++------
 framework/Stream/package.xml               |    4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

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

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

commit 431e1fe84cdf3e2f6a4380b1e829257dffb51b4c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Nov 3 01:04:43 2012 -0600

    Released Horde_Stream-1.1.1

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

http://git.horde.org/horde-git/-/commit/431e1fe84cdf3e2f6a4380b1e829257dffb51b4c

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

commit 5a72d3acb73ed6cb96da5a6ef4fc72a0c878c086
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Nov 3 01:04:43 2012 -0600

    Development mode for Horde_Stream-1.1.2

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

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

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

commit 2a296a8b4d934d2f9e619e98657eb84b7bdb3042
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Nov 3 01:08:41 2012 -0600

    Released Horde_Imap_Client-2.1.1

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

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

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

commit 33c28c5b3e4f09e6c7d750f276186336e7f3a8e0
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Sat Nov 3 01:08:41 2012 -0600

    Development mode for Horde_Imap_Client-2.1.2

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

http://git.horde.org/horde-git/-/commit/33c28c5b3e4f09e6c7d750f276186336e7f3a8e0




More information about the commits mailing list