[JBoss JIRA] (GTNPORTAL-2337) I18N locale identifier parsing code does not support all valid cases in Java 7
by Chris Laprun (JIRA)
Chris Laprun created GTNPORTAL-2337:
---------------------------------------
Summary: I18N locale identifier parsing code does not support all valid cases in Java 7
Key: GTNPORTAL-2337
URL: https://issues.jboss.org/browse/GTNPORTAL-2337
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Internationalization and Localization
Affects Versions: 3.2.0-Beta01
Reporter: Chris Laprun
According to the Locale Java 7 javadoc:
Java has used ja_JP_JP to represent Japanese as used in Japan together with the Japanese Imperial calendar. This is now representable using a Unicode locale extension, by specifying the Unicode locale key ca (for "calendar") and type japanese. When the Locale constructor is called with the arguments "ja", "JP", "JP", the extension "u-ca-japanese" is automatically added.
This results in a ja_JP_JP_#u-ca-japanese Locale which is currently parsed as invalid. Note that there is a similar issue for Thai.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] Created: (GTNPORTAL-1746) Translation in Czech
by Marek Posolda (JIRA)
Translation in Czech
--------------------
Key: GTNPORTAL-1746
URL: https://issues.jboss.org/browse/GTNPORTAL-1746
Project: GateIn Portal
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: Internationalization and Localization
Affects Versions: 3.1.0-GA
Environment: GateIn trunk, revision 5669
Reporter: Marek Posolda
Fix For: 3.2.0-GA
We worked on czech localization with Michal Vanco and patch is in attachement. We translated property files based on trunk, revision 5669 so all the new properties should be translated.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] Created: (GTNPORTAL-1791) Incorrect logging category in CacheUserProfileFitler
by Marek Posolda (JIRA)
Incorrect logging category in CacheUserProfileFitler
----------------------------------------------------
Key: GTNPORTAL-1791
URL: https://issues.jboss.org/browse/GTNPORTAL-1791
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 3.1.0-GA
Environment: Gatein trunk, revision 5668
Reporter: Marek Posolda
Priority: Trivial
In class org.exoplatform.web.CacheUserProfileFilter is incorrect logging category
private static Log log = ExoLogger.getLogger("core.security.SetCurrentIdentityFilter");
This causes confusing exception messages, which seems to be thrown from SetCurrentIdentityFilter even if they are thrown from CacheUserProfileFilter like:
[SetCurrentIdentityFilter]An error occured while cache user profile
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 5 months
[JBoss JIRA] (GTNPORTAL-2167) GateIn - Wicket Portlet Javascript Error
by Ronny Pscheidl (Created) (JIRA)
GateIn - Wicket Portlet Javascript Error
----------------------------------------
Key: GTNPORTAL-2167
URL: https://issues.jboss.org/browse/GTNPORTAL-2167
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: User Interface
Affects Versions: 3.2.0-M01, 3.1.0-GA
Reporter: Ronny Pscheidl
Fix For: 3.2.0-M02, 3.2.0-GA
Attachments: Util.js-patched_for_wicket_protlet
If you use wicket-portlet ajax requests doesn't be submitted, because of the bind function in Util.js. You get errors like undefined when using bind function. new browser javascript egines already have this function, so it hasn't to be overridden. wicket-ajax use this function a lot. Please update the javascript file in line 251 like this:
/**
* @author jeremi joslin
*
* Function util
*/
if (Function.prototype.bind == null) {
Function.prototype.bind = function(object) {
var method = this;
return function() {
method.apply(object, arguments);
}
}
}
path: web\eXoResources\src\main\webapp\javascript\eXo\core
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 6 months