Alexander Wels has uploaded a new change for review. Change subject: userportal,webadmin: unite locale cookie ......................................................................
userportal,webadmin: unite locale cookie - Set the locale cookie path to '/' so we can share the cookie between all the applications. Change-Id: Id20dda2985226a9a525e9c0f0b2d8c20cb0a6210 Signed-off-by: Alexander Wels <[email protected]> --- M backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/servlet/LocaleFilter.java 1 file changed, 6 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/48/17548/1 diff --git a/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/servlet/LocaleFilter.java b/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/servlet/LocaleFilter.java index 07b62b4..9fda8a8 100644 --- a/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/servlet/LocaleFilter.java +++ b/backend/manager/modules/utils/src/main/java/org/ovirt/engine/core/utils/servlet/LocaleFilter.java @@ -42,6 +42,11 @@ public static final String LOCALE = "locale"; /** + * The root of a path. + */ + public static final String ROOT_PATH = "/"; + + /** * The default locale. */ public static final Locale DEFAULT_LOCALE = Locale.US; @@ -70,7 +75,7 @@ final Locale userLocale) { // Detected locale doesn't match the default locale, set a cookie. Cookie cookie = new Cookie(LocaleFilter.LOCALE, userLocale.toString()); - cookie.setPath(servletContext.getContextPath()); + cookie.setPath(ROOT_PATH); cookie.setMaxAge(Integer.MAX_VALUE); // Doesn't expire. response.addCookie(cookie); } -- To view, visit http://gerrit.ovirt.org/17548 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id20dda2985226a9a525e9c0f0b2d8c20cb0a6210 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alexander Wels <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
