Restore view phase does not conforms specification
--------------------------------------------------

                 Key: MYFACES-1412
                 URL: http://issues.apache.org/jira/browse/MYFACES-1412
             Project: MyFaces Core
          Issue Type: Bug
          Components: JSR-127
    Affects Versions: 1.1.4
            Reporter: Nikolay Petrov
             Fix For: 1.1.5-SNAPSHOT
         Attachments: RestoreViewExecutor.java

JSF 1.1 spec, section 2.2.1 says:
-Examine the FacesContext instance for the current request. If it already
contains a UIViewRoot:
--Set the locale on this UIViewRoot to the value returned by the
getRequestLocale() method on the ExternalContext for this request.
--For each component in the component tree, determine if a ValueBinding for
"binding" is present. If so, call the setValue() method on this
ValueBinding, passing the component instance on which it was found.
--Take no further action during this phase.

As I was looking at restore view phase implementation there was no such 
behaviour implemented. This should be implemented as:
                if(facesContext.getViewRoot() != null) {
                        
facesContext.getViewRoot().setLocale(facesContext.getExternalContext().getRequestLocale());
                        
RestoreStateUtils.recursivelyHandleComponentReferencesAndSetValid(facesContext, 
facesContext.getViewRoot());
                        return false;
                }
At least if understand the code properly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to