You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Matthias Weßendorf (JIRA)" <de...@myfaces.apache.org> on 2010/09/02 11:26:54 UTC

[jira] Created: (MYFACES-2905) [JSF2] absolute-ordering warning

[JSF2] absolute-ordering warning
--------------------------------

                 Key: MYFACES-2905
                 URL: https://issues.apache.org/jira/browse/MYFACES-2905
             Project: MyFaces Core
          Issue Type: Bug
    Affects Versions: 2.0.1
            Reporter: Matthias Weßendorf
            Assignee: Matthias Weßendorf


See thread for this

http://markmail.org/message/cco2pdvuzlecs6da

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (MYFACES-2905) [JSF2] absolute-ordering warning

Posted by "Matthias Weßendorf (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/MYFACES-2905?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12905460#action_12905460 ] 

Matthias Weßendorf commented on MYFACES-2905:
---------------------------------------------

Problem is that in:

        else if (!appConfigResources.isEmpty())
        {
            //Relative ordering
            for (FacesConfig resource : appConfigResources)
            {
                if (resource.getOrdering() != null)
                {
                    if (log.isLoggable(Level.WARNING))
                    {
                        log.warning("<absolute-ordering> element found in application " +
                                "configuration resource "+resource.getName()+". " +
                                "This description will be ignored and the actions described " +
                                "in <ordering> elements will be taken into account instead.");
                    }
                }
            }
......................

we check incorrectly for ordering.

changing to if (resource.getAbsoluteOrdering() != null) is the fix

> [JSF2] absolute-ordering warning
> --------------------------------
>
>                 Key: MYFACES-2905
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2905
>             Project: MyFaces Core
>          Issue Type: Bug
>    Affects Versions: 2.0.1
>            Reporter: Matthias Weßendorf
>            Assignee: Matthias Weßendorf
>
> See thread for this
> http://markmail.org/message/cco2pdvuzlecs6da

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (MYFACES-2905) [JSF2] absolute-ordering warning

Posted by "Matthias Weßendorf (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/MYFACES-2905?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matthias Weßendorf resolved MYFACES-2905.
-----------------------------------------

    Fix Version/s: 2.0.2-SNAPSHOT
       Resolution: Fixed

> [JSF2] absolute-ordering warning
> --------------------------------
>
>                 Key: MYFACES-2905
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2905
>             Project: MyFaces Core
>          Issue Type: Bug
>    Affects Versions: 2.0.1
>            Reporter: Matthias Weßendorf
>            Assignee: Matthias Weßendorf
>             Fix For: 2.0.2-SNAPSHOT
>
>
> See thread for this
> http://markmail.org/message/cco2pdvuzlecs6da

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.