[JBoss JIRA] (GTNPORTAL-2959) Community Portlet logs error to console if net access is unavailable
by Boleslaw Dawidowicz (JIRA)
[ https://issues.jboss.org/browse/GTNPORTAL-2959?page=com.atlassian.jira.pl... ]
Boleslaw Dawidowicz updated GTNPORTAL-2959:
-------------------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 3.6.0.Beta02
Resolution: Done
> Community Portlet logs error to console if net access is unavailable
> --------------------------------------------------------------------
>
> Key: GTNPORTAL-2959
> …
[View More] URL: https://issues.jboss.org/browse/GTNPORTAL-2959
> Project: GateIn Portal
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Reporter: Matt Wringe
> Assignee: Viliam Rockai
> Fix For: 3.6.0.Beta02
>
>
> If internet access is unavailable or the urls to access the blogs and tweets are down, the community portlet logs an error to the server logs. The portlet should not be logging an error to the logs, and even a warning is probably not warranted for this case. The portlet does properly show a message if it can't access the urls specified, and this is probably sufficient in this case.
> 10:48:08,664 ERROR [org.gatein.portlet.responsive.community.CommunityPortlet] (http-/127.0.0.1:8080-1) Unable to open RSS feed url: java.net.UnknownHostException: community.jboss.org
> 10:48:08,666 ERROR [org.gatein.portlet.responsive.community.CommunityPortlet] (http-/127.0.0.1:8080-1) Unable to open RSS feed url: java.net.UnknownHostException: api.twitter.com
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
[View Less]
11 years, 11 months
[JBoss JIRA] (GTNPORTAL-2973) GateIn Redirect Admin UI: Blank page after clicking "Configure" in redirect
by Alexandre Mendonça (JIRA)
Alexandre Mendonça created GTNPORTAL-2973:
---------------------------------------------
Summary: GateIn Redirect Admin UI: Blank page after clicking "Configure" in redirect
Key: GTNPORTAL-2973
URL: https://issues.jboss.org/browse/GTNPORTAL-2973
Project: GateIn Portal
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Reporter: Alexandre Mendonça
Assignee: Alexandre Mendonça
…
[View More] Priority: Critical
Sometimes, when clicking the icon for configuring a redirect, a blank page is shown instead of the actual configuration page (which flashes quickly).
This is probably due to a race condition between click event and JSF render, it should be set to show it only after ajax request is processed and elements rendered.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
[View Less]
11 years, 11 months
[JBoss JIRA] (GTNPORTAL-2972) EPP+SP: Problem with LoginRedirectFilter reading POST parameters
by Marek Posolda (JIRA)
[ https://issues.jboss.org/browse/GTNPORTAL-2972?page=com.atlassian.jira.pl... ]
Marek Posolda commented on GTNPORTAL-2972:
------------------------------------------
Moved to GTNPORTAL project as it's not GTNSSO issue.
> EPP+SP: Problem with LoginRedirectFilter reading POST parameters
> ----------------------------------------------------------------
>
> Key: GTNPORTAL-2972
> URL: https://issues.jboss.org/browse/GTNPORTAL-2972
…
[View More]> Project: GateIn Portal
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Reporter: Marek Posolda
> Assignee: Marek Posolda
> Fix For: 3.x
>
>
> Reported by Martin Weiler:
> a customer is using LoginRedirectFilter on EPP+SP. We found out that this filter is breaking the Content Inline editing functionality of SP, as it reads out the request parameters, which results in the POST parameters getting null.
> The customer is suggesting the following fix:
> // Return true if logout request is in progress
> - private boolean isLogoutRequest(HttpServletRequest req)
> - {
> - String portalComponentId = req.getParameter("portal:componentId");
> - String portalAction = req.getParameter("portal:action");
> - if (("UIPortal".equals(portalComponentId)) && ("Logout".equals(portalAction)))
> - {
> - return true;
> - }
> - else
> - {
> - return false;
> - }
> + private boolean isLogoutRequest(HttpServletRequest req) {
> + if("GET".equals(req.getMethod())) {
> + String portalComponentId = req.getParameter("portal:componentId");
> + String portalAction = req.getParameter("portal:action");
> +
> + if (("UIPortal".equals(portalComponentId)) && ("Logout".equals(portalAction)))
> + return true;
> + else
> + return false;
> + }
> + else
> + return false;
> }
> If you think it is ok, could you go ahead and commit it?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
[View Less]
11 years, 11 months