[seam-commits] Seam SVN: r11723 - branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Dec 4 02:49:24 EST 2009
Author: laubai
Date: 2009-12-04 02:49:23 -0500 (Fri, 04 Dec 2009)
New Revision: 11723
Modified:
branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Book_Info.xml
branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Migration.xml
branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Tutorial.xml
Log:
Unbuildable in PDF form due to massive tables of doom.
Modified: branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Book_Info.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Book_Info.xml 2009-12-04 07:34:51 UTC (rev 11722)
+++ branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Book_Info.xml 2009-12-04 07:49:23 UTC (rev 11723)
@@ -1,4 +1,4 @@
-\<?xml version='1.0'?>
+<?xml version='1.0'?>
<!DOCTYPE bookinfo PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
]>
<bookinfo id="Seam2_Reference_Guide">
Modified: branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Migration.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Migration.xml 2009-12-04 07:34:51 UTC (rev 11722)
+++ branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Migration.xml 2009-12-04 07:49:23 UTC (rev 11723)
@@ -1360,15 +1360,19 @@
<variablelist>
<varlistentry>
<term>Old way:</term>
- <listitem><para>src/model/com/domain/projectname/model/EntityName.java</para></listitem>
- <listitem><para>src/action/com/domain/projectname/model/EntityNameHome.java</para></listitem>
- <listitem><para>src/action/com/domain/projectname/model/EntityNameList.java</para></listitem>
+ <listitem>
+ <para>src/model/com/domain/projectname/model/EntityName.java</para>
+ <para>src/action/com/domain/projectname/model/EntityNameHome.java</para>
+ <para>src/action/com/domain/projectname/model/EntityNameList.java</para>
+ </listitem>
</varlistentry>
<varlistentry><term>New way:</term>
- <listitem><para>src/model/com/domain/projectname/model/EntityName.java</para></listitem>
- <listitem><para>src/action/com/domain/projectname/action/EntityNameHome.java</para></listitem>
- <listitem><para>src/action/com/domain/projectname/action/EntityNameList.java</para></listitem>
+ <listitem>
+ <para>src/model/com/domain/projectname/model/EntityName.java</para>
+ <para>src/action/com/domain/projectname/action/EntityNameHome.java</para>
+ <para>src/action/com/domain/projectname/action/EntityNameList.java</para>
+ </listitem>
</varlistentry>
</variablelist>
Modified: branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Tutorial.xml
===================================================================
--- branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Tutorial.xml 2009-12-04 07:34:51 UTC (rev 11722)
+++ branches/enterprise/JBPAPP_4_3_CP07/doc/Seam2_Reference_Guide/en-US/Tutorial.xml 2009-12-04 07:49:23 UTC (rev 11723)
@@ -1441,7 +1441,7 @@
<example>
<title></title>
- <programlisting role="XHTML">
+ <programlisting>
<?xml version="1.0"?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
xmlns:h="http://java.sun.com/jsf/html"
@@ -1551,15 +1551,11 @@
</example>
- <para> As is <literal>lose.jspx</literal> (which I can't be bothered copy/pasting). Finally, the JavaBean
+ <para> As is <literal>lose.jspx</literal>. Finally, the JavaBean
Seam component: </para>
<!-- Can't use code hightlighting with callouts -->
<example>
- <title></title>
- <programlistingco>
- <areaspec>
- <area id="numberguess-create" coords="13"/>
- </areaspec>
+ <title></title>
<programlisting>
@Name("numberGuess")
@Scope(ScopeType.CONVERSATION)
@@ -1663,14 +1659,9 @@
}
}</programlisting>
- <calloutlist>
- <callout arearefs="numberguess-create">
- <para> The first time a JSP page asks for a <literal>numberGuess</literal> component, Seam
- will create a new one for it, and the <literal>@Create</literal> method will be invoked,
- allowing the component to initialize itself. </para>
- </callout>
- </calloutlist>
- </programlistingco>
+ <para> The first time a JSP page asks for a <literal>numberGuess</literal> component, Seam
+ will create a new one for it, and the <literal>@Create</literal> method will be invoked,
+ allowing the component to initialize itself. </para>
</example>
More information about the seam-commits
mailing list