[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-2272) Workspace description

Tomas Cerny (JIRA) jira-events at lists.jboss.org
Sun Nov 18 19:40:18 EST 2007


Workspace description
---------------------

                 Key: JBSEAM-2272
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-2272
             Project: JBoss Seam
          Issue Type: Bug
          Components: Core
    Affects Versions: 2.0.0.GA
         Environment: Linux Gentoo
            Reporter: Tomas Cerny
             Fix For: 2.0.1.GA


In your documentation is many various combinations of managing workspace. 
But it seem like there is not a combination that would allow me to redirect in jPDL and to specify description together.

There are examples where I can use pages.xml like this
====================================================
<page view-id="/private/people/personHomeView.xhtml"
       conversation-required="true" 
        no-conversation-view-id="/private/home.xhtml">
     Foo at #{bar.circle}
</page>
====================================================
but this is completely ignored when I use pageflow jPDL!

other alternative is to use jPDL
====================================================
<page name="viewPersonHomeAjax" 
       timeout="600000"
       view-id="/private/people/personHomeAjax.xhtml">
        <description>
		    View person home: #{person.username}
	  </description>
          <transition name="cancel" to="end"></transition>
   </page>
====================================================

but then I cannot use redirect! 

this fails to deploy:
====================================================
<page name="viewPersonHomeAjax" 
       timeout="600000"
       view-id="/private/people/personHomeAjax.xhtml">
        <redirect/>
        <description>
		    View person home: #{person.username}
	  </description>
          <transition name="cancel" to="end"></transition>
 </page>
====================================================

this is ignored at all (what is the purpose of that???):
====================================================
<page name="viewPersonHomeAjax" 
       timeout="600000"

       redirect="yes"

       view-id="/private/people/personHomeAjax.xhtml">

        <description>
		    View person home: #{person.username}
	  </description>
          <transition name="cancel" to="end"></transition>
 </page>
====================================================

Maybe there is some magic combination but then it is not in documentation


Tomas

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

        



More information about the seam-issues mailing list