[jboss-cvs] jboss-seam/doc/reference/en/modules ...
Gavin King
gavin.king at jboss.com
Mon Nov 20 15:32:34 EST 2006
User: gavin
Date: 06/11/20 15:32:34
Modified: doc/reference/en/modules conversations.xml
Log:
update
Revision Changes Path
1.19 +27 -1 jboss-seam/doc/reference/en/modules/conversations.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: conversations.xml
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/doc/reference/en/modules/conversations.xml,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- conversations.xml 20 Nov 2006 19:26:54 -0000 1.18
+++ conversations.xml 20 Nov 2006 20:32:34 -0000 1.19
@@ -305,7 +305,7 @@
<para>
If <emphasis>all</emphasis> you want to do before rendering the page
- is begin a conversation, you can use a built-in action method that
+ is begin a conversation, you could use a built-in action method that
does just that:
</para>
@@ -321,6 +321,32 @@
</para>
<para>
+ If you want more control, to join existing conversations or
+ begin a nested conversion, to begin a pageflow or an atomic
+ conversation, you should use the
+ <literal><begin-conversation></literal> element.
+ </para>
+
+ <programlisting><![CDATA[<pages>
+ <page view-id="/messageList.jsp">
+ <begin-conversation nested="true" pageflow="AddItem"/>
+ <page>
+ ...
+</pages>]]></programlisting>
+
+ <para>
+ There is also an <literal><end-conversation></literal>
+ element.
+ </para>
+
+ <programlisting><![CDATA[<pages>
+ <page view-id="/home.jsp">
+ <end-conversation/>
+ <page>
+ ...
+</pages>]]></programlisting>
+
+ <para>
To solve the first problem, we now have four options:
</para>
More information about the jboss-cvs-commits
mailing list