[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, 11 months
[JBoss JIRA] Created: (GTNPORTAL-1443) Still click Group on UI Tree Group after delete membership of user in this group
by Hang Nguyen (JIRA)
Still click Group on UI Tree Group after delete membership of user in this group
--------------------------------------------------------------------------------
Key: GTNPORTAL-1443
URL: https://jira.jboss.org/browse/GTNPORTAL-1443
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Hang Nguyen
Priority: Minor
Attachments: 1.jpg, 2.jpg
- Create new user: test
- Add new user to group: manager/organization/Management/Executive Board
- Login with new user --> go to organization/Management/Executive Board --> select membership tab -> delete manager membership -> Ok
- Return to Group management
=> Show all group which user have right -> Not correct
-> After delete membership which user is added in group -> user click on name of group which have membership is deleted => Should show message alert "membership in group was deleted so you can't select this group"
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (GTNPORTAL-1940) calender doesnt disappear if tab is used for navigation
by Gary Hu (JIRA)
calender doesnt disappear if tab is used for navigation
-------------------------------------------------------
Key: GTNPORTAL-1940
URL: https://issues.jboss.org/browse/GTNPORTAL-1940
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Gary Hu
Attachments: tab_error.JPG
We have a calendar field in the dialog template. Whenever that field has focus, a calendar is shown to select the date.
But when the user moves out of calendar field using tab key from keyboard to another field, the calendar is still displayed. Th user has to explicitly CLICK to remove the Calendar from display.
Please see the attached screen shot.
The cause is that there is no javascript onblur event defined on the date/time field:
http://anonsvn.jboss.org/repos/gatein/epp/portal/branches/EPP_5_1_Branch/...
The following fix should help to address this issue:
Index: core/src/main/java/org/exoplatform/webui/form/UIFormDateTimeInput.java
===================================================================
--- core/src/main/java/org/exoplatform/webui/form/UIFormDateTimeInput.java (revision 6667)
+++ core/src/main/java/org/exoplatform/webui/form/UIFormDateTimeInput.java (working copy)
@@ -234,6 +234,6 @@
w.write(value_.toString());
w.write('\'');
}
- w.write(" onclick='event.cancelBubble = true'/>");
+ w.write(" onclick='event.cancelBubble = true' onblur='eXo.webui.UICalendar.hide();'/>");
}
}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years