Author: smukhina
Date: 2007-11-29 12:38:10 -0500 (Thu, 29 Nov 2007)
New Revision: 5153
Modified:
trunk/seam/docs/reference/build.xml
trunk/seam/docs/reference/en/modules/creating_new_seam.xml
trunk/seam/docs/reference/en/modules/crud_application_walkthrough.xml
trunk/seam/docs/reference/en/modules/crud_database_application.xml
trunk/seam/docs/reference/en/modules/directory_structure.xml
trunk/seam/docs/reference/en/modules/seam_editors.xml
trunk/seam/docs/reference/en/modules/seam_view.xml
trunk/seam/docs/reference/en/modules/seam_wizards.xml
Log:
build folder now generated into the proper location
http://jira.jboss.com/jira/browse/rhds-289
Modified: trunk/seam/docs/reference/build.xml
===================================================================
--- trunk/seam/docs/reference/build.xml 2007-11-29 15:43:19 UTC (rev 5152)
+++ trunk/seam/docs/reference/build.xml 2007-11-29 17:38:10 UTC (rev 5153)
@@ -2,7 +2,7 @@
<property name="modulename" value="seam"/>
<!-- Set the following property to generate the doco in the output folder -->
- <condition property="build.dir" value="${doc-root}/${modulename}"
else="${basedir}/../../build/reference">
+ <condition property="build.dir" value="${doc-root}/${modulename}"
else="${basedir}/../build/reference">
<isset property="doc-root"/>
</condition>
Modified: trunk/seam/docs/reference/en/modules/creating_new_seam.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/creating_new_seam.xml 2007-11-29 15:43:19 UTC
(rev 5152)
+++ trunk/seam/docs/reference/en/modules/creating_new_seam.xml 2007-11-29 17:38:10 UTC
(rev 5153)
@@ -9,17 +9,14 @@
</keywordset>
</chapterinfo>
<title>Creating a New Seam Project via the New Seam Project
wizard</title>
- <para>To start working with Seam select a Seam perspective via
<emphasis><property>Window > Open Perspective > Other >
Seam</property></emphasis>.
+ <para>To start working with Seam, select a Seam perspective via
<emphasis><property>Window > Open Perspective > Other >
Seam</property></emphasis>.
Select <emphasis><property>File > New > Seam Web
Project</property></emphasis> to run the <property>New Seam
Project</property> wizard.</para>
<section id="standaloneSeam">
<title>Create standalone Seam Web Project</title>
+ <para>It's necessary to enter a name and a location directory for your
new project. The next wizard forms allow you to create runtime and server instances in
order to get started creating, running, and debugging J2EE applications.</para>
+ <para>Seam Web Project wizard has an option for selecting the actual Server
(not just WTP runtime) that will be used for the project. This allows the wizard to
identify correctly where the required datasource and driver libraries need to
go.</para>
- <para>You are able to enter a name and a location directory for your new
project. Next wizard's sections allows you create runtime and server instances in
order
- to get started creating, running, and debugging J2EE applications.</para>
- <para>Seam Web Project wizard has an option for selecting the actual Server
(not just WTP runtime) that will be used for the project. This allows the wizard to
correctly
- identify where the needed datasource and driver libraries need to
go.</para>
-
<figure>
<title>New Seam Project Wizard</title>
<mediaobject>
@@ -42,7 +39,7 @@
</mediaobject>
</figure>
- <para>All what you need here is to name runtime, browse to it's install
directory, select a Java Runtime Environment, and select which configuration you want.
Click on
<emphasis><property>Finish</property></emphasis>.</para>
+ <para>All what you need here is to name runtime, browse to its install
directory, select a Java Runtime Environment, and select which configuration you want.
Click on
<emphasis><property>Finish</property></emphasis>.</para>
<figure>
<title>New Server Runtime Dialog</title>
@@ -54,7 +51,7 @@
</figure>
<para>Now you should define an installed server by clicking on
<emphasis><property>New...</property></emphasis> button in the
Target section.
- You are able to select a server version and a server runtime. Use
<emphasis><property>Installed Runtimes</property></emphasis>
button to see or edit what runtimes are installed. Click on Next</para>
+ It's possible to select a server version and a server runtime. Use
<emphasis><property>Installed Runtimes</property></emphasis>
button to see or edit what runtimes are installed. Click on Next</para>
<figure>
<title>New Server Dialog</title>
@@ -76,7 +73,7 @@
</mediaobject>
</figure>
- <para>On the last wizard's step you can modify your project to
configure it on server.</para>
+ <para>On the last wizard step you can modify your project to configure it
on server.</para>
<figure>
<title>New Server Dialog</title>
@@ -116,7 +113,7 @@
</mediaobject>
</figure>
- <para>You can also see all available runtimes after clicking on
<emphasis><property>Show Runtimes</property></emphasis> or create
the new ones using the
<emphasis><property>New</property></emphasis>
button.</para>
+ <para>You can also see all available runtimes after clicking on
<emphasis><property>Show Runtimes</property></emphasis> or create
new ones using the <emphasis><property>New</property></emphasis>
button.</para>
<figure>
<title>Project Facets Selection</title>
@@ -130,7 +127,7 @@
</section>
<section id="configureWebModule">
- <title>Configure Web Module Settings</title>
+ <title>How to Configure Web Module Settings</title>
<para>A dynamic web application contains both web pages and Java code. The
wizard will ask you where you want to put those files. You can just leave the default
values.</para>
Modified: trunk/seam/docs/reference/en/modules/crud_application_walkthrough.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/crud_application_walkthrough.xml 2007-11-29
15:43:19 UTC (rev 5152)
+++ trunk/seam/docs/reference/en/modules/crud_application_walkthrough.xml 2007-11-29
17:38:10 UTC (rev 5153)
@@ -69,10 +69,9 @@
</figure>
<para>After that you can use CRUD application with
<property>employee</property> database.</para>
-
<para>You can use internal JBDS Web Browser or your external Web Browser
with the same link (<ulink
url="http://localhost:8080/crudapp/home.seam">http://localhost:8080/crudapp/home.seam</ulink>).
</para>
- <para>Click on the <emphasis><property>Employees
List</property></emphasis> link and observe that data from
<emphasis><property>employee</property></emphasis> database are
displayed.</para>
+ <para>Click on the <emphasis><property>Employees
List</property></emphasis> link and observe that data from
<emphasis><property>employee</property></emphasis> database is
displayed.</para>
<figure>
<title>Employees List</title>
<mediaobject>
Modified: trunk/seam/docs/reference/en/modules/crud_database_application.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/crud_database_application.xml 2007-11-29 15:43:19
UTC (rev 5152)
+++ trunk/seam/docs/reference/en/modules/crud_database_application.xml 2007-11-29 17:38:10
UTC (rev 5153)
@@ -184,7 +184,7 @@
</figure>
<itemizedlist>
- <listitem><para>Have a look to the created projects. You can
expand <property>WEB_CONTENT</property> folder and open
<property>home.xhtml</property> or
<property>login.xhtml</property> with <property>JBoss Visual
Editor</property>.</para></listitem>
+ <listitem><para>Have a look at the created projects. You can
expand <property>WEB_CONTENT</property> folder and open
<property>home.xhtml</property> or
<property>login.xhtml</property> with <property>JBoss Visual
Editor</property>.</para></listitem>
</itemizedlist>
<figure>
<title>CRUDAPP Seam Project</title>
Modified: trunk/seam/docs/reference/en/modules/directory_structure.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/directory_structure.xml 2007-11-29 15:43:19 UTC
(rev 5152)
+++ trunk/seam/docs/reference/en/modules/directory_structure.xml 2007-11-29 17:38:10 UTC
(rev 5153)
@@ -40,9 +40,7 @@
<para>Furthermore the Seam Project wizard generates a test project that
is setup to run TestNG directly against the proper libraries and server runtime libraries.
When the TestNG plugin is installed you can just run your tests via
<emphasis><property>Run As > TestNG
Test</property>.</emphasis></para>
-
-
-
+
</section>
<section id="EAR">
Modified: trunk/seam/docs/reference/en/modules/seam_editors.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/seam_editors.xml 2007-11-29 15:43:19 UTC (rev
5152)
+++ trunk/seam/docs/reference/en/modules/seam_editors.xml 2007-11-29 17:38:10 UTC (rev
5153)
@@ -58,7 +58,7 @@
<para>Validation of various possible problematic definitions is implemented
for Seam applications.</para>
- <para>If an issue is found it will show up in the standard
<property>Problems View</property>.</para>
+ <para>If an issue is found it will be showed in the standard
<property>Problems View</property>.</para>
<figure>
<title>Seam Validation</title>
Modified: trunk/seam/docs/reference/en/modules/seam_view.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/seam_view.xml 2007-11-29 15:43:19 UTC (rev 5152)
+++ trunk/seam/docs/reference/en/modules/seam_view.xml 2007-11-29 17:38:10 UTC (rev 5153)
@@ -14,7 +14,7 @@
<section>
<title>Seam Components View</title>
- <para>The <property>Seam Components View</property> is
available from Seam perspective. It provides a list of the seam components found in the
project.</para>
+ <para>The <property>Seam Components View</property> is
available from Seam perspective. It provides a list of seam components found in a
project.</para>
<figure>
<title>Seam Components View</title>
@@ -93,9 +93,8 @@
</figure>
<para>Select the <emphasis><property>Seam Components from
Libraries</property></emphasis> under the Filters tab.
- This will make the view ignore components defined in jar's. This will
hide the many built-in Seam components and leave only those left that are actually
- defined in the project or have actively configured via components.xml.
Consequently deselecting the filter will show you all available components.</para>
- <para>Selecting the <emphasis><property>Seam Components from
Referenced Projects</property></emphasis> will hide the components that are
dependent on other project.</para>
+ This will make the view ignore components defined in jars. This will hide the
many built-in Seam components and leave only those that are actually defined in the
project or have been actively configured via components.xml. Therefore, deselecting the
filter will show you all available components.</para>
+ <para>Selecting the <emphasis><property>Seam Components from
Referenced Projects</property></emphasis> will hide the components that
dependent on other project.</para>
<figure>
<title>Available Customozations</title>
@@ -107,13 +106,11 @@
</figure>
</section>
-
-
+
<section>
<title>Project Explorer integration</title>
- <para>If you don't like to have a view for every piece of information
in Eclipse, the content of the Seam Components view is also avaible as a node
- in the built-in Project Explorer (not Package Explorer !) view in
Eclipse.</para>
+ <para>If you don't like to have a view for every piece of information
in Eclipse, the content of the Seam Components view is also avaible as a node in the
built-in Project Explorer (not Package Explorer!) view in Eclipse.</para>
<figure>
<title>Seam Components in Project Explorer</title>
Modified: trunk/seam/docs/reference/en/modules/seam_wizards.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/seam_wizards.xml 2007-11-29 15:43:19 UTC (rev
5152)
+++ trunk/seam/docs/reference/en/modules/seam_wizards.xml 2007-11-29 17:38:10 UTC (rev
5153)
@@ -32,7 +32,7 @@
</mediaobject>
</figure>
- <para>The wizards create multiple resources and place in the appropriate
folders dependend on your project structure (WAR or EAR).</para>
+ <para>The wizards create multiple resources and place it in the appropriate
folders depending on your project structure (WAR or EAR).</para>
<section id="seam_action">
@@ -97,8 +97,7 @@
</mediaobject>
</figure>
-
- </section>
+ </section>
<section id="seam_entity">
<title>New Seam Entity</title>
@@ -114,8 +113,7 @@
</mediaobject>
</figure>
-
- </section>
+ </section>
<section id="seam_conversation">
<title>New Seam Conversation</title>