The branch "master" has been updated. The following is a summary of the commits.
from: 817552b5382bc49da092cb0db8d6ccfa6ef42cea 2c0c5f4 [mms] Improved display of contents of ZIP attachments. 5fab542 [mms] More thorough handling of tar.gz data. 3479d57 [mms] Add ability to download individual files from within a .tgz attachment. 42ee503 Combine ZIP and tgz output into a single template f261f58 Abstract MIME part status actions to a function 688935b Do all of HTML image MIME actions in single link d2d1e9c Fix lazy loading of images in the downward direction f0b25fe No longer used option 618afd7 Add toString magic method to Horde_Mime_Id 97166ba Abstract inline part display generation 670625c fix phpdoc 69cea25 Only refresh the affected part when doing a MIME viewer action Summary: http://github.com/horde/horde/compare/817552b5382bc49da092cb0db8d6ccfa6ef42cea...69cea2531f12465603266517dbab4545f30a0347 ----------------------------------------------------------------------- commit 2c0c5f4ceb548b8f85f39ce419496310e9d92fd3 Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 19:18:11 2014 -0700 [mms] Improved display of contents of ZIP attachments. imp/config/mime_drivers.php | 11 +++- imp/docs/CHANGES | 1 + imp/docs/UPGRADING | 7 ++ imp/js/dimpcore.js | 4 + imp/lib/Mime/Viewer/Zip.php | 152 +++++++++++++++++++++++++------------- imp/package.xml | 7 ++- imp/templates/mime/zip.html.php | 22 ++++++ imp/themes/default/mime.css | 12 +++ 8 files changed, 161 insertions(+), 55 deletions(-) create mode 100644 imp/templates/mime/zip.html.php http://github.com/horde/horde/commit/2c0c5f4ceb548b8f85f39ce419496310e9d92fd3 ----------------------------------------------------------------------- commit 5fab542bfc7ac142c5494e54d9a9045a5ad74888 Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 21:05:20 2014 -0700 [mms] More thorough handling of tar.gz data. framework/Mime_Viewer/lib/Horde/Mime/Viewer/Tgz.php | 44 +++++++++++++------ framework/Mime_Viewer/package.xml | 4 +- 2 files changed, 32 insertions(+), 16 deletions(-) http://github.com/horde/horde/commit/5fab542bfc7ac142c5494e54d9a9045a5ad74888 ----------------------------------------------------------------------- commit 3479d57291f604d18761f37c90a95d2fd314f9d1 Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 21:33:28 2014 -0700 [mms] Add ability to download individual files from within a .tgz attachment. imp/config/mime_drivers.php | 19 +++++ imp/docs/CHANGES | 1 + imp/docs/UPGRADING | 2 + imp/js/dimpcore.js | 4 + imp/lib/Mime/Viewer/Tgz.php | 171 +++++++++++++++++++++++++++++++++++++++ imp/package.xml | 1 + imp/templates/mime/tgz.html.php | 22 +++++ imp/themes/default/mime.css | 4 +- 8 files changed, 223 insertions(+), 1 deletions(-) create mode 100644 imp/lib/Mime/Viewer/Tgz.php create mode 100644 imp/templates/mime/tgz.html.php http://github.com/horde/horde/commit/3479d57291f604d18761f37c90a95d2fd314f9d1 ----------------------------------------------------------------------- commit 42ee50339207989caf2569fdcdc951454d3a856d Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 22:34:14 2014 -0700 Combine ZIP and tgz output into a single template imp/lib/Mime/Viewer/Tgz.php | 4 +++- imp/lib/Mime/Viewer/Zip.php | 5 ++++- imp/templates/mime/compressed.html.php | 24 ++++++++++++++++++++++++ imp/templates/mime/tgz.html.php | 22 ---------------------- imp/templates/mime/zip.html.php | 22 ---------------------- 5 files changed, 31 insertions(+), 46 deletions(-) create mode 100644 imp/templates/mime/compressed.html.php delete mode 100644 imp/templates/mime/tgz.html.php delete mode 100644 imp/templates/mime/zip.html.php http://github.com/horde/horde/commit/42ee50339207989caf2569fdcdc951454d3a856d ----------------------------------------------------------------------- commit f261f582b7d8e17c35c43c09e6767219c81790ab Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 22:50:34 2014 -0700 Abstract MIME part status actions to a function First step to restricting MIME status actions to an individual part imp/js/dimpcore.js | 56 +++++++++++++++++---------- imp/lib/Ajax/Application/ShowMessage.php | 2 +- imp/lib/Contents.php | 11 +++-- imp/lib/Contents/InlineOutput.php | 5 ++- imp/lib/Mime/Status.php | 31 ++++++++++++++- imp/lib/Mime/Status/RenderIssue/Display.php | 10 +++-- imp/lib/Mime/Viewer/Alternative.php | 1 + imp/lib/Mime/Viewer/Appledouble.php | 2 +- imp/lib/Mime/Viewer/Audio.php | 1 + imp/lib/Mime/Viewer/Html.php | 52 ++++++++++++++++--------- imp/lib/Mime/Viewer/Images.php | 10 ++++- imp/lib/Mime/Viewer/Itip.php | 5 ++- imp/lib/Mime/Viewer/Mdn.php | 5 ++- imp/lib/Mime/Viewer/Partial.php | 5 ++- imp/lib/Mime/Viewer/Pdf.php | 5 ++- imp/lib/Mime/Viewer/Pgp.php | 18 ++++++--- imp/lib/Mime/Viewer/Plain.php | 11 +++-- imp/lib/Mime/Viewer/Related.php | 21 ++++++---- imp/lib/Mime/Viewer/Smime.php | 15 ++++++- imp/lib/Mime/Viewer/Status.php | 4 +- imp/lib/Mime/Viewer/Tgz.php | 14 ++++--- imp/lib/Mime/Viewer/Video.php | 2 +- imp/lib/Mime/Viewer/Zip.php | 14 ++++--- 23 files changed, 205 insertions(+), 95 deletions(-) http://github.com/horde/horde/commit/f261f582b7d8e17c35c43c09e6767219c81790ab ----------------------------------------------------------------------- commit 688935bfa0c9468627cc7c728fd6bde18bf999bc Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 23:48:35 2014 -0700 Do all of HTML image MIME actions in single link imp/js/imp.js | 2 +- imp/lib/Mime/Viewer/Html.php | 20 +++----------------- 2 files changed, 4 insertions(+), 18 deletions(-) http://github.com/horde/horde/commit/688935bfa0c9468627cc7c728fd6bde18bf999bc ----------------------------------------------------------------------- commit d2d1e9ce850b38e25a0110251b11bc51b943fcd8 Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 23:03:53 2014 -0700 Fix lazy loading of images in the downward direction imp/js/imp.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/d2d1e9ce850b38e25a0110251b11bc51b943fcd8 ----------------------------------------------------------------------- commit f0b25fec6c48f74b0ff81e844ceb27d0f8930153 Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 23:23:16 2014 -0700 No longer used option imp/lib/Contents/InlineOutput.php | 13 ------------- 1 files changed, 0 insertions(+), 13 deletions(-) http://github.com/horde/horde/commit/f0b25fec6c48f74b0ff81e844ceb27d0f8930153 ----------------------------------------------------------------------- commit 618afd7dfe90b7b93be0a791cf61b51b2b3972f5 Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 23:49:40 2014 -0700 Add toString magic method to Horde_Mime_Id framework/Mime/lib/Horde/Mime/Id.php | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) http://github.com/horde/horde/commit/618afd7dfe90b7b93be0a791cf61b51b2b3972f5 ----------------------------------------------------------------------- commit 97166badbff9d05ae6213a6105cef6aabec39ca2 Author: Michael M Slusarz <[email protected]> Date: Fri Nov 7 23:48:51 2014 -0700 Abstract inline part display generation Also allow part display generation to be restricted by MIME ID. imp/lib/Ajax/Application/ShowMessage.php | 76 +++++++++++++++++++---------- imp/lib/Contents/InlineOutput.php | 13 +++++- 2 files changed, 62 insertions(+), 27 deletions(-) http://github.com/horde/horde/commit/97166badbff9d05ae6213a6105cef6aabec39ca2 ----------------------------------------------------------------------- commit 670625c8da9da7592d30a467fe740ce76da8aea3 Author: Michael M Slusarz <[email protected]> Date: Sat Nov 8 00:04:53 2014 -0700 fix phpdoc imp/lib/Ajax/Application/Handler/Dynamic.php | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) http://github.com/horde/horde/commit/670625c8da9da7592d30a467fe740ce76da8aea3 ----------------------------------------------------------------------- commit 69cea2531f12465603266517dbab4545f30a0347 Author: Michael M Slusarz <[email protected]> Date: Sat Nov 8 00:15:47 2014 -0700 Only refresh the affected part when doing a MIME viewer action imp/js/dimpbase.js | 20 ++++++++++++++ imp/js/dimpcore.js | 24 ++++++++++++++--- imp/js/message.js | 18 +++++++++++++ imp/lib/Ajax/Application/Handler/Dynamic.php | 35 ++++++++++++++++++++++++++ 4 files changed, 93 insertions(+), 4 deletions(-) http://github.com/horde/horde/commit/69cea2531f12465603266517dbab4545f30a0347 -- commits mailing list Frequently Asked Questions: http://wiki.horde.org/FAQ To unsubscribe, mail: [email protected]
