[commits] Horde branch master updated. 194da1ac3cae0431733f8329ce4e7b53b692b35e

Michael J. Rubinsky mrubinsk at horde.org
Mon Jul 11 21:06:29 UTC 2016


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

from: bba5d6587283317a0e82b24906ab5579cdb33ecb

01a17af Add scripthighlighter version 4 support.
966465f Add support for sending css files with ajax response.
2742a25 BFN, bump version.
60b5938 Use scripthighter version 4.
acac664 Bump minimum required.
0fe29de Use the --compat flag when building for BC.
498218b Add IMP_Preview:loadedFromCache event.
62d1a37 BFN
194da1a @todo

Summary: http://github.com/horde/horde/compare/bba5d6587283317a0e82b24906ab5579cdb33ecb...194da1ac3cae0431733f8329ce4e7b53b692b35e

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

commit 01a17af808f7ee64b47d3ea622d75ba0a9a9ce1d
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 14:23:04 2016 -0400

    Add scripthighlighter version 4 support.

 .../syntaxhighlighter/scripts/syntaxhighlighter.js |    3 +
 .../scripts/syntaxhighlighter.js.map               |    1 +
 .../js/syntaxhighlighter/src/syntaxhighlighter.js  | 5332 ++++++++++++++++++++
 .../syntaxhighlighter/src/syntaxhighlighter.js.map |    1 +
 .../js/syntaxhighlighter/styles/theme.css          |  238 +
 5 files changed, 5575 insertions(+)
 create mode 100644 framework/Mime_Viewer/js/syntaxhighlighter/scripts/syntaxhighlighter.js
 create mode 100644 framework/Mime_Viewer/js/syntaxhighlighter/scripts/syntaxhighlighter.js.map
 create mode 100644 framework/Mime_Viewer/js/syntaxhighlighter/src/syntaxhighlighter.js
 create mode 100644 framework/Mime_Viewer/js/syntaxhighlighter/src/syntaxhighlighter.js.map
 create mode 100644 framework/Mime_Viewer/js/syntaxhighlighter/styles/theme.css

http://github.com/horde/horde/commit/01a17af808f7ee64b47d3ea622d75ba0a9a9ce1d

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

commit 966465f69a831660449a290d46633c50e1a54bff
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 14:24:56 2016 -0400

    Add support for sending css files with ajax response.

 framework/Core/js/hordecore.js                            | 14 ++++++++++++++
 framework/Core/lib/Horde/Core/Ajax/Response/HordeCore.php |  7 ++++++-
 2 files changed, 20 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/966465f69a831660449a290d46633c50e1a54bff

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

commit 2742a25b5b3d629f5182e615978bc78cc83b3001
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 14:25:34 2016 -0400

    BFN, bump version.

 framework/Mime_Viewer/package.xml | 22 ++++++++++++++++------
 1 file changed, 16 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/2742a25b5b3d629f5182e615978bc78cc83b3001

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

commit 60b593873f16a2e77bce0747ba475a22c3c9bc79
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 14:26:38 2016 -0400

    Use scripthighter version 4.

 .../lib/Horde/Core/Mime/Viewer/Syntaxhighlighter.php     | 16 ++--------------
 1 file changed, 2 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/60b593873f16a2e77bce0747ba475a22c3c9bc79

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

commit acac6641f32daf2a039c37fef4335e75f4935237
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 14:26:58 2016 -0400

    Bump minimum required.

 framework/Core/package.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/acac6641f32daf2a039c37fef4335e75f4935237

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

commit 0fe29deeb63b51a368775e2e65f42e310fcb74e5
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 15:42:50 2016 -0400

    Use the --compat flag when building for BC.

 .../syntaxhighlighter/scripts/syntaxhighlighter.js |  4 ++--
 .../js/syntaxhighlighter/src/syntaxhighlighter.js  | 25 +++++++++++++++++++---
 .../syntaxhighlighter/src/syntaxhighlighter.js.map |  2 +-
 3 files changed, 25 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/0fe29deeb63b51a368775e2e65f42e310fcb74e5

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

commit 498218bf8b46cf3c924b219309861a6cf7beed0d
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 16:53:35 2016 -0400

    Add IMP_Preview:loadedFromCache event.
    
    Fired after preview is loaded from cache rather than loaded
    after the initial ajax showMessage call loads it. Gives mime viewers
    a chance to perform any actions on the content that would normally
    be triggered via the ajax Queue.
    
    Also, use this new event to fix syntaxhighlighter mime viewer not
    working after the first load.

 imp/config/mime_drivers.php               | 93 ++++++++++++++++++++++++++++++-
 imp/js/base.js                            |  4 +-
 imp/js/syntaxhighlighter.js               |  1 +
 imp/lib/Mime/Viewer/Syntaxhighlighter.php | 38 +++++++++++++
 imp/package.xml                           |  8 ++-
 5 files changed, 140 insertions(+), 4 deletions(-)
 create mode 100644 imp/js/syntaxhighlighter.js
 create mode 100644 imp/lib/Mime/Viewer/Syntaxhighlighter.php

http://github.com/horde/horde/commit/498218bf8b46cf3c924b219309861a6cf7beed0d

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

commit 62d1a37afd912d22d847f196b4fdb63a94c84c91
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 17:03:38 2016 -0400

    BFN

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

http://github.com/horde/horde/commit/62d1a37afd912d22d847f196b4fdb63a94c84c91

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

commit 194da1ac3cae0431733f8329ce4e7b53b692b35e
Author: Michael J Rubinsky <mrubinsk at horde.org>
Date:   Mon Jul 11 17:05:55 2016 -0400

    @todo

 framework/Mime_Viewer/lib/Horde/Mime/Viewer/Syntaxhighlighter.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/194da1ac3cae0431733f8329ce4e7b53b692b35e




More information about the commits mailing list