[
https://issues.jboss.org/browse/RF-13555?page=com.atlassian.jira.plugin.s...
]
Brian Leathem moved to :
-----------------------------
RichFaces validation demo contains invalid navigation rules
-----------------------------------------------------------
Key: RF-13555
URL:
https://issues.jboss.org/browse/RF-13555
Project: RichFaces
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: examples
Affects Versions: 4.3.5
Reporter: Pavol Pitonak
Assignee: Brian Leathem
Priority: Minor
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.
{code}
<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>
{code}
--
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