Author: sabrashevich
Date: 2007-10-08 06:43:38 -0400 (Mon, 08 Oct 2007)
New Revision: 4055
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/RADdevelopmentOfSimpleJSFapplication.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-160 minor changes
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/RADdevelopmentOfSimpleJSFapplication.xml
===================================================================
---
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/RADdevelopmentOfSimpleJSFapplication.xml 2007-10-08
09:31:27 UTC (rev 4054)
+++
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/RADdevelopmentOfSimpleJSFapplication.xml 2007-10-08
10:43:38 UTC (rev 4055)
@@ -27,12 +27,8 @@
<imagedata fileref="images/newrad1.png"/>
</imageobject>
</mediaobject>
-</figure>
+</figure></para></listitem>
-<para>Put "GuessNumber" as a project name, in "JSF
Environment" drop down list choose JSF 1.2.</para>
-<para>Leave everything else as it is and click
<emphasis><property>Finish</property></emphasis>.</para>
-<para>The project will appear in Project Explorer and Web Projects Views. As you
can see Red Had Developer Studio has created for you the whole skeleton for the project
with all needed libraries, faces-config.xml and web.xml files.</para>
-</para></listitem>
<listitem><para>Put "GuessNumber" as a project name, in
"JSF Environment" drop down list choose JSF
1.2.</para></listitem>
<listitem><para>Leave everything else as it is and click
Finish</para></listitem>
</itemizedlist>
@@ -486,7 +482,7 @@
<itemizedlist>
<listitem><para>Click
<emphasis><property>Ok</property></emphasis>, then click
<emphasis><property>Finish</property></emphasis></para></listitem>
<listitem><para>Go to Source mode</para></listitem>
-<listitem><para>Add the validation attribute to <emphasis
role="bold"><property><f:validateLongRange></property></emphasis>
for your input validation</para></listitem></itemizedlist>
+<listitem><para>Add the validation attribute to <emphasis
role="bold"><property><f:validateLongRange></property></emphasis>
for user input validation</para></listitem></itemizedlist>
<programlisting role="XML"><![CDATA[<h:inputText
id="userNumber" value="#{NumberBean.userNumber}"
required="true">
<f:validateLongRange minimum="0" maximum="100"/>
</h:inputText>
@@ -589,14 +585,13 @@
</html>
]]></programlisting>
-<para>Note the <emphasis>.jsf</emphasis> extension of a page. It means
that we trigger the JSF controller servlet to handle the page according the servlet
mapping in faces-config.xml file.</para>
+<para>Note the <emphasis>.jsf</emphasis> extension of a page. It means
that we trigger the JSF controller servlet to handle the page according the servlet
mapping in the faces-config.xml file.</para>
</section>
<section id="RunningTheApplication33">
<?dbhtml filename="RunningTheApplication33.html"?>
<title>Running the Application</title>
<para>Everything is ready to run the application.</para>
<itemizedlist>
-<listitem><para>Start up JBoss server by clicking on the Start icon in JBoss
Server view. (If JBoss is already running, stop it by clicking on the red icon and then
start it again. After the messages in the Console tabbed view stops scrolling, JBoss is
available.</para></listitem>
<listitem><para>Start up JBoss server by clicking on the Start icon in JBoss
Server view. (If JBoss is already running, stop it by clicking on the red icon and then
start it again. After the messages in the Console tabbed view stop scrolling, JBoss is
available</para></listitem>
<listitem><para>Click on the Red Hat run icon in the
toolbar</para></listitem>
<listitem><para>Play with the application by entering correct as well as
incorrect values</para></listitem>