[jboss-jira] [JBoss JIRA] Created: (JBPORTAL-2240) Partial Refresh and URL-ReWriting
Magesh Kumar B (JIRA)
jira-events at lists.jboss.org
Mon Nov 17 02:58:36 EST 2008
Partial Refresh and URL-ReWriting
---------------------------------
Key: JBPORTAL-2240
URL: https://jira.jboss.org/jira/browse/JBPORTAL-2240
Project: JBoss Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Portal Core
Affects Versions: 2.7.0 Final
Environment: IE7
Reporter: Magesh Kumar B
Priority: Minor
When accessing partial-refresh enabled pages in IE7, the first hit re-writes all urls in the page with jsessionid. This makes the partial-refresh pages to not behave the way they should. To fix this the following needs to be added in dyna.js
function isURLAccepted(url) {
var indexOfSessionId = server_base_url.indexOf(";jsessionid");
if (indexOfSessionId > 0)
{
server_base_url = server_base_url.substring(0,indexOfSessionId-";jsessionid".length-1);
}
...
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list