DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18362>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18362 Template lookup mechanism ignores language changes made with the ChangeLanguage action. Summary: Template lookup mechanism ignores language changes made with the ChangeLanguage action. Product: Jetspeed Version: 1.4b3 Platform: PC OS/Version: Windows XP Status: NEW Severity: Enhancement Priority: Other Component: Miscellaneous AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] I suggest to use the JetspeedLocalizationService in stead of the (deprecated) LocaleDetector in the JetspeedTemplateLocatorService class. Would this patch make sense? The change could perhaps be as simple as : diff -r1.15 JetspeedTemplateLocatorService.java 731c733,734 < tmplocale = LocaleDetector.getLocale(data); --- > JetspeedLocalizationService locService = (JetspeedLocalizationService) TurbineServices.getInstance().getService(LocalizationService.SERVICE_NAME); > tmplocale = locService.getLocale(data); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
