[commits] Horde branch master updated. 33aa7aea959a560278c5acaf680c966f68c3fad9

Michael M Slusarz slusarz at horde.org
Wed Sep 5 09:04:49 UTC 2012


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

from: b95e5a718551aa3e3b7d39af4d1ece794e89a6d6

f58e111 Revamp AJAX action framework
5f2b901 Cleanup unsued code relating to smartmobile compose page
3fec6ff Better centering of expand/collapse icon
518b898 [mms] Update MIME mapping file.
8392282 PNG compression of theme graphics
f90ce90 For some reason, this breaks kronolith's smartmobile code
6821284 More reasonable implementation of HordeMobile.currentPage().
46d0f7b clean up some kronolith smartmobile js/template code
33aa7ae Fix typo (Bug #11402)

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

commit f58e111cb4394a17122f83c8f2a1f55b76e7ea6a
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Tue Sep 4 16:36:36 2012 -0600

    Revamp AJAX action framework
    
    Move AJAX actions to a separate class from the base application AJAX
    class.  Done for several reasons:
    
    1. Cleaner implementation than current Helper framework.
    2. Potential for less memory usage (a view does not need to load AJAX
    actions exclusive to another view).
    3. Most important, provides security: AJAX application base functions
    (e.g. __construct, addTask) are no longer exposed as AJAX actions via
    the endpoint.

 ansel/lib/Ajax/Application.php                                    |  365 +-
 ansel/lib/Ajax/Application/Handler.php                            |  377 +
 framework/Core/lib/Horde/Core/Ajax/Application.php                |   77 +-
 framework/Core/lib/Horde/Core/Ajax/Application/Handler.php        |   93 +
 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Chunk.php  |   38 +
 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Email.php  |   54 +
 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Groups.php |   45 +
 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Imple.php  |   40 +
 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Noop.php   |   27 +
 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Prefs.php  |   34 +
 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Chunk.php   |   37 -
 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Email.php   |   64 -
 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Groups.php  |   45 -
 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Imple.php   |   40 -
 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Prefs.php   |   34 -
 framework/Core/package.xml                                        |   20 +-
 gollem/lib/Ajax/Application.php                                   |   15 -
 gollem/templates/javascript_defs.php                              |    1 -
 hermes/lib/Ajax/Application.php                                   |  209 +-
 hermes/lib/Ajax/Application/Handler.php                           |  228 +
 horde/lib/Ajax/Application.php                                    |   79 +-
 horde/lib/Ajax/Application/Handler.php                            |   93 +
 imp/lib/Ajax/Application.php                                      | 2026 +----
 imp/lib/Ajax/Application/Handler/Common.php                       |  577 ++
 imp/lib/Ajax/Application/Handler/Dynamic.php                      | 1064 +++
 imp/lib/Ajax/Application/Handler/Passphrase.php                   |   79 +
 imp/lib/Ajax/Application/Handler/Search.php                       |   38 +
 imp/lib/Ajax/Application/Handler/Smartmobile.php                  |   83 +
 imp/lib/Ajax/Application/Helper/Smartmobile.php                   |   83 -
 kronolith/lib/Ajax/Application.php                                | 1569 +----
 kronolith/lib/Ajax/Application/Handler.php                        | 1572 ++++
 mnemo/lib/Ajax/Application.php                                    |    4 +-
 nag/lib/Ajax/Application.php                                      |    9 +-
 nag/lib/Ajax/Application/Helper/Smartmobile.php                   |   40 -
 nag/lib/Ajax/Application/Smartmobile.php                          |   40 +
 shout/lib/Ajax/Application.php                                    |  217 +-
 shout/lib/Ajax/Application/Handler.php                            |  238 +
 skeleton/lib/Ajax/Application.php                                 |    4 +-
 trean/lib/Ajax/Application.php                                    |    4 +-
 turba/lib/Ajax/Application.php                                    |    6 +-
 turba/lib/Ajax/Application/Helper/Smartmobile.php                 |   62 -
 turba/lib/Ajax/Application/Smartmobile.php                        |   62 +
 42 files changed, 5060 insertions(+), 4732 deletions(-)
 create mode 100644 ansel/lib/Ajax/Application/Handler.php
 create mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Handler.php
 create mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Chunk.php
 create mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Email.php
 create mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Groups.php
 create mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Imple.php
 create mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Noop.php
 create mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Handler/Prefs.php
 delete mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Chunk.php
 delete mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Email.php
 delete mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Groups.php
 delete mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Imple.php
 delete mode 100644 framework/Core/lib/Horde/Core/Ajax/Application/Helper/Prefs.php
 delete mode 100644 gollem/lib/Ajax/Application.php
 create mode 100644 hermes/lib/Ajax/Application/Handler.php
 create mode 100644 horde/lib/Ajax/Application/Handler.php
 create mode 100644 imp/lib/Ajax/Application/Handler/Common.php
 create mode 100644 imp/lib/Ajax/Application/Handler/Dynamic.php
 create mode 100644 imp/lib/Ajax/Application/Handler/Passphrase.php
 create mode 100644 imp/lib/Ajax/Application/Handler/Search.php
 create mode 100644 imp/lib/Ajax/Application/Handler/Smartmobile.php
 delete mode 100644 imp/lib/Ajax/Application/Helper/Smartmobile.php
 create mode 100644 kronolith/lib/Ajax/Application/Handler.php
 delete mode 100644 nag/lib/Ajax/Application/Helper/Smartmobile.php
 create mode 100644 nag/lib/Ajax/Application/Smartmobile.php
 create mode 100644 shout/lib/Ajax/Application/Handler.php
 delete mode 100644 turba/lib/Ajax/Application/Helper/Smartmobile.php
 create mode 100644 turba/lib/Ajax/Application/Smartmobile.php

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

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

commit 5f2b90141e047c13fcb7abbe5573964f4a196cb4
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Sep 5 00:29:33 2012 -0600

    Cleanup unsued code relating to smartmobile compose page

 imp/js/smartmobile.js                      |   93 ++++++---------------------
 imp/lib/Smartmobile.php                    |    2 -
 imp/templates/smartmobile/compose.html.php |    6 +-
 3 files changed, 23 insertions(+), 78 deletions(-)

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

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

commit 3fec6ff8a0a5feeaa939ea93cfd393292da3f6e9
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Sep 5 01:06:52 2012 -0600

    Better centering of expand/collapse icon

 imp/themes/default/dynamic/screen.css |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

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

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

commit 518b898a839e3061962c9fa00d3041f1b05bce1f
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Sep 5 01:24:50 2012 -0600

    [mms] Update MIME mapping file.

 framework/Mime/lib/Horde/Mime/mime.mapping.php |  289 ++++++++++++++++++++----
 framework/Mime/package.xml                     |    4 +-
 2 files changed, 246 insertions(+), 47 deletions(-)

http://git.horde.org/horde-git/-/commit/518b898a839e3061962c9fa00d3041f1b05bce1f

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

commit 8392282c237064bed851aa020365c03f075fa02c
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Sep 5 01:31:57 2012 -0600

    PNG compression of theme graphics

 agora/themes/default/graphics/forums.png                 |  Bin 286 -> 286 bytes
 gollem/themes/default/graphics/perms_disabled.png        |  Bin 364 -> 243 bytes
 horde/themes/default/graphics/add_perm.png               |  Bin 592 -> 577 bytes
 horde/themes/default/graphics/administration.png         |  Bin 617 -> 562 bytes
 horde/themes/default/graphics/alerts/alarm.png           |  Bin 695 -> 650 bytes
 horde/themes/default/graphics/app-unknown.png            |  Bin 650 -> 597 bytes
 horde/themes/default/graphics/block.png                  |  Bin 683 -> 615 bytes
 horde/themes/default/graphics/button-active-bg.png       |  Bin 2812 -> 111 bytes
 horde/themes/default/graphics/button-default.png         |  Bin 2825 -> 87 bytes
 horde/themes/default/graphics/button-delete.png          |  Bin 2832 -> 142 bytes
 horde/themes/default/graphics/button-split.png           |  Bin 2804 -> 88 bytes
 horde/themes/default/graphics/button.png                 |  Bin 2842 -> 137 bytes
 horde/themes/default/graphics/buttonbar-bg.png           |  Bin 2824 -> 108 bytes
 horde/themes/default/graphics/checkbox_off.png           |  Bin 3063 -> 340 bytes
 horde/themes/default/graphics/checkbox_on.png            |  Bin 606 -> 479 bytes
 horde/themes/default/graphics/collapse.png               |  Bin 362 -> 229 bytes
 horde/themes/default/graphics/colorpicker.png            |  Bin 678 -> 619 bytes
 horde/themes/default/graphics/delete-small.png           |  Bin 289 -> 136 bytes
 horde/themes/default/graphics/devel.png                  |  Bin 648 -> 569 bytes
 horde/themes/default/graphics/edit-sidebar-000.png       |  Bin 499 -> 277 bytes
 horde/themes/default/graphics/edit-sidebar-fff.png       |  Bin 486 -> 299 bytes
 horde/themes/default/graphics/edit-small.png             |  Bin 330 -> 167 bytes
 horde/themes/default/graphics/expand.png                 |  Bin 3101 -> 235 bytes
 horde/themes/default/graphics/external.png               |  Bin 548 -> 495 bytes
 horde/themes/default/graphics/feed.png                   |  Bin 612 -> 549 bytes
 horde/themes/default/graphics/head-bg.png                |  Bin 153 -> 150 bytes
 horde/themes/default/graphics/help.png                   |  Bin 650 -> 597 bytes
 horde/themes/default/graphics/help_index.png             |  Bin 650 -> 597 bytes
 horde/themes/default/graphics/horde.png                  |  Bin 918 -> 732 bytes
 horde/themes/default/graphics/layout.png                 |  Bin 335 -> 318 bytes
 horde/themes/default/graphics/lhand.png                  |  Bin 515 -> 455 bytes
 horde/themes/default/graphics/locked-inv.png             |  Bin 593 -> 429 bytes
 horde/themes/default/graphics/locked.png                 |  Bin 451 -> 429 bytes
 horde/themes/default/graphics/login.png                  |  Bin 711 -> 689 bytes
 horde/themes/default/graphics/logo.png                   |  Bin 5309 -> 2337 bytes
 horde/themes/default/graphics/logout.png                 |  Bin 731 -> 693 bytes
 horde/themes/default/graphics/map.png                    |  Bin 465 -> 447 bytes
 horde/themes/default/graphics/map_eu.png                 |  Bin 465 -> 447 bytes
 horde/themes/default/graphics/myaccount.png              |  Bin 427 -> 382 bytes
 horde/themes/default/graphics/nav/bottom-grey.png        |  Bin 564 -> 414 bytes
 horde/themes/default/graphics/nav/bottom.png             |  Bin 700 -> 613 bytes
 horde/themes/default/graphics/nav/down-grey.png          |  Bin 438 -> 278 bytes
 horde/themes/default/graphics/nav/down.png               |  Bin 525 -> 432 bytes
 horde/themes/default/graphics/nav/first-grey.png         |  Bin 497 -> 330 bytes
 horde/themes/default/graphics/nav/first.png              |  Bin 790 -> 407 bytes
 horde/themes/default/graphics/nav/last-grey.png          |  Bin 482 -> 307 bytes
 horde/themes/default/graphics/nav/last.png               |  Bin 796 -> 410 bytes
 horde/themes/default/graphics/nav/left-grey.png          |  Bin 372 -> 235 bytes
 horde/themes/default/graphics/nav/left.png               |  Bin 511 -> 381 bytes
 horde/themes/default/graphics/nav/right-grey.png         |  Bin 364 -> 218 bytes
 horde/themes/default/graphics/nav/right.png              |  Bin 516 -> 384 bytes
 horde/themes/default/graphics/nav/top-grey.png           |  Bin 561 -> 414 bytes
 horde/themes/default/graphics/nav/top.png                |  Bin 678 -> 603 bytes
 horde/themes/default/graphics/nav/up-grey.png            |  Bin 437 -> 278 bytes
 horde/themes/default/graphics/nav/up.png                 |  Bin 518 -> 433 bytes
 horde/themes/default/graphics/navi-arrow-active.png      |  Bin 3046 -> 299 bytes
 horde/themes/default/graphics/navi-arrow-normal.png      |  Bin 3037 -> 223 bytes
 horde/themes/default/graphics/navi-center-active.png     |  Bin 143 -> 108 bytes
 horde/themes/default/graphics/navi-subnavi-active.png    |  Bin 362 -> 319 bytes
 horde/themes/default/graphics/navi-subnavi.png           |  Bin 359 -> 209 bytes
 horde/themes/default/graphics/perms.png                  |  Bin 592 -> 577 bytes
 horde/themes/default/graphics/plus-sidebar.png           |  Bin 846 -> 515 bytes
 horde/themes/default/graphics/popdown.png                |  Bin 3040 -> 285 bytes
 horde/themes/default/graphics/prefs.png                  |  Bin 634 -> 561 bytes
 horde/themes/default/graphics/reload.png                 |  Bin 911 -> 478 bytes
 horde/themes/default/graphics/rhand.png                  |  Bin 508 -> 453 bytes
 horde/themes/default/graphics/search-topbar.png          |  Bin 603 -> 447 bytes
 horde/themes/default/graphics/search.png                 |  Bin 519 -> 465 bytes
 horde/themes/default/graphics/settings-active.png        |  Bin 3528 -> 543 bytes
 horde/themes/default/graphics/settings.png               |  Bin 626 -> 518 bytes
 horde/themes/default/graphics/sidebar-active-bg.png      |  Bin 2829 -> 141 bytes
 horde/themes/default/graphics/sidebar-new-bg.png         |  Bin 161 -> 153 bytes
 horde/themes/default/graphics/sidebar-new.png            |  Bin 531 -> 439 bytes
 horde/themes/default/graphics/sidebar-refresh.png        |  Bin 3610 -> 512 bytes
 horde/themes/default/graphics/sidebar-split.png          |  Bin 129 -> 97 bytes
 horde/themes/default/graphics/slidehoriz-bg.png          |  Bin 168 -> 104 bytes
 horde/themes/default/graphics/slidehoriz.png             |  Bin 199 -> 114 bytes
 horde/themes/default/graphics/slidevert-bg.png           |  Bin 172 -> 87 bytes
 horde/themes/default/graphics/slidevert.png              |  Bin 221 -> 137 bytes
 horde/themes/default/graphics/sql.png                    |  Bin 671 -> 644 bytes
 horde/themes/default/graphics/tab-active.png             |  Bin 137 -> 103 bytes
 horde/themes/default/graphics/tab.png                    |  Bin 150 -> 145 bytes
 horde/themes/default/graphics/tablehead-bg.png           |  Bin 149 -> 87 bytes
 horde/themes/default/graphics/tablehead-split.png        |  Bin 131 -> 102 bytes
 horde/themes/default/graphics/tabset.png                 |  Bin 145 -> 124 bytes
 horde/themes/default/graphics/tree/leaf.png              |  Bin 288 -> 275 bytes
 horde/themes/default/graphics/tree/rev-leaf.png          |  Bin 288 -> 275 bytes
 horde/themes/default/graphics/user.png                   |  Bin 427 -> 382 bytes
 horde/themes/default/graphics/website.png                |  Bin 582 -> 536 bytes
 imp/themes/default/graphics/add_contact.png              |  Bin 542 -> 500 bytes
 imp/themes/default/graphics/addressbook_browse.png       |  Bin 471 -> 426 bytes
 imp/themes/default/graphics/answered.png                 |  Bin 556 -> 521 bytes
 imp/themes/default/graphics/arrow_collapsed.png          |  Bin 3101 -> 235 bytes
 imp/themes/default/graphics/arrow_down.png               |  Bin 384 -> 343 bytes
 imp/themes/default/graphics/arrow_expanded.png           |  Bin 362 -> 229 bytes
 imp/themes/default/graphics/arrow_up.png                 |  Bin 370 -> 338 bytes
 imp/themes/default/graphics/attachment.png               |  Bin 650 -> 605 bytes
 imp/themes/default/graphics/blacklist.png                |  Bin 699 -> 625 bytes
 imp/themes/default/graphics/button-split.png             |  Bin 2804 -> 88 bytes
 imp/themes/default/graphics/checkbox_off.png             |  Bin 3063 -> 340 bytes
 imp/themes/default/graphics/checkbox_on.png              |  Bin 606 -> 479 bytes
 imp/themes/default/graphics/checkbox_over.png            |  Bin 606 -> 479 bytes
 imp/themes/default/graphics/empty_spam.png               |  Bin 996 -> 524 bytes
 imp/themes/default/graphics/empty_trash.png              |  Bin 996 -> 524 bytes
 imp/themes/default/graphics/flags/answered-inv.png       |  Bin 359 -> 208 bytes
 imp/themes/default/graphics/flags/answered.png           |  Bin 355 -> 208 bytes
 imp/themes/default/graphics/flags/attachment-inv.png     |  Bin 566 -> 528 bytes
 imp/themes/default/graphics/flags/attachment.png         |  Bin 561 -> 511 bytes
 imp/themes/default/graphics/flags/deleted-inv.png        |  Bin 392 -> 252 bytes
 imp/themes/default/graphics/flags/deleted.png            |  Bin 392 -> 252 bytes
 imp/themes/default/graphics/flags/draft-inv.png          |  Bin 514 -> 378 bytes
 imp/themes/default/graphics/flags/draft.png              |  Bin 517 -> 378 bytes
 imp/themes/default/graphics/flags/encrypted-inv.png      |  Bin 427 -> 280 bytes
 imp/themes/default/graphics/flags/encrypted.png          |  Bin 427 -> 280 bytes
 imp/themes/default/graphics/flags/flagged-inv.png        |  Bin 368 -> 264 bytes
 imp/themes/default/graphics/flags/flagged.png            |  Bin 361 -> 264 bytes
 imp/themes/default/graphics/flags/forwarded-inv.png      |  Bin 356 -> 208 bytes
 imp/themes/default/graphics/flags/forwarded.png          |  Bin 349 -> 208 bytes
 imp/themes/default/graphics/flags/group-inv.png          |  Bin 483 -> 335 bytes
 imp/themes/default/graphics/flags/group.png              |  Bin 474 -> 335 bytes
 imp/themes/default/graphics/flags/innocent-inv.png       |  Bin 508 -> 326 bytes
 imp/themes/default/graphics/flags/innocent.png           |  Bin 501 -> 324 bytes
 imp/themes/default/graphics/flags/personal-inv.png       |  Bin 409 -> 247 bytes
 imp/themes/default/graphics/flags/personal.png           |  Bin 404 -> 247 bytes
 imp/themes/default/graphics/flags/priority_high-inv.png  |  Bin 451 -> 265 bytes
 imp/themes/default/graphics/flags/priority_high.png      |  Bin 475 -> 265 bytes
 imp/themes/default/graphics/flags/priority_low-inv.png   |  Bin 457 -> 300 bytes
 imp/themes/default/graphics/flags/priority_low.png       |  Bin 448 -> 300 bytes
 imp/themes/default/graphics/flags/seen-inv.png           |  Bin 487 -> 353 bytes
 imp/themes/default/graphics/flags/seen.png               |  Bin 494 -> 353 bytes
 imp/themes/default/graphics/flags/signed-inv.png         |  Bin 427 -> 280 bytes
 imp/themes/default/graphics/flags/signed.png             |  Bin 427 -> 280 bytes
 imp/themes/default/graphics/flags/spam-inv.png           |  Bin 495 -> 280 bytes
 imp/themes/default/graphics/flags/spam.png               |  Bin 490 -> 280 bytes
 imp/themes/default/graphics/flags/unseen-inv.png         |  Bin 467 -> 322 bytes
 imp/themes/default/graphics/flags/unseen.png             |  Bin 462 -> 322 bytes
 imp/themes/default/graphics/folders/plus.png             |  Bin 461 -> 419 bytes
 imp/themes/default/graphics/folders/spam.png             |  Bin 605 -> 557 bytes
 imp/themes/default/graphics/forwarded.png                |  Bin 559 -> 520 bytes
 imp/themes/default/graphics/help.png                     |  Bin 650 -> 597 bytes
 imp/themes/default/graphics/imp.png                      |  Bin 853 -> 450 bytes
 imp/themes/default/graphics/innocent.png                 |  Bin 614 -> 547 bytes
 imp/themes/default/graphics/locked.png                   |  Bin 451 -> 429 bytes
 imp/themes/default/graphics/logout.png                   |  Bin 731 -> 693 bytes
 imp/themes/default/graphics/message_source.png           |  Bin 634 -> 561 bytes
 imp/themes/default/graphics/nav/first-grey.png           |  Bin 497 -> 330 bytes
 imp/themes/default/graphics/nav/first.png                |  Bin 790 -> 407 bytes
 imp/themes/default/graphics/nav/last-grey.png            |  Bin 482 -> 307 bytes
 imp/themes/default/graphics/nav/last.png                 |  Bin 796 -> 410 bytes
 imp/themes/default/graphics/nav/left-grey.png            |  Bin 372 -> 235 bytes
 imp/themes/default/graphics/nav/left.png                 |  Bin 511 -> 381 bytes
 imp/themes/default/graphics/nav/right-grey.png           |  Bin 364 -> 218 bytes
 imp/themes/default/graphics/nav/right.png                |  Bin 516 -> 384 bytes
 imp/themes/default/graphics/popdown.png                  |  Bin 3040 -> 285 bytes
 imp/themes/default/graphics/prefs.png                    |  Bin 634 -> 561 bytes
 imp/themes/default/graphics/preview.png                  |  Bin 248 -> 132 bytes
 imp/themes/default/graphics/reload.png                   |  Bin 911 -> 478 bytes
 imp/themes/default/graphics/replyall.png                 |  Bin 714 -> 422 bytes
 imp/themes/default/graphics/search.png                   |  Bin 519 -> 465 bytes
 imp/themes/default/graphics/seen.png                     |  Bin 616 -> 592 bytes
 imp/themes/default/graphics/shared.png                   |  Bin 500 -> 449 bytes
 imp/themes/default/graphics/spam.png                     |  Bin 605 -> 557 bytes
 imp/themes/default/graphics/spellcheck.png               |  Bin 500 -> 443 bytes
 imp/themes/default/graphics/whitelist.png                |  Bin 682 -> 618 bytes
 ingo/themes/default/graphics/blacklist.png               |  Bin 699 -> 625 bytes
 ingo/themes/default/graphics/disable.png                 |  Bin 433 -> 348 bytes
 ingo/themes/default/graphics/spam.png                    |  Bin 605 -> 550 bytes
 ingo/themes/default/graphics/whitelist.png               |  Bin 682 -> 618 bytes
 kolab/themes/default/graphics/kolab.png                  |  Bin 1038 -> 897 bytes
 kronolith/themes/default/graphics/addressbook_browse.png |  Bin 585 -> 537 bytes
 kronolith/themes/default/graphics/agenda.png             |  Bin 203 -> 179 bytes
 kronolith/themes/default/graphics/alarm-000.png          |  Bin 374 -> 269 bytes
 kronolith/themes/default/graphics/alarm-fff.png          |  Bin 381 -> 269 bytes
 kronolith/themes/default/graphics/alerts/alarm.png       |  Bin 695 -> 650 bytes
 kronolith/themes/default/graphics/attendee-none.png      |  Bin 650 -> 597 bytes
 kronolith/themes/default/graphics/attendee-tentative.png |  Bin 856 -> 560 bytes
 kronolith/themes/default/graphics/attendees-000.png      |  Bin 353 -> 322 bytes
 kronolith/themes/default/graphics/attendees-fff.png      |  Bin 357 -> 322 bytes
 kronolith/themes/default/graphics/back_quick.png         |  Bin 181 -> 111 bytes
 kronolith/themes/default/graphics/big_agenda.png         |  Bin 1426 -> 1064 bytes
 kronolith/themes/default/graphics/big_alarm.png          |  Bin 4903 -> 3199 bytes
 kronolith/themes/default/graphics/big_invitation.png     |  Bin 4140 -> 2504 bytes
 kronolith/themes/default/graphics/big_share.png          |  Bin 3352 -> 2803 bytes
 kronolith/themes/default/graphics/checkbox_over.png      |  Bin 606 -> 479 bytes
 kronolith/themes/default/graphics/dayview.png            |  Bin 522 -> 349 bytes
 kronolith/themes/default/graphics/delete-000.png         |  Bin 313 -> 195 bytes
 kronolith/themes/default/graphics/delete-fff.png         |  Bin 324 -> 195 bytes
 kronolith/themes/default/graphics/down.png               |  Bin 525 -> 432 bytes
 kronolith/themes/default/graphics/edit-000.png           |  Bin 305 -> 202 bytes
 kronolith/themes/default/graphics/edit-fff.png           |  Bin 307 -> 202 bytes
 kronolith/themes/default/graphics/exception-000.png      |  Bin 453 -> 437 bytes
 kronolith/themes/default/graphics/exception-fff.png      |  Bin 468 -> 447 bytes
 kronolith/themes/default/graphics/help.png               |  Bin 650 -> 597 bytes
 kronolith/themes/default/graphics/left.png               |  Bin 402 -> 294 bytes
 kronolith/themes/default/graphics/logout.png             |  Bin 731 -> 693 bytes
 kronolith/themes/default/graphics/monthview.png          |  Bin 531 -> 358 bytes
 kronolith/themes/default/graphics/new.png                |  Bin 638 -> 560 bytes
 kronolith/themes/default/graphics/new_small.png          |  Bin 288 -> 161 bytes
 kronolith/themes/default/graphics/new_small_fade.png     |  Bin 293 -> 155 bytes
 kronolith/themes/default/graphics/new_task.png           |  Bin 543 -> 516 bytes
 kronolith/themes/default/graphics/prefs.png              |  Bin 634 -> 561 bytes
 kronolith/themes/default/graphics/private-000.png        |  Bin 346 -> 236 bytes
 kronolith/themes/default/graphics/private-fff.png        |  Bin 352 -> 236 bytes
 kronolith/themes/default/graphics/recur-000.png          |  Bin 395 -> 373 bytes
 kronolith/themes/default/graphics/recur-fff.png          |  Bin 404 -> 389 bytes
 kronolith/themes/default/graphics/right.png              |  Bin 406 -> 286 bytes
 kronolith/themes/default/graphics/search.png             |  Bin 519 -> 465 bytes
 kronolith/themes/default/graphics/tasks.png              |  Bin 838 -> 615 bytes
 kronolith/themes/default/graphics/weekview.png           |  Bin 475 -> 303 bytes
 kronolith/themes/default/graphics/workweekview.png       |  Bin 475 -> 303 bytes
 kronolith/themes/default/graphics/yearview.png           |  Bin 474 -> 301 bytes
 mnemo/themes/default/graphics/add.png                    |  Bin 507 -> 491 bytes
 mnemo/themes/default/graphics/search.png                 |  Bin 519 -> 465 bytes
 nag/themes/default/graphics/add.png                      |  Bin 543 -> 516 bytes
 nag/themes/default/graphics/alarm_small.png              |  Bin 412 -> 266 bytes
 nag/themes/default/graphics/big_alarm.png                |  Bin 4903 -> 3199 bytes
 nag/themes/default/graphics/checkbox.png                 |  Bin 606 -> 479 bytes
 nag/themes/default/graphics/checked.png                  |  Bin 520 -> 259 bytes
 nag/themes/default/graphics/search.png                   |  Bin 519 -> 465 bytes
 nag/themes/default/graphics/unchecked.png                |  Bin 3063 -> 340 bytes
 sesha/themes/default/graphics/administration.png         |  Bin 617 -> 562 bytes
 sesha/themes/default/graphics/search.png                 |  Bin 519 -> 465 bytes
 turba/themes/default/graphics/contact.png                |  Bin 542 -> 500 bytes
 turba/themes/default/graphics/menu/browse.png            |  Bin 585 -> 537 bytes
 turba/themes/default/graphics/menu/new.png               |  Bin 621 -> 583 bytes
 turba/themes/default/graphics/new.png                    |  Bin 621 -> 583 bytes
 turba/themes/default/graphics/search.png                 |  Bin 519 -> 465 bytes
 turba/themes/default/graphics/turba.png                  |  Bin 471 -> 426 bytes
 228 files changed, 0 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/8392282c237064bed851aa020365c03f075fa02c

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

commit f90ce90aafcc9a35bc728e457badea3a71483deb
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Sep 5 02:17:36 2012 -0600

    For some reason, this breaks kronolith's smartmobile code

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

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

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

commit 682128490ec9650acea7be3aa365aefe249cdff1
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Sep 5 02:34:02 2012 -0600

    More reasonable implementation of HordeMobile.currentPage().

 framework/Core/js/smartmobile.js |   11 +++++------
 imp/js/smartmobile.js            |   12 ++++++++----
 2 files changed, 13 insertions(+), 10 deletions(-)

http://git.horde.org/horde-git/-/commit/682128490ec9650acea7be3aa365aefe249cdff1

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

commit 46d0f7bdead0a650e831b734296f385dfe0d0690
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Sep 5 01:39:09 2012 -0600

    clean up some kronolith smartmobile js/template code

 kronolith/js/smartmobile.js                      |   91 ++++++++--------------
 kronolith/templates/smartmobile/day.html.php     |   17 +++--
 kronolith/templates/smartmobile/month.html.php   |   44 ++++++-----
 kronolith/templates/smartmobile/summary.html.php |    7 +-
 kronolith/themes/default/dynamic/screen.css      |    9 --
 kronolith/themes/default/smartmobile/screen.css  |   20 -----
 6 files changed, 71 insertions(+), 117 deletions(-)

http://git.horde.org/horde-git/-/commit/46d0f7bdead0a650e831b734296f385dfe0d0690

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

commit 33aa7aea959a560278c5acaf680c966f68c3fad9
Author: Michael M Slusarz <slusarz at horde.org>
Date:   Wed Sep 5 03:01:55 2012 -0600

    Fix typo (Bug #11402)

 imp/lib/Dynamic/Compose/Common.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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




More information about the commits mailing list