[jira] [Created] (TOBAGO-1215) Markup dependent layout is broken after AJAX reload

2012-11-13 Thread Andreas Precht (JIRA)
Andreas Precht created TOBAGO-1215: -- Summary: Markup dependent layout is broken after AJAX reload Key: TOBAGO-1215 URL: https://issues.apache.org/jira/browse/TOBAGO-1215 Project: MyFaces Tobago

[jira] [Deleted] (TOBAGO-395) component-height-calculation-problem

2012-11-13 Thread Udo Schnurpfeil (JIRA)
[ https://issues.apache.org/jira/browse/TOBAGO-395?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Udo Schnurpfeil deleted TOBAGO-395: --- component-height-calculation-problem

[jira] [Commented] (TRINIDAD-2216) The partialSubmit does not work with JSF 2 RI

2012-11-13 Thread Robert Schoch (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-2216?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496161#comment-13496161 ] Robert Schoch commented on TRINIDAD-2216: - None of the Trinidad Committers have

[jira] [Commented] (TRINIDAD-2238) dialog popup via commandButton's action property can only be done once in same page in Trinidad 2.0.1

2012-11-13 Thread Robert Schoch (JIRA)
[ https://issues.apache.org/jira/browse/TRINIDAD-2238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496164#comment-13496164 ] Robert Schoch commented on TRINIDAD-2238: - None of the Trinidad Committers have

[jira] [Created] (MYFACES-3638) NPE in ServerSideStateCacheImpl

2012-11-13 Thread Mark Struberg (JIRA)
Mark Struberg created MYFACES-3638: -- Summary: NPE in ServerSideStateCacheImpl Key: MYFACES-3638 URL: https://issues.apache.org/jira/browse/MYFACES-3638 Project: MyFaces Core Issue Type: Bug

[jira] [Created] (MYFACES-3639) The flash scope cookie is not HttpOnly

2012-11-13 Thread David Gadbois (JIRA)
David Gadbois created MYFACES-3639: -- Summary: The flash scope cookie is not HttpOnly Key: MYFACES-3639 URL: https://issues.apache.org/jira/browse/MYFACES-3639 Project: MyFaces Core Issue

Re: [extval] first steps for the next release

2012-11-13 Thread Mark Struberg
+1 LieGrue, strub From: Gerhard Petracek gerhard.petra...@gmail.com To: MyFaces Development dev@myfaces.apache.org Sent: Monday, November 12, 2012 1:22 AM Subject: [extval] first steps for the next release hi @ all, if there are no objections, i'll

overusing of == ProjectStage.Production

2012-11-13 Thread Mark Struberg
Hi folks! It is perfectly fine if we disable some debug and reload stuff if we are in ProjectStage.Production. But imo we are currently switching around way too much functionality. E.g. I see absolutely no reason for changing the caching key strategy dynamically. That makes it almost

[jira] [Commented] (MYFACES-3638) NPE in ServerSideStateCacheImpl

2012-11-13 Thread JIRA
[ https://issues.apache.org/jira/browse/MYFACES-3638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496480#comment-13496480 ] Marcus Büttner commented on MYFACES-3638: - In my opionen a request which leads

[jira] [Updated] (MYFACES-3638) NPE in ServerSideStateCacheImpl

2012-11-13 Thread JIRA
[ https://issues.apache.org/jira/browse/MYFACES-3638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcus Büttner updated MYFACES-3638: Status: Patch Available (was: Open) NPE in ServerSideStateCacheImpl

[jira] [Commented] (MYFACES-3638) NPE in ServerSideStateCacheImpl

2012-11-13 Thread Mark Struberg (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-3638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496485#comment-13496485 ] Mark Struberg commented on MYFACES-3638: That sounds perfectly reasonable. Is

[jira] [Commented] (MYFACES-3638) NPE in ServerSideStateCacheImpl

2012-11-13 Thread Mark Struberg (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-3638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496608#comment-13496608 ] Mark Struberg commented on MYFACES-3638: I've committed a refactoring of that

Re: overusing of == ProjectStage.Production

2012-11-13 Thread Leonardo Uribe
Hi Why do you think that the changes proposed has no reason behind? The change was not made for improve speed. Instead, the change was done to minimize the key size stored into session. There is always one key per view stored into session, so this part can quickly grow. I think the change has a

[jira] [Commented] (MYFACES-3638) NPE in ServerSideStateCacheImpl

2012-11-13 Thread Leonardo Uribe (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-3638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496702#comment-13496702 ] Leonardo Uribe commented on MYFACES-3638: - I think it is necessary to provide

Re: overusing of == ProjectStage.Production

2012-11-13 Thread Mark Struberg
Hi Leo! The main problem with this code was that 2 different viewId String might have the same hashCode. The Sun JVM is much better in this regard as other JVMs. But we e.g. saw lots of collisions in the IBM JVM and IcedTea. Using the hashCode is perfectly fine for detection of non-equality,

[jira] [Commented] (MYFACES-3638) NPE in ServerSideStateCacheImpl

2012-11-13 Thread Mark Struberg (JIRA)
[ https://issues.apache.org/jira/browse/MYFACES-3638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13496705#comment-13496705 ] Mark Struberg commented on MYFACES-3638: The sequenceId is not even used in the

Re: overusing of == ProjectStage.Production

2012-11-13 Thread Leonardo Uribe
Hi Mark! 2012/11/13 Mark Struberg strub...@yahoo.de: Hi Leo! The main problem with this code was that 2 different viewId String might have the same hashCode. The Sun JVM is much better in this regard as other JVMs. But we e.g. saw lots of collisions in the IBM JVM and IcedTea. I see.