[commits] Horde branch imp_6_2 updated. 1a2c072a241dcb4bba754dcf39110c34a327a77f
Michael M Slusarz
slusarz at horde.org
Tue Nov 12 05:07:18 UTC 2013
The branch "imp_6_2" has been updated.
The following is a summary of the commits.
from: 5aef5f36377e278e7119030e7f5c39596589e253
502e67e [mms] Fix regression where auto-saved drafts were not being deleted when cancelling compose message in dynamic view.
0b33b95 Non-authenticated AJAX actions are only supported in handlers, not hooks
4eb99d9 Hacky: for 'fallback' auth used with AJAX, need to store authentication exception in case non-auth access is not available
672c387 Make the draft recovery notification message sticky
a81b4ba Eliminate a few more strict warnings
d0ffe98 Move PHP-port of JSMin code to a separate package
37d243d Move JSMin code to a separate package
c085cd6 Fix scanning for regex vs. division
1a2c072 Merge branch 'master' into imp_6_2
Summary: http://github.com/horde/horde/compare/5aef5f36377e278e7119030e7f5c39596589e253...1a2c072a241dcb4bba754dcf39110c34a327a77f
-----------------------------------------------------------------------
commit 502e67e7ea6dbd53a04001f806a73bb902ffdbe6
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 19:02:23 2013 -0700
[mms] Fix regression where auto-saved drafts were not being deleted when cancelling compose message in dynamic view.
imp/docs/CHANGES | 2 ++
imp/lib/Ajax/Application/Handler/Draft.php | 1 +
imp/lib/Compose.php | 13 ++++++++++++-
imp/package.xml | 2 ++
4 files changed, 17 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/502e67e7ea6dbd53a04001f806a73bb902ffdbe6
http://git.horde.org/horde-git/-/commit/502e67e7ea6dbd53a04001f806a73bb902ffdbe6
-----------------------------------------------------------------------
commit 0b33b95a11dea4699cf740a814f0b77a42c8256e
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 19:47:36 2013 -0700
Non-authenticated AJAX actions are only supported in handlers, not hooks
framework/Core/lib/Horde/Core/Ajax/Application.php | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
http://github.com/horde/horde/commit/0b33b95a11dea4699cf740a814f0b77a42c8256e
http://git.horde.org/horde-git/-/commit/0b33b95a11dea4699cf740a814f0b77a42c8256e
-----------------------------------------------------------------------
commit 4eb99d9a5a62ecbbfce432e502ed2b1ff508432d
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 19:54:01 2013 -0700
Hacky: for 'fallback' auth used with AJAX, need to store authentication exception in case non-auth access is not available
Otherwise, appInitFailure() is never triggered for app (i.e. IMP auto
draft save is not triggered).
For H6, need cleaner way to bootstrap an access and/or route all logout
events through a single object. Right now, Horde_ErrorHandler catches
auth exceptions, but it does redirects only. Should refactor so it
handles non-interactive accessess too.
framework/Core/lib/Horde/Core/Ajax/Response/HordeCore/NoAuth.php | 13 +++++
.../lib/Horde/Core/Ajax/Response/HordeCore/SessionTimeout.php | 13 +++++
framework/Core/lib/Horde/Registry.php | 13 +++++
3 files changed, 39 insertions(+), 0 deletions(-)
http://github.com/horde/horde/commit/4eb99d9a5a62ecbbfce432e502ed2b1ff508432d
http://git.horde.org/horde-git/-/commit/4eb99d9a5a62ecbbfce432e502ed2b1ff508432d
-----------------------------------------------------------------------
commit 672c3872a0f3b93f57ca36ce242759c548460b54
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 20:06:40 2013 -0700
Make the draft recovery notification message sticky
imp/lib/Compose.php | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/672c3872a0f3b93f57ca36ce242759c548460b54
http://git.horde.org/horde-git/-/commit/672c3872a0f3b93f57ca36ce242759c548460b54
-----------------------------------------------------------------------
commit a81b4ba9335afbd8beb3c4ce4c6736812d8022c4
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 20:47:40 2013 -0700
Eliminate a few more strict warnings
framework/Form/lib/Horde/Form/Type.php | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
http://github.com/horde/horde/commit/a81b4ba9335afbd8beb3c4ce4c6736812d8022c4
http://git.horde.org/horde-git/-/commit/a81b4ba9335afbd8beb3c4ce4c6736812d8022c4
-----------------------------------------------------------------------
commit d0ffe98f09175dd49f26aeb6cb099a56c4f153cb
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 21:08:16 2013 -0700
Move PHP-port of JSMin code to a separate package
framework/Text_Filter_Jsmin/doc/Horde/Text/Filter/Jsmin/LICENSE | 21 +
framework/Text_Filter_Jsmin/lib/Horde/Text/Filter/Jsmin.php | 303 +++++
framework/Text_Filter_Jsmin/package.xml | 108 ++
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/AllTests.php | 3 +
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/JsminTest.php | 77 ++
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/bootstrap.php | 3 +
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/phpunit.xml | 8 +
7 files changed, 523 insertions(+), 0 deletions(-)
create mode 100644 framework/Text_Filter_Jsmin/doc/Horde/Text/Filter/Jsmin/LICENSE
create mode 100644 framework/Text_Filter_Jsmin/lib/Horde/Text/Filter/Jsmin.php
create mode 100644 framework/Text_Filter_Jsmin/package.xml
create mode 100644 framework/Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/AllTests.php
create mode 100644 framework/Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/JsminTest.php
create mode 100644 framework/Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/bootstrap.php
create mode 100644 framework/Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/phpunit.xml
http://github.com/horde/horde/commit/d0ffe98f09175dd49f26aeb6cb099a56c4f153cb
http://git.horde.org/horde-git/-/commit/d0ffe98f09175dd49f26aeb6cb099a56c4f153cb
-----------------------------------------------------------------------
commit 37d243de2b4aaf791441eba72e782b61418fd73c
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 21:09:42 2013 -0700
Move JSMin code to a separate package
framework/Text_Filter/lib/Horde/Text/Filter/JavascriptMinify.php | 12 +-
.../Text_Filter/lib/Horde/Text/Filter/JavascriptMinify/JsMin.php | 315 -----
framework/Text_Filter/package.xml | 33 +-
framework/Text_Filter/test/Horde/Text/Filter/JsminTest.php | 77 -
4 files changed, 24 insertions(+), 413 deletions(-)
delete mode 100644 framework/Text_Filter/lib/Horde/Text/Filter/JavascriptMinify/JsMin.php
delete mode 100644 framework/Text_Filter/test/Horde/Text/Filter/JsminTest.php
http://github.com/horde/horde/commit/37d243de2b4aaf791441eba72e782b61418fd73c
http://git.horde.org/horde-git/-/commit/37d243de2b4aaf791441eba72e782b61418fd73c
-----------------------------------------------------------------------
commit c085cd61b2c8769c3bfeffeb013d248f88d2d3d6
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 21:35:47 2013 -0700
Fix scanning for regex vs. division
framework/Text_Filter_Jsmin/lib/Horde/Text/Filter/Jsmin.php | 3 +-
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/JsminTest.php | 7 +++++
2 files changed, 9 insertions(+), 1 deletions(-)
http://github.com/horde/horde/commit/c085cd61b2c8769c3bfeffeb013d248f88d2d3d6
http://git.horde.org/horde-git/-/commit/c085cd61b2c8769c3bfeffeb013d248f88d2d3d6
-----------------------------------------------------------------------
commit 1a2c072a241dcb4bba754dcf39110c34a327a77f
Merge: 5aef5f3 c085cd6
Author: Michael M Slusarz <slusarz at horde.org>
Date: Mon Nov 11 22:06:23 2013 -0700
Merge branch 'master' into imp_6_2
Conflicts:
imp/package.xml
framework/Core/lib/Horde/Core/Ajax/Application.php | 8 +-
framework/Core/lib/Horde/Core/Ajax/Response/HordeCore/NoAuth.php | 13 +
.../lib/Horde/Core/Ajax/Response/HordeCore/SessionTimeout.php | 13 +
framework/Core/lib/Horde/Registry.php | 13 +
framework/Form/lib/Horde/Form/Type.php | 12 +-
framework/Text_Filter/lib/Horde/Text/Filter/JavascriptMinify.php | 12 +-
.../Text_Filter/lib/Horde/Text/Filter/JavascriptMinify/JsMin.php | 315 -----
framework/Text_Filter/package.xml | 33 +-
framework/Text_Filter/test/Horde/Text/Filter/JsminTest.php | 77 -
framework/Text_Filter_Jsmin/doc/Horde/Text/Filter/Jsmin/LICENSE | 21 +
framework/Text_Filter_Jsmin/lib/Horde/Text/Filter/Jsmin.php | 304 ++++
framework/Text_Filter_Jsmin/package.xml | 108 ++
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/AllTests.php | 3 +
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/JsminTest.php | 84 ++
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/bootstrap.php | 3 +
.../Text_Filter_Jsmin/test/Horde/Text/Filter/Jsmin/phpunit.xml | 8 +
imp/docs/CHANGES | 2 +
imp/lib/Ajax/Application/Handler/Draft.php | 1 +
imp/lib/Compose.php | 19 +-
imp/package.xml | 1 +
20 files changed, 628 insertions(+), 422 deletions(-)
http://github.com/horde/horde/commit/1a2c072a241dcb4bba754dcf39110c34a327a77f
http://git.horde.org/horde-git/-/commit/1a2c072a241dcb4bba754dcf39110c34a327a77f
More information about the commits
mailing list