Issue Type: Bug Bug
Assignee: Sande Gilda
Components: quickstarts
Created: 24/Feb/14 9:38 AM
Description:

There are two invalid JSF navigation rules in faces-config.xml of richfaces-validation demo. These rules can be safely removed because the application doesn't use them.

<navigation-rule>
        <from-view-id>/index.xhtml</from-view-id>
        <navigation-case>
            <from-action>#{auth.authenticate(username)}</from-action>
            <if>#{auth.logged}</if>
            <to-view-id>/tasks.xhtml</to-view-id>
            <redirect />
        </navigation-case>
    </navigation-rule>
    
    <navigation-rule>
        <from-view-id>/tasks.xhtml</from-view-id>
        <navigation-case>
            <from-action>#{auth.logout}</from-action>
            <if>#{!auth.logged}</if>
            <to-view-id>/index.xhtml</to-view-id>
            <redirect />
        </navigation-case>
    </navigation-rule>
Environment: WFK 2.5.0.ER1
Project: JBoss Developer Framework
Priority: Major Major
Reporter: Pavol Pitonak
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira