[
https://issues.apache.org/jira/browse/WICKET-2233?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12702455#action_12702455
]
Juergen Donnerstag commented on WICKET-2233:
--------------------------------------------
What happens:
Settings.java
...
private boolean automaticMultiWindowSupport = true;
...
but SecondLevelCacheSessionStore.java
// turn automatic multi window support off by default, as we
don't
// really
// need to be afraid to run out of history with this
implementation.
// note that the session store is created before
Application#init is
// called, so if users set this setting explicitly, it'll be
overridden
// (and that's exactly what we want: provide a better default,
but not
// forcing people to do away with this feature).
Application.get().getPageSettings().setAutomaticMultiWindowSupport(false);
which is the default: WebApplication.java
protected ISessionStore newSessionStore()
{
return new SecondLevelCacheSessionStore(this, new
DiskPageStore());
}
> getPageSettings().setAutomaticMultiWindowSupport(true); is said to be enabled
> by default in its javadoc but isn't
> ------------------------------------------------------------------------------------------------------------------
>
> Key: WICKET-2233
> URL: https://issues.apache.org/jira/browse/WICKET-2233
> Project: Wicket
> Issue Type: Bug
> Reporter: Live Nono
> Priority: Minor
>
> More info there :
> http://www.nabble.com/LinkTree-breaks-when-using-twice-instances-of-Firefox-(with--Unexpected-RuntimeException)-td23098156.html
> I don't know whether it's just about changing the javadoc or fixing the
> current default...
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.