diff --git a/.gradle/5.6.3/executionHistory/executionHistory.bin b/.gradle/5.6.3/executionHistory/executionHistory.bin index e1c2ea5..96c69ef 100644 Binary files a/.gradle/5.6.3/executionHistory/executionHistory.bin and b/.gradle/5.6.3/executionHistory/executionHistory.bin differ diff --git a/.gradle/5.6.3/executionHistory/executionHistory.lock b/.gradle/5.6.3/executionHistory/executionHistory.lock index 48ae257..2daa2cb 100644 Binary files a/.gradle/5.6.3/executionHistory/executionHistory.lock and b/.gradle/5.6.3/executionHistory/executionHistory.lock differ diff --git a/.gradle/5.6.3/fileHashes/fileHashes.bin b/.gradle/5.6.3/fileHashes/fileHashes.bin index 774f62f..0329488 100644 Binary files a/.gradle/5.6.3/fileHashes/fileHashes.bin and b/.gradle/5.6.3/fileHashes/fileHashes.bin differ diff --git a/.gradle/5.6.3/fileHashes/fileHashes.lock b/.gradle/5.6.3/fileHashes/fileHashes.lock index 74d97f2..818c489 100644 Binary files a/.gradle/5.6.3/fileHashes/fileHashes.lock and b/.gradle/5.6.3/fileHashes/fileHashes.lock differ diff --git a/.gradle/5.6.3/javaCompile/javaCompile.lock b/.gradle/5.6.3/javaCompile/javaCompile.lock index 0c4d516..8314307 100644 Binary files a/.gradle/5.6.3/javaCompile/javaCompile.lock and b/.gradle/5.6.3/javaCompile/javaCompile.lock differ diff --git a/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/.gradle/buildOutputCleanup/buildOutputCleanup.lock index c9f695e..06a88a0 100644 Binary files a/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/src/main/java/com/ffii/core/security/web/authentication/JsonAuthenticationFailureHandler.java b/src/main/java/com/ffii/core/security/web/authentication/JsonAuthenticationFailureHandler.java index be29efb..bc10bb0 100644 --- a/src/main/java/com/ffii/core/security/web/authentication/JsonAuthenticationFailureHandler.java +++ b/src/main/java/com/ffii/core/security/web/authentication/JsonAuthenticationFailureHandler.java @@ -58,6 +58,7 @@ public class JsonAuthenticationFailureHandler extends SimpleUrlAuthenticationFai public void onAuthenticationFailure(HttpServletRequest request, HttpServletResponse response, AuthenticationException exception) throws IOException, ServletException { + logger.info("Authentication Failure: " + exception.getMessage() + " [" + request.getRequestURL() + "]"); logger.info("Authentication Failure: " + exception.getMessage() + " [" + request.getRemoteAddr() + "]"); String username = StringUtils.left(ServletRequestUtils.getStringParameter(request, "username"), 32); diff --git a/src/main/webapp/WEB-INF/root/home.ftl b/src/main/webapp/WEB-INF/root/home.ftl index 8e0ed8e..cb7a859 100644 --- a/src/main/webapp/WEB-INF/root/home.ftl +++ b/src/main/webapp/WEB-INF/root/home.ftl @@ -24,6 +24,9 @@ -ms-content-zooming: none; } + + + <#-- Ext JS --> @@ -259,6 +262,7 @@ window.onerror = function (msg, url, lineNo, columnNo, error) { } }; + <#-- Ext.application({ extend: 'Main.Application',