JBoss Tools SVN: r28233 - branches/jbosstools-3.2.0.CR1/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-14 00:41:17 -0500 (Fri, 14 Jan 2011)
New Revision: 28233
Modified:
branches/jbosstools-3.2.0.CR1/build/publish.sh
Log:
rsync whole logs folder, not just single file
Modified: branches/jbosstools-3.2.0.CR1/build/publish.sh
===================================================================
--- branches/jbosstools-3.2.0.CR1/build/publish.sh 2011-01-14 05:28:33 UTC (rev 28232)
+++ branches/jbosstools-3.2.0.CR1/build/publish.sh 2011-01-14 05:41:17 UTC (rev 28233)
@@ -285,5 +285,5 @@
# publish updated log
bl=${STAGINGDIR}/logs/BUILDLOG.txt
wget -q http://hudson.qa.jboss.com/hudson/job/${JOB_NAME}/${BUILD_NUMBER}/console... -O ${bl}
-date; rsync -arzq --delete ${STAGINGDIR}/logs/BUILDLOG.txt $DESTINATION/builds/staging/${JOB_NAME}/logs/
+date; rsync -arzq --delete ${STAGINGDIR}/logs $DESTINATION/builds/staging/${JOB_NAME}/
15 years, 2 months
JBoss Tools SVN: r28232 - trunk/build/parent.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-14 00:28:33 -0500 (Fri, 14 Jan 2011)
New Revision: 28232
Modified:
trunk/build/parent/pom.xml
Log:
bump alias from CR1 to CR2 so it's clear from which branch we're getting our bits in the CR1 builds
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2011-01-14 04:56:41 UTC (rev 28231)
+++ trunk/build/parent/pom.xml 2011-01-14 05:28:33 UTC (rev 28232)
@@ -15,7 +15,7 @@
<!--tychoVersion>0.10.0-SNAPSHOT</tychoVersion -->
<tychoVersion>0.10.0</tychoVersion>
<scmBranch>trunk</scmBranch>
- <BUILD_ALIAS>CR1</BUILD_ALIAS>
+ <BUILD_ALIAS>CR2</BUILD_ALIAS>
<memoryOptions1>-Xms512m -Xmx1024m -XX:PermSize=256m</memoryOptions1>
<memoryOptions2>-XX:MaxPermSize=256m</memoryOptions2>
<systemProperties></systemProperties>
15 years, 2 months
JBoss Tools SVN: r28231 - in trunk/documentation/guides/GettingStartedGuide/en-US: images/rad_jsf_application and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-13 23:56:41 -0500 (Thu, 13 Jan 2011)
New Revision: 28231
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_10.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_11.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_12.png
trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
Log:
Updates for JBDS 4.0
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_10.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_11.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_12.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:43:50 UTC (rev 28230)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:56:41 UTC (rev 28231)
@@ -1,415 +1,434 @@
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="rad_jsf_application">
- <?dbhtml filename="rad_jsf_application.html"?>
- <chapterinfo>
- <keywordset>
- <keyword>JBoss Developer Studio</keyword>
- <keyword>JSF</keyword>
- <keyword>JBoss</keyword>
- <keyword>RAD</keyword>
- </keywordset>
- </chapterinfo>
- <title>RAD development of a simple JSF application</title>
+ <?dbhtml filename="rad_jsf_application.html"?>
+ <chapterinfo>
+ <keywordset>
+ <keyword>JBoss Developer Studio</keyword>
+ <keyword>JSF</keyword>
+ <keyword>JBoss</keyword>
+ <keyword>RAD</keyword>
+ </keywordset>
+ </chapterinfo>
+ <title>RAD development of a simple JSF application</title>
- <note>
- <title>Note:</title>
- <para>We highly recommend developing in <property>Seam</property>. This chapter is for users
+ <note>
+ <title>Note:</title>
+ <para>We highly recommend developing in <property>Seam</property>. This chapter is for users
who for some reason cannot use <property>Seam</property>.</para>
- </note>
+ </note>
- <para>In this chapter you will see how to create a simple JSF application being based on
+ <para>In this chapter you will see how to create a simple JSF application being based on
<property>"RAD"</property> philosophy. We will create the familiar
Guess Number application. The scenario is the following. You are asked to guess a number
between 0 and 100. If the guess is correct, a success page is displayed with a link to play
again. If the guess is incorrect, a message is printed notifying that a smaller or a larger
number should be entered and the game continues.</para>
- <para>We'll show you how to create such an application from scratch, along the way
+ <para>We'll show you how to create such an application from scratch, along the way
demonstrating powerful features of JBoss Developer Studio such as project templating, Visual
Page Editor, code completion and others. You will design the JSF application and then run
the application from inside JBoss Developer Studio using the bundled JBoss server.</para>
- <section id="SettingUpTheProject12">
- <?dbhtml filename="SettingUpTheProject12.html"?>
- <title>Setting up the project</title>
- <para>First, you should create a JSF 1.2 project using an integrated JBDS's new
+ <section id="SettingUpTheProject12">
+ <?dbhtml filename="SettingUpTheProject12.html"?>
+ <title>Setting up the project</title>
+ <para>First, you should create a JSF 1.2 project using an integrated JBDS's new
project wizard and predefined templates. Follow the next steps:</para>
- <itemizedlist>
- <listitem>
- <para>In Web Projects (if it is not open select <emphasis>
+ <itemizedlist>
+ <listitem>
+ <para>In Web Projects (if it is not open select <emphasis>
<property>Window > Show View > Others > JBoss Tools Web
- > Web Projects</property></emphasis>) click <emphasis>
+ > Web Projects</property>
+ </emphasis>) click <emphasis>
<property>Create New JSF Project</property>
- </emphasis> button. <figure>
+ </emphasis> button. <figure>
<title>Create New JSF Project</title>
- <mediaobject>
- <imageobject>
- <imagedata
- fileref="images/rad_jsf_application/rad_jsf_application_1.png"/>
- </imageobject>
- </mediaobject>
- </figure></para>
- </listitem>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_1.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para>
+ </listitem>
- <listitem>
- <para>Put <property>GuessNumber</property> as a project name, in JSF Environment
- drop down list choose <property>JSF 1.2</property></para>
- </listitem>
- <listitem>
- <para>Leave everything else as it is and click <emphasis>
+ <listitem>
+ <para>Put <property>GuessNumber</property> as a project name, in JSF Environment
+ drop down list choose <property>JSF 1.2</property>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Leave everything else as it is and click <emphasis>
<property>Finish</property>
- </emphasis></para>
- </listitem>
- </itemizedlist>
- <para>Our project will appear in Project Explorer and Web Projects. As you can see
+ </emphasis>
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>Our project will appear in Project Explorer and Web Projects. As you can see
JBoss Developer Studio has created for us the whole skeleton for the project with all
needed libraries, faces-config.xml and web.xml files.</para>
- <figure>
- <title>New JSF Project</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_2.png"/>
- </imageobject>
- </mediaobject>
- </figure>
+ <figure>
+ <title>New JSF Project</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
- <para>As the project has been set up, new JSP pages should be created now.</para>
- </section>
- <section id="CreatingJSPPages">
- <?dbhtml filename="CreatingJSPPages.html"?>
- <title>Creating JSP Pages</title>
+ <para>As the project has been set up, new JSP pages should be created now.</para>
+ </section>
+ <section id="CreatingJSPPages">
+ <?dbhtml filename="CreatingJSPPages.html"?>
+ <title>Creating JSP Pages</title>
- <para>Here, we are going to add two pages to our application. The first page is
+ <para>Here, we are going to add two pages to our application. The first page is
inputnumber.jsp. It prompts you to enter a number. If the guess is incorrect, the same
page will be redisplayed with a message indicating whether a smaller or a larger number
should be tried. The second page is success.jsp. This page will be shown after you guess
the number correctly. From this page you also have the option to play the game again.</para>
- <para>Now, we will guide you through the steps on how to do this.</para>
- <itemizedlist>
- <listitem>
- <para>First a folder called <filename>pages</filename> needs to be created under the <filter>WebContent</filter> folder. To do this right click on the <filter>WebContent</filter> folder in the Package Explorer view and select New > Folder. Set the <guilabel>Folder Name</guilabel> to <filename>pages</filename> and click the <guibutton>Finish</guibutton> button.</para>
- </listitem>
- <figure>
- <title>Create pages folder</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_2a.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <listitem>
- <para>Open the <filename>faces-config.xml</filename> file.</para>
- </listitem>
- <listitem>
- <para>Right click anywhere on the diagram mode</para>
- </listitem>
- <listitem>
- <para>From the context menu select <emphasis>
- <property>New View</property>
- </emphasis></para>
- </listitem>
- </itemizedlist>
- <figure>
- <title>Create New View</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_3.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <itemizedlist>
+ <para>Now, we will guide you through the steps on how to do this.</para>
+ <itemizedlist>
+ <listitem>
+ <para>First a folder called <filename>pages</filename> needs to be created under the <filename>WebContent</filename> folder. To do this right click on the <filename>WebContent</filename> folder in the Package Explorer view and select New > Folder. Set the <guilabel>Folder Name</guilabel> to <filename>pages</filename> and click the <guibutton>Finish</guibutton> button.</para>
+ <para>
+ <figure>
+ <title>Create pages folder</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_2a.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>Open the <filename>faces-config.xml</filename> file.</para>
+ </listitem>
+ <listitem>
+ <para>Right click anywhere on the diagram mode</para>
+ </listitem>
+ <listitem>
+ <para>From the context menu select <emphasis><property>New View</property></emphasis>
+ </para>
+ </listitem>
+ </itemizedlist>
+ <figure>
+ <title>Create New View</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_3.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
- <listitem>
- <para>Type <emphasis>
+ <listitem>
+ <para>Type <emphasis>
<property>pages/inputnumber</property>
- </emphasis> as the value for <emphasis>
+ </emphasis> as the value for <emphasis>
<property>From View ID</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Leave everything else as is and click <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Leave everything else as is and click <emphasis>
<property>Finish</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>In the same way create another jsf view. Type <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>In the same way create another jsf view. Type <emphasis>
<property>pages/success</property>
- </emphasis> as the value for <emphasis>
+ </emphasis> as the value for <emphasis>
<property>From View ID</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>File > Save</property>
- </emphasis></para>
- </listitem>
- </itemizedlist>
- <para>On the diagram you will see two created views.</para>
- <figure>
- <title>New Views</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_4.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </section>
+ </emphasis>
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>On the diagram you will see two created views.</para>
+ <figure>
+ <title>New Views</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_4.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
- <section id="CreatingTransition">
- <?dbhtml filename="CreatingTransition.html"?>
- <title>Creating Transition between two views</title>
- <para>Then, we should create connection between jsp pages.</para>
- <itemizedlist>
- <listitem>
- <para>In the diagram, select the <emphasis>
+ <section id="CreatingTransition">
+ <?dbhtml filename="CreatingTransition.html"?>
+ <title>Creating Transition between two views</title>
+ <para>Then, we should create connection between jsp pages.</para>
+ <itemizedlist>
+ <listitem>
+ <para>In the diagram, select the <emphasis>
<property>Create New Connection</property>
- </emphasis> icon third from the top along the upper left side of the diagram to
+ </emphasis> icon third from the top along the upper left side of the diagram to
get an arrow cursor with a two-pronged plug at the arrow's bottom <figure>
<title>Create Connection</title>
- <mediaobject>
- <imageobject>
- <imagedata
- fileref="images/rad_jsf_application/rad_jsf_application_5.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </para>
- </listitem>
- <listitem>
- <para>Click on the <emphasis>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_5.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Click on the <emphasis>
<property>pages/inputnumber</property>
- </emphasis> page icon and then click on the <emphasis>
+ </emphasis> page icon and then click on the <emphasis>
<property>pages/success</property>
- </emphasis> page icon</para>
- </listitem>
- </itemizedlist>
- <para>A transition should appear between the two icons of views.</para>
- <figure>
- <title>Created Connection</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_6.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <itemizedlist>
- <listitem>
- <para>Select <emphasis>
+ </emphasis> page icon</para>
+ </listitem>
+ </itemizedlist>
+ <para>A transition should appear between the two icons of views.</para>
+ <figure>
+ <title>Created Connection</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_6.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem>
+ <para>Select <emphasis>
<property>File > Save</property>
- </emphasis> from the menu bar</para>
- </listitem>
- </itemizedlist>
- </section>
+ </emphasis> from the menu bar</para>
+ </listitem>
+ </itemizedlist>
+ </section>
- <section id="CreatingResourceFile">
- <?dbhtml filename="CreatingResourceFile.html"?>
- <title>Creating Resource File</title>
- <para>A resource file is just a file with a <emphasis>.properties</emphasis> extension for
+ <section id="CreatingResourceFile">
+ <?dbhtml filename="CreatingResourceFile.html"?>
+ <title>Creating Resource File</title>
+ <para>A resource file is just a file with a <emphasis>.properties</emphasis> extension for
collecting text messages in one central place. JBoss Developer Studio allows you to
create quickly a resource file. The messages stored in resource file can be displayed to
you on a Web page during application execution. </para>
- <para>With resource file first, you don't hard code anything into the JSP pages.
+ <para>With resource file first, you don't hard code anything into the JSP pages.
And second, it makes it easier to translate your application to other languages. All you
have to do is to translate all your messages to the other language and save them in a
new properties file with a name that ends with the appropriate ISO-639 language code.</para>
- <para>It is a good idea to keep your resources inside the <emphasis>
+ <para>It is a good idea to keep your resources inside the <emphasis>
<property>JavaSource</property>
- </emphasis> folder, where you keep your .java files. Every time you build the project,
+ </emphasis> folder, where you keep your .java files. Every time you build the project,
all <emphasis>.properties</emphasis> files will then be copied to the
<emphasis>classes</emphasis> folder by default.</para>
- <itemizedlist>
- <listitem>
- <para>Right click <emphasis>
+ <itemizedlist>
+ <listitem>
+ <para>Right click <emphasis>
<property>JavaSource</property>
- </emphasis> folder and select <emphasis>
+ </emphasis> folder and select <emphasis>
<property>New > Folder</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Type <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Type <emphasis>
<property>game</property>
- </emphasis> for Folder name and click <emphasis>
+ </emphasis> for Folder name and click <emphasis>
<property>Finish</property>
- </emphasis></para>
- </listitem>
- </itemizedlist>
- <para>Your resource file and java bean will be stored in this folder.</para>
- <itemizedlist>
- <listitem>
- <para>Right click on <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>Your resource file and java bean will be stored in this folder.</para>
+ <itemizedlist>
+ <listitem>
+ <para>Right click on <emphasis>
<property>game folder</property>
- </emphasis> and select <emphasis>
+ </emphasis> and select <emphasis>
<property>New > Properties File</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Type <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Type <emphasis>
<property>messages</property>
- </emphasis> as the value for "name" attribute and click <emphasis>
+ </emphasis> as the value for "name" attribute and click <emphasis>
<property>Finish</property>
- </emphasis></para>
- </listitem>
- </itemizedlist>
- <para>JBoss Developer Studio will automatically open
+ </emphasis>
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>JBoss Developer Studio will automatically open
<property>messages.properties</property> file for editing.</para>
- <figure>
- <title>Messages.properties File</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_7.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <itemizedlist>
- <listitem>
- <para>Click <emphasis>
+ <figure>
+ <title>Messages.properties File</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_7.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem>
+ <para>Click <emphasis>
<property>Add</property>
- </emphasis> button for adding new attribute to your resource file</para>
- </listitem>
- <listitem>
- <para>Type <emphasis role="italic">
+ </emphasis> button for adding new attribute to your resource file</para>
+ </listitem>
+ <listitem>
+ <para>Type <emphasis role="italic">
<property>how_to_play</property>
- </emphasis> for "name" and <emphasis role="italic">
+ </emphasis> for "name" and <emphasis role="italic">
<property>Please pick a number between 0 and 100.</property>
- </emphasis> for value</para>
- </listitem>
- <listitem>
- <para>Click <emphasis>
+ </emphasis> for value</para>
+ </listitem>
+ <listitem>
+ <para>Click <emphasis>
<property>Finish</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>In such a way add the next properties:</para>
- </listitem>
- </itemizedlist>
- <programlisting role="JAVA"><![CDATA[makeguess_button=Make Guess
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>In such a way add the next properties:</para>
+ </listitem>
+ </itemizedlist>
+ <programlisting role="JAVA"><![CDATA[makeguess_button=Make Guess
trayagain_button=Play Again?
success_text=How cool.. You have guessed the number, {0} is correct!
tryagain_smaller=Oops..incorrect guess. Please try a smaller number.
tryagain_bigger=Oops..incorrect guess. Please try a bigger number.
]]></programlisting>
- <itemizedlist>
- <listitem>
- <para>Click <emphasis>
+ <itemizedlist>
+ <listitem>
+ <para>Click <emphasis>
<property>File > Save</property>
- </emphasis> from the menu bar</para>
- </listitem>
- </itemizedlist>
- <para>Your .properties file should now look like follows:</para>
- <figure>
- <title>Properties are Added</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_8.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para><emphasis>
- <property>Up</property></emphasis>
+ </emphasis> from the menu bar</para>
+ </listitem>
+ </itemizedlist>
+ <para>Your .properties file should now look like follows:</para>
+ <figure>
+ <title>Properties are Added</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_8.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ <emphasis>
+ <property>Up</property>
+ </emphasis>
and <emphasis>
<property>Down</property>
- </emphasis> buttons allow you to move you attribute on the list. For delete the attribute, choose it and press <emphasis>
- <property>Delete</property></emphasis> button.</para>
- <para>If you want to change a value or a name of your attribute, click on it and than on <emphasis>
- <property>Edit</property></emphasis> button.</para>
-
- <para>If the .properties file is rather big and there are a lot of entries in it, you can use filtering and regular expressions to find the necessary ones. The Filter and Regular Expressions Search is implemented by an expandable panel, closed by default: </para>
- <para>When "Expression" is not selected (as by default), filter is case insensitive. When "Expression" is selected, filter uses regular expressions which are case sensitive</para>
- <figure>
- <title>Filter and Regular Expressions Search Panel</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_8a.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para> Enter the characters that should be searched for in the entries to the 'name' or 'value' input fields accordingly. The filtered results will be displayed in the table below:</para>
-
- <figure>
- <title>Filter results</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_8b.png"/>
- </imageobject>
- </mediaobject>
- </figure>
-
- <para>When using regular expressions please note, that regular expression syntax does not use "*" for any characters and "?" for any one character. It's necessary to use "." for any one character and ".*" for any characters. Symbols "*" and "?" are used to show that the preceding token is not required, for example, "a.a" matches "aba" but not "aa", while "a.?a" or a.*a" matches both; besides "a.*a" matches "abcda".</para>
- <para>To find the exact match, use sequences \A and \z in expression. For example, expression "\Adate\z" matches only string "date"; expression "\Adate" matches "date" and "dateline", expression "date\z" matches "date" and "Begin date", and expression "date" matches all of them.</para>
-
- </section>
+ </emphasis> buttons allow you to move you attribute on the list. For delete the attribute, choose it and press <emphasis>
+ <property>Delete</property>
+ </emphasis> button.</para>
+ <para>If you want to change a value or a name of your attribute, click on it and than on <emphasis>
+ <property>Edit</property>
+ </emphasis> button.</para>
- <section id="CreatingJavaBean">
- <?dbhtml filename="CreatingJavaBean.html"?>
- <title>Creating Java Bean</title>
- <para>In this section you'll see how to create a Java bean that will hold business
+ <para>If the .properties file is rather big and there are a lot of entries in it, you can use filtering and regular expressions to find the necessary ones. The Filter and Regular Expressions Search is implemented by an expandable panel, closed by default: </para>
+ <para>When "Expression" is not selected (as by default), filter is case insensitive. When "Expression" is selected, filter uses regular expressions which are case sensitive</para>
+ <figure>
+ <title>Filter and Regular Expressions Search Panel</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_8a.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para> Enter the characters that should be searched for in the entries to the 'name' or 'value' input fields accordingly. The filtered results will be displayed in the table below:</para>
+
+ <figure>
+ <title>Filter results</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_8b.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>When using regular expressions please note, that regular expression syntax does not use "*" for any characters and "?" for any one character. It's necessary to use "." for any one character and ".*" for any characters. Symbols "*" and "?" are used to show that the preceding token is not required, for example, "a.a" matches "aba" but not "aa", while "a.?a" or a.*a" matches both; besides "a.*a" matches "abcda".</para>
+ <para>To find the exact match, use sequences \A and \z in expression. For example, expression "\Adate\z" matches only string "date"; expression "\Adate" matches "date" and "dateline", expression "date\z" matches "date" and "Begin date", and expression "date" matches all of them.</para>
+
+ </section>
+
+ <section id="CreatingJavaBean">
+ <?dbhtml filename="CreatingJavaBean.html"?>
+ <title>Creating Java Bean</title>
+ <para>In this section you'll see how to create a Java bean that will hold business
logic of our application.</para>
- <itemizedlist>
- <listitem>
- <para>Right click <emphasis>
+ <itemizedlist>
+ <listitem>
+ <para>Right click <emphasis>
<property>game folder</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>New > Class</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Type <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Type <emphasis>
<property>NumberBean</property>
- </emphasis> for bean name</para>
- </listitem>
- </itemizedlist>
- <para>A java bean is created.</para>
- <itemizedlist>
- <listitem>
- <para>Declare the variable of your entered number:</para>
- </listitem>
- </itemizedlist>
- <programlisting role="JAVA"><![CDATA[Integer userNumber;
+ </emphasis> for bean name</para>
+ </listitem>
+ </itemizedlist>
+ <para>A java bean is created.</para>
+ <itemizedlist>
+ <listitem>
+ <para>Declare the variable of your entered number:</para>
+ </listitem>
+ </itemizedlist>
+ <programlisting role="JAVA"><![CDATA[Integer userNumber;
]]></programlisting>
- <para>JBDS allows to quickly generate getters and setters for java bean.</para>
- <itemizedlist>
- <listitem>
- <para>Right click <emphasis>
+ <para>JBDS allows to quickly generate getters and setters for java bean.</para>
+ <itemizedlist>
+ <listitem>
+ <para>Right click <emphasis>
<property>NumberBean.java</property>
- </emphasis> in Package Explorer</para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </emphasis> in Package Explorer</para>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>Source > Generate Getters and Setters...</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Check <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Check <emphasis>
<property>userNumber</property>
- </emphasis> box and click <emphasis>
+ </emphasis> box and click <emphasis>
<property>OK</property>
- </emphasis>
- <figure>
- <title>Generate Getters and Setters</title>
- <mediaobject>
- <imageobject>
- <imagedata
- fileref="images/rad_jsf_application/rad_jsf_application_9.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </para>
- </listitem>
- <listitem>
- <para>Add the declaration of the second variable</para>
- </listitem>
- </itemizedlist>
- <programlisting role="JAVA"><![CDATA[int randomNumber;
+ </emphasis>
+ <figure>
+ <title>Generate Getters and Setters</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_9.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Add the declaration of the second variable</para>
+ </listitem>
+ </itemizedlist>
+ <programlisting role="JAVA"><![CDATA[int randomNumber;
]]></programlisting>
- <itemizedlist>
- <listitem>
- <para>.. other bean methods:</para>
- </listitem>
- </itemizedlist>
- <programlisting role="JAVA"><![CDATA[public NumberBean ()
+ <itemizedlist>
+ <listitem>
+ <para>.. other bean methods:</para>
+ </listitem>
+ </itemizedlist>
+ <programlisting role="JAVA"><![CDATA[public NumberBean ()
{
randomNumber = (int)(Math.random()*100);
System.out.println ( "Random number: "+randomNumber);
@@ -448,18 +467,18 @@
}
}
]]></programlisting>
- <itemizedlist>
- <listitem>
- <para>And the import declarations:</para>
- </listitem>
- </itemizedlist>
- <programlisting role="JAVA"><![CDATA[import javax.faces.context.FacesContext;
+ <itemizedlist>
+ <listitem>
+ <para>And the import declarations:</para>
+ </listitem>
+ </itemizedlist>
+ <programlisting role="JAVA"><![CDATA[import javax.faces.context.FacesContext;
import javax.servlet.http.HttpSession;
import javax.faces.application.FacesMessage;
import java.util.ResourceBundle;
]]></programlisting>
- <para>The whole java bean should look as follows:</para>
- <programlisting role="JAVA"><![CDATA[package game;
+ <para>The whole java bean should look as follows:</para>
+ <programlisting role="JAVA"><![CDATA[package game;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpSession;
@@ -529,23 +548,23 @@
}
]]></programlisting>
- </section>
+ </section>
- <section id="EditingFacesConfig">
- <?dbhtml filename="EditingFacesConfig.html"?>
- <title>Editing faces-config.xml File</title>
- <para>In this section you know about faces-config.xml file.</para>
- <para>This file holds two navigation rules and defines the backing bean used.</para>
- <itemizedlist>
- <listitem>
- <para>Open faces-config.xml file in a source mode</para>
- </listitem>
- <listitem>
- <para>Add here one more navigation rule and a managed bean declarations that the
+ <section id="EditingFacesConfig">
+ <?dbhtml filename="EditingFacesConfig.html"?>
+ <title>Editing faces-config.xml File</title>
+ <para>In this section you know about faces-config.xml file.</para>
+ <para>This file holds two navigation rules and defines the backing bean used.</para>
+ <itemizedlist>
+ <listitem>
+ <para>Open faces-config.xml file in a source mode</para>
+ </listitem>
+ <listitem>
+ <para>Add here one more navigation rule and a managed bean declarations that the
content of the file looks like this:</para>
- </listitem>
- </itemizedlist>
- <programlisting role="XML"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
+ </listitem>
+ </itemizedlist>
+ <programlisting role="XML"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<faces-config
version="1.2"
xmlns="http://java.sun.com/xml/ns/javaee"
@@ -578,366 +597,367 @@
</faces-config>
]]></programlisting>
- <para>The first navigation rule states that from any page (<property>*</property> stands for
+ <para>The first navigation rule states that from any page (<property>*</property> stands for
any page) an outcome of playagain will take you to <emphasis>
<property>/pages/inputnumber.jsp</property>
- </emphasis>. Outcome values are returned from backing bean methods in this example. The
+ </emphasis>. Outcome values are returned from backing bean methods in this example. The
second navigation rule states that if you are at the page <emphasis>
<property>/pages/inputnumber.jsp</property>
- </emphasis>, and the outcome is success, then navigate to the <emphasis>
+ </emphasis>, and the outcome is success, then navigate to the <emphasis>
<property>/pages/success.jsp</property>
- </emphasis> page. </para>
- </section>
- <section id="EditingTheJSPViewFiles2">
- <?dbhtml filename="EditingTheJSPViewFiles2.html"?>
- <title>Editing the JSP View Files</title>
- <para>Now, we will continue editing the JSP files for our two "views" using
+ </emphasis> page. </para>
+ </section>
+ <section id="EditingTheJSPViewFiles2">
+ <?dbhtml filename="EditingTheJSPViewFiles2.html"?>
+ <title>Editing the JSP View Files</title>
+ <para>Now, we will continue editing the JSP files for our two "views" using
Visual Page Editor.</para>
- <section id="EditingInputjsp">
- <?dbhtml filename="EditingInputjsp.html"?>
- <title>Editing inputnumber.jsp page</title>
- <para>First, let's dwell on how to edit inputnumber.jsp.</para>
- <para>On this page we will have an output text component displaying a message, a text
+ <section id="EditingInputjsp">
+ <?dbhtml filename="EditingInputjsp.html"?>
+ <title>Editing inputnumber.jsp page</title>
+ <para>First, let's dwell on how to edit inputnumber.jsp.</para>
+ <para>On this page we will have an output text component displaying a message, a text
field for user's number entering and a button for input submission.</para>
- <itemizedlist>
- <listitem>
- <para>Open inputnumber.jsp by double-clicking on the <emphasis>
+ <itemizedlist>
+ <listitem>
+ <para>Open inputnumber.jsp by double-clicking on the <emphasis>
<property>/pages/inputnumber. jsp</property>
- </emphasis> icon</para>
- </listitem>
- </itemizedlist>
- <para>The Visual Page Editor will open in a screen split between source code along the
+ </emphasis> icon</para>
+ </listitem>
+ </itemizedlist>
+ <para>The Visual Page Editor will open in a screen split between source code along the
top and a WYSIWIG view along the bottom. You can see that some JSF code will be
already generated as we choose a template when creating the page.</para>
- <para>At the beginning it's necessary to create a
+ <para>At the beginning it's necessary to create a
<code><h:form></code>
component where all others components are put.</para>
- <itemizedlist>
- <listitem>
- <para>Place the mouse cursor inside
+ <itemizedlist>
+ <listitem>
+ <para>Place the mouse cursor inside
<code><f:view>
</f:view></code>
- </para>
- </listitem>
- <listitem>
- <para>Go to JBoss Tools Palette and expand JSF HTML folder by selecting
+ </para>
+ </listitem>
+ <listitem>
+ <para>Go to JBoss Tools Palette and expand JSF HTML folder by selecting
it</para>
- </listitem>
- <listitem>
- <para>Click on
+ </listitem>
+ <listitem>
+ <para>Click on
<code><h:form></code>
tag <figure>
<title>Insert h:form</title>
- <mediaobject>
- <imageobject>
- <imagedata
- fileref="images/rad_jsf_application/rad_jsf_application_10.png"
- />
- </imageobject>
- </mediaobject>
- </figure>
- </para>
- </listitem>
- <listitem>
- <para>In the dialog Insert Tag select <emphasis>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_10.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para>
+ </listitem>
+ <listitem>
+ <para>In the dialog Insert Tag select <emphasis>
<property>id</property>
- </emphasis> and click on this line below the value header. A blinking cursor
+ </emphasis> and click on this line below the value header. A blinking cursor
will appear in a input text field inviting to enter a value of id <figure>
<title>Define Id of Form</title>
- <mediaobject>
- <imageobject>
- <imagedata
- fileref="images/rad_jsf_application/rad_jsf_application_11.png"
- />
- </imageobject>
- </mediaobject>
- </figure>
- </para>
- </listitem>
- <listitem>
- <para>Type <emphasis>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_11.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Type <emphasis>
<property>inputNumbers</property>
- </emphasis> and click <emphasis>
+ </emphasis> and click <emphasis>
<property>Finish</property>
- </emphasis></para>
- </listitem>
- </itemizedlist>
- <para>In source view you can see the declaration of a form.</para>
- <figure>
- <title>Created Form</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_12.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>First let's declare the properties file in inputnumber.jsp page using the
+ </emphasis>
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>In source view you can see the declaration of a form.</para>
+ <figure>
+ <title>Created Form</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_12.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>First let's declare the properties file in inputnumber.jsp page using the
loadBundle JSF tag.</para>
- <itemizedlist>
- <listitem>
- <para>Put this declaration on the top of a page, right after the first two
+ <itemizedlist>
+ <listitem>
+ <para>Put this declaration on the top of a page, right after the first two
lines:</para>
- </listitem>
- </itemizedlist>
- <programlisting role="XML"><![CDATA[<f:loadBundle basename="game.messages" var="msg"/>
+ </listitem>
+ </itemizedlist>
+ <programlisting role="XML"><![CDATA[<f:loadBundle basename="game.messages" var="msg"/>
]]></programlisting>
- <para>As always JBDS provides code assist:</para>
- <figure>
- <title>Code Assist</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_13.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <itemizedlist>
- <listitem>
- <para>Switch to Visual tab, so it could be possible to work with the editor
+ <para>As always JBDS provides code assist:</para>
+ <figure>
+ <title>Code Assist</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_13.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem>
+ <para>Switch to Visual tab, so it could be possible to work with the editor
completely in its WYSIWYG mode</para>
- </listitem>
- <listitem>
- <para>Click on <emphasis>
+ </listitem>
+ <listitem>
+ <para>Click on <emphasis>
<property>outputText</property>, </emphasis> drag the cursor over to the
editor, and drop it inside the blue box in the editor</para>
- </listitem>
+ </listitem>
- <listitem>
- <para>Select <emphasis>
+ <listitem>
+ <para>Select <emphasis>
<property>value</property>
- </emphasis> and click on this line below "value"
+ </emphasis> and click on this line below "value"
header</para>
- </listitem>
- <listitem>
- <para>Click <property>...</property> button next to the value field</para>
- </listitem>
- </itemizedlist>
- <para>JBDS will nicely propose you to choose within available values:</para>
- <figure>
- <title>Choose Value</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_14.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <itemizedlist>
- <listitem>
- <para>Expand <emphasis>
+ </listitem>
+ <listitem>
+ <para>Click <property>...</property> button next to the value field</para>
+ </listitem>
+ </itemizedlist>
+ <para>JBDS will nicely propose you to choose within available values:</para>
+ <figure>
+ <title>Choose Value</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_14.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem>
+ <para>Expand <emphasis>
<property>Resource Bundles > msg</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>how_to_play</property>
- </emphasis> value and click <emphasis>
+ </emphasis> value and click <emphasis>
<property>Ok</property>. </emphasis> Then click <emphasis>
<property>Finish</property>
- </emphasis>
- <figure>
- <title>Selecting Value</title>
- <mediaobject>
- <imageobject>
- <imagedata
- fileref="images/rad_jsf_application/rad_jsf_application_15.png"
- />
- </imageobject>
- </mediaobject>
- </figure>
- </para>
- </listitem>
- </itemizedlist>
- <para>The text will appear on the page:</para>
- <figure>
- <title>Created OutputText Component</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_16.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <itemizedlist>
- <listitem>
- <para>Switch to Source mode and insert
+ </emphasis>
+ <figure>
+ <title>Selecting Value</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_15.png" />
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para>
+ </listitem>
+ </itemizedlist>
+ <para>The text will appear on the page:</para>
+ <figure>
+ <title>Created OutputText Component</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_16.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem>
+ <para>Switch to Source mode and insert
<code><br/></code>
tag after
<code><h:outputText></code>
component to make a new line.</para>
- </listitem>
- <listitem>
- <para>Click <emphasis>
+ </listitem>
+ <listitem>
+ <para>Click <emphasis>
<property>Save</property>
- </emphasis> button.</para>
- </listitem>
- <listitem>
- <para>On the Palette click on <emphasis>
+ </emphasis> button.</para>
+ </listitem>
+ <listitem>
+ <para>On the Palette click on <emphasis>
<property>inputText</property>, </emphasis> drag the cursor over to the
editor, and drop it inside the editor after the text.</para>
- </listitem>
- <listitem>
- <para>Switch to a Source mode and insert
+ </listitem>
+ <listitem>
+ <para>Switch to a Source mode and insert
<code><br/></code>
tag after
<code><h:outputText></code>
component to make a new line</para>
- </listitem>
- <listitem>
- <para>Click <emphasis>
+ </listitem>
+ <listitem>
+ <para>Click <emphasis>
<property>Save</property>
- </emphasis> button</para>
- </listitem>
- <listitem>
- <para>On the Palette click on <emphasis>
+ </emphasis> button</para>
+ </listitem>
+ <listitem>
+ <para>On the Palette click on <emphasis>
<property>inputText</property>, </emphasis> drag the cursor over to the
editor, and drop it inside the editor after the text</para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>value</property>
- </emphasis> and click on this line below "value"
+ </emphasis> and click on this line below "value"
header</para>
- </listitem>
- <listitem>
- <para>Click <property>...</property> button next to the value field</para>
- </listitem>
- <listitem>
- <para>Expand <emphasis>
+ </listitem>
+ <listitem>
+ <para>Click <property>...</property> button next to the value field</para>
+ </listitem>
+ <listitem>
+ <para>Expand <emphasis>
<property>Managed Beans > NumberBean</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>userNumber</property>
- </emphasis> value and click <emphasis>
+ </emphasis> value and click <emphasis>
<property>Ok</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Switch <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Switch <emphasis>
<property>Advanced</property>
- </emphasis> tab</para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </emphasis> tab</para>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>id</property>
- </emphasis> and click on this line below "value"
+ </emphasis> and click on this line below "value"
header</para>
- </listitem>
- <listitem>
- <para>Type <emphasis>
+ </listitem>
+ <listitem>
+ <para>Type <emphasis>
<property>userNumber</property>
- </emphasis> in text field</para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </emphasis> in text field</para>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>required</property>
- </emphasis> and click on this line below "value"
+ </emphasis> and click on this line below "value"
header</para>
- </listitem>
- <listitem>
- <para>Click <property>...</property> button next to the value field</para>
- </listitem>
- <listitem>
- <para>Expand <emphasis>
+ </listitem>
+ <listitem>
+ <para>Click <property>...</property> button next to the value field</para>
+ </listitem>
+ <listitem>
+ <para>Expand <emphasis>
<property>Enumeration</property>
- </emphasis> and select <emphasis>
+ </emphasis> and select <emphasis>
<property>true</property>
- </emphasis> as a value</para>
- </listitem>
- </itemizedlist>
- <figure>
- <title>Add "required" Attribute</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_17.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <itemizedlist>
- <listitem>
- <para>Click <emphasis>
+ </emphasis> as a value</para>
+ </listitem>
+ </itemizedlist>
+ <figure>
+ <title>Add "required" Attribute</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_17.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <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>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Go to Source mode</para>
+ </listitem>
+ <listitem>
+ <para>Add the validation attribute to
<code><f:validateLongRange></code>
for user input validation</para>
- </listitem>
- </itemizedlist>
- <programlisting role="XML"><![CDATA[<h:inputText id="userNumber" value="#{NumberBean.userNumber}" required="true">
+ </listitem>
+ </itemizedlist>
+ <programlisting role="XML"><![CDATA[<h:inputText id="userNumber" value="#{NumberBean.userNumber}" required="true">
<f:validateLongRange minimum="0" maximum="100"/>
</h:inputText>
]]></programlisting>
- <itemizedlist>
- <listitem>
- <para>Click <emphasis>
+ <itemizedlist>
+ <listitem>
+ <para>Click <emphasis>
<property>Save</property>
- </emphasis> button</para>
- </listitem>
- <listitem>
- <para>Again select <emphasis>
+ </emphasis> button</para>
+ </listitem>
+ <listitem>
+ <para>Again select <emphasis>
<property>Visual</property>
- </emphasis> mode</para>
- </listitem>
- <listitem>
- <para>On the Palette, click on <emphasis>
+ </emphasis> mode</para>
+ </listitem>
+ <listitem>
+ <para>On the Palette, click on <emphasis>
<property>commandButton</property>, </emphasis> drag the cursor over to
the editor, and drop it inside the editor after the inputText
component.</para>
- </listitem>
- <listitem>
- <para>In the editing dialog select <emphasis>
+ </listitem>
+ <listitem>
+ <para>In the editing dialog select <emphasis>
<property>value</property>
- </emphasis> and click on this line below "value"
+ </emphasis> and click on this line below "value"
header</para>
- </listitem>
- <listitem>
- <para>Click <property>...</property> button next to the value field</para>
- </listitem>
- <listitem>
- <para>Expand <emphasis>
+ </listitem>
+ <listitem>
+ <para>Click <property>...</property> button next to the value field</para>
+ </listitem>
+ <listitem>
+ <para>Expand <emphasis>
<property>Resource Bundles > msg</property>
- </emphasis> and select <emphasis>
+ </emphasis> and select <emphasis>
<property>makeguess_button</property>
- </emphasis> as a value</para>
- </listitem>
- <listitem>
- <para>Click <emphasis>
+ </emphasis> as a value</para>
+ </listitem>
+ <listitem>
+ <para>Click <emphasis>
<property>Ok</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Select <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Select <emphasis>
<property>action</property>
- </emphasis> and click on this line below "value"
+ </emphasis> and click on this line below "value"
header</para>
- </listitem>
- <listitem>
- <para>Type <emphasis>
+ </listitem>
+ <listitem>
+ <para>Type <emphasis>
<property>NumberBean.checkGuess</property>
- </emphasis> in text field</para>
- </listitem>
- <listitem>
- <para>Click <emphasis>
+ </emphasis> in text field</para>
+ </listitem>
+ <listitem>
+ <para>Click <emphasis>
<property>Finish</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>In Source mode add
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>In Source mode add
<code><br/></code>
tags between
<code><outputText></code>
, <code><inputText></code>
and <code><commandButton></code>
components to place them on different lines</para>
- </listitem>
- </itemizedlist>
- <para>inputnumber.jsp page should look like this:</para>
- <programlisting role="XML"><![CDATA[<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
+ </listitem>
+ </itemizedlist>
+ <para>inputnumber.jsp page should look like this:</para>
+ <programlisting role="XML"><![CDATA[<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:loadBundle basename="game.messages" var="msg" />
<html>
@@ -964,13 +984,13 @@
</body>
</html>
]]></programlisting>
- </section>
- <section id="EditingSuccessJsp">
- <?dbhtml filename="EditingSuccessJsp.html"?>
- <title>Editing success.jsp page</title>
- <para>In the same way like inputnumber.jsp, edit success.jsp page. Its whole source
+ </section>
+ <section id="EditingSuccessJsp">
+ <?dbhtml filename="EditingSuccessJsp.html"?>
+ <title>Editing success.jsp page</title>
+ <para>In the same way like inputnumber.jsp, edit success.jsp page. Its whole source
should be the next:</para>
- <programlisting role="XML"><![CDATA[<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
+ <programlisting role="XML"><![CDATA[<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:loadBundle basename="game.messages" var="msg"/>
@@ -994,70 +1014,71 @@
</html>
]]></programlisting>
- <para>Again you can use code assist provided by JBDS when editing jsp page:</para>
- <figure>
- <title>Code Assist for <f:param></title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_18.png"
- scale="80"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>This page, success.jsp, is shown if you correctly guessed the number. The
+ <para>Again you can use code assist provided by JBDS when editing jsp page:</para>
+ <figure>
+ <title>Code Assist for <f:param></title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_18.png" scale="80"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>This page, success.jsp, is shown if you correctly guessed the number. The
<code><h:outputFormat></code>
tag will get the value of success_text from the properties file. The {0}
in success_text will be substituted for by the value of the value attribute within
the <code><f:param></code>
tag during runtime.</para>
- <para>At the end, you have a button which allows you to replay the game. The action
+ <para>At the end, you have a button which allows you to replay the game. The action
value references a backing bean method. In this case, the method only terminates the
current session so that when you are shown the first page, the input text box is
clear and a new random number is generated.</para>
- <itemizedlist>
- <listitem>
- <para>Switch to Preview mode to see how this page will look in a browser:</para>
- </listitem>
- </itemizedlist>
- <figure>
- <title>Success.jsp in Preview Mode</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_19.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- </section>
- </section>
- <section id="CreatingIndexjsp">
- <?dbhtml filename="CreatingIndexjsp.html"?>
- <title>Creating index.jsp page</title>
- <para>Now you know how to create index.jsp page.</para>
- <para>The index.jsp page is the entry point of our application. It's just
+ <itemizedlist>
+ <listitem>
+ <para>Switch to Preview mode to see how this page will look in a browser:</para>
+ </listitem>
+ </itemizedlist>
+ <figure>
+ <title>Success.jsp in Preview Mode</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_19.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ </section>
+ <section id="CreatingIndexjsp">
+ <?dbhtml filename="CreatingIndexjsp.html"?>
+ <title>Creating index.jsp page</title>
+ <para>Now you know how to create index.jsp page.</para>
+ <para>The index.jsp page is the entry point of our application. It's just
forwarding to inputnumber.jsp page.</para>
- <itemizedlist>
- <listitem>
- <para>Right click <emphasis>
+ <itemizedlist>
+ <listitem>
+ <para>Right click <emphasis>
<property>WebContent > New > JSP File</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Type <emphasis>
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Type <emphasis>
<property>index</property>
- </emphasis> for name field and choose <emphasis>
+ </emphasis> for name field and choose <emphasis>
<property>JSPRedirect</property>
- </emphasis> as a template</para>
- </listitem>
- <listitem>
- <para>Click <emphasis>
+ </emphasis> as a template</para>
+ </listitem>
+ <listitem>
+ <para>Click <emphasis>
<property>Finish</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>The source for this page should be like the following:</para>
- </listitem>
- </itemizedlist>
- <programlisting role="XML"><![CDATA[<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>The source for this page should be like the following:</para>
+ </listitem>
+ </itemizedlist>
+ <programlisting role="XML"><![CDATA[<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<body>
<jsp:forward page="/pages/inputnumber.jsf" />
@@ -1065,70 +1086,68 @@
</html>
]]></programlisting>
- <para>Note the <emphasis>.jsf</emphasis> extension of a page. It means that we trigger the
+ <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>Finally, we have all the pieces needed to run the application.</para>
- <itemizedlist>
- <listitem>
- <para>Start up JBoss server by clicking on the <emphasis>
+ </section>
+ <section id="RunningTheApplication33">
+ <?dbhtml filename="RunningTheApplication33.html"?>
+ <title>Running the Application</title>
+ <para>Finally, we have all the pieces needed to run the application.</para>
+ <itemizedlist>
+ <listitem>
+ <para>Start up JBoss server by clicking on the <emphasis>
<property>Start</property>
- </emphasis> icon in <property>Servers</property>. (If JBoss is already running, stop it by
+ </emphasis> icon in <property>Servers</property>. (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>Right-click on project <emphasis>
+ </listitem>
+ <listitem>
+ <para>Right-click on project <emphasis>
<property>Run AS > Run on Server</property>
- </emphasis></para>
- </listitem>
- <listitem>
- <para>Play with the application by entering correct as well as incorrect
+ </emphasis>
+ </para>
+ </listitem>
+ <listitem>
+ <para>Play with the application by entering correct as well as incorrect
values</para>
- </listitem>
- </itemizedlist>
- <figure>
- <title>You are Asked to Enter a Number Between 0 and 100</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_20.png"/>
- </imageobject>
- </mediaobject>
- </figure>
- <figure>
- <title>Your Input is Validated and an Error Message is Displayed if Invalid Input was
+ </listitem>
+ </itemizedlist>
+ <figure>
+ <title>You are Asked to Enter a Number Between 0 and 100</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_20.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <figure>
+ <title>Your Input is Validated and an Error Message is Displayed if Invalid Input was
Entered</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_21.png"
- scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_21.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
- <figure>
- <title>After You Enter a Guess, the Application Tells You Whether a Smaller or a Larger
+ <figure>
+ <title>After You Enter a Guess, the Application Tells You Whether a Smaller or a Larger
Number Should be Tried</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_22.png"
- scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_22.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
- <figure>
- <title>Your Guess is Correct</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/rad_jsf_application/rad_jsf_application_23.png"
- scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- </section>
+ <figure>
+ <title>Your Guess is Correct</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_23.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
</chapter>
15 years, 2 months
JBoss Tools SVN: r28230 - in trunk/documentation/guides/GettingStartedGuide/en-US: images/rad_jsf_application and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-13 23:43:50 -0500 (Thu, 13 Jan 2011)
New Revision: 28230
Added:
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_2a.png
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
Log:
Updates for JBDS 4.0
Added: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_2a.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_2a.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:37:04 UTC (rev 28229)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:43:50 UTC (rev 28230)
@@ -86,10 +86,19 @@
<para>Now, we will guide you through the steps on how to do this.</para>
<itemizedlist>
+ <listitem>
+ <para>First a folder called <filename>pages</filename> needs to be created under the <filter>WebContent</filter> folder. To do this right click on the <filter>WebContent</filter> folder in the Package Explorer view and select New > Folder. Set the <guilabel>Folder Name</guilabel> to <filename>pages</filename> and click the <guibutton>Finish</guibutton> button.</para>
+ </listitem>
+ <figure>
+ <title>Create pages folder</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/rad_jsf_application/rad_jsf_application_2a.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
<listitem>
- <para>Open <emphasis>
- <property>faces-config.xml</property>
- </emphasis> file</para>
+ <para>Open the <filename>faces-config.xml</filename> file.</para>
</listitem>
<listitem>
<para>Right click anywhere on the diagram mode</para>
15 years, 2 months
JBoss Tools SVN: r28229 - trunk/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-13 23:37:04 -0500 (Thu, 13 Jan 2011)
New Revision: 28229
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
Log:
Updates for JBDS 4.0
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:27:42 UTC (rev 28228)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:37:04 UTC (rev 28229)
@@ -450,7 +450,9 @@
import java.util.ResourceBundle;
]]></programlisting>
<para>The whole java bean should look as follows:</para>
- <programlisting role="JAVA"><![CDATA[import javax.faces.context.FacesContext;
+ <programlisting role="JAVA"><![CDATA[package game;
+
+import javax.faces.context.FacesContext;
import javax.servlet.http.HttpSession;
import javax.faces.application.FacesMessage;
import java.util.ResourceBundle;
@@ -459,7 +461,8 @@
{
Integer userNumber;
int randomNumber; // random number generated by application
-public Integer getUserNumber ()
+
+ public Integer getUserNumber ()
{
return userNumber;
}
@@ -515,6 +518,7 @@
}
}
}
+
]]></programlisting>
</section>
15 years, 2 months
JBoss Tools SVN: r28228 - in trunk/documentation/guides/GettingStartedGuide/en-US: images/rad_jsf_application and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-13 23:27:42 -0500 (Thu, 13 Jan 2011)
New Revision: 28228
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_7.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_8.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_8a.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_8b.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_9.png
trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
Log:
Updates for JBDS 4.0
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_7.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_8.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_8a.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_8b.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_9.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:10:58 UTC (rev 28227)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:27:42 UTC (rev 28228)
@@ -533,11 +533,13 @@
</listitem>
</itemizedlist>
<programlisting role="XML"><![CDATA[<?xml version="1.0" encoding="UTF-8"?>
-<faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee
-xmlns:xi="http://www.w3.org/2001/XInclude"
-xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
- http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2_.xsd">
+<faces-config
+ version="1.2"
+ xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xi="http://www.w3.org/2001/XInclude"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
+ http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2_.xsd">
<navigation-rule>
<from-view-id>*</from-view-id>
15 years, 2 months
JBoss Tools SVN: r28227 - in trunk/documentation/guides/GettingStartedGuide/en-US: images/rad_jsf_application and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-13 23:10:58 -0500 (Thu, 13 Jan 2011)
New Revision: 28227
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_4.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_5.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_6.png
trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
Log:
Updates for JBDS 4.0
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_4.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_5.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_6.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:04:27 UTC (rev 28226)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-14 04:10:58 UTC (rev 28227)
@@ -114,7 +114,7 @@
<para>Type <emphasis>
<property>pages/inputnumber</property>
</emphasis> as the value for <emphasis>
- <property>From-view-id</property>
+ <property>From View ID</property>
</emphasis></para>
</listitem>
<listitem>
@@ -126,7 +126,7 @@
<para>In the same way create another jsf view. Type <emphasis>
<property>pages/success</property>
</emphasis> as the value for <emphasis>
- <property>From-view-id</property>
+ <property>From View ID</property>
</emphasis></para>
</listitem>
<listitem>
15 years, 2 months
JBoss Tools SVN: r28226 - trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-13 23:04:27 -0500 (Thu, 13 Jan 2011)
New Revision: 28226
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_1.png
trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_2.png
Log:
Updates for JBDS 4.0
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_1.png
===================================================================
(Binary files differ)
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/images/rad_jsf_application/rad_jsf_application_2.png
===================================================================
(Binary files differ)
15 years, 2 months
JBoss Tools SVN: r28225 - branches/jbosstools-3.2.0.CR1/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-13 23:00:31 -0500 (Thu, 13 Jan 2011)
New Revision: 28225
Modified:
branches/jbosstools-3.2.0.CR1/build/publish.sh
Log:
copy {BUILD_ID}-H{BUILD_NUMBER}-r{SVN_REVISION}.txt as build.properties
Modified: branches/jbosstools-3.2.0.CR1/build/publish.sh
===================================================================
--- branches/jbosstools-3.2.0.CR1/build/publish.sh 2011-01-14 04:00:11 UTC (rev 28224)
+++ branches/jbosstools-3.2.0.CR1/build/publish.sh 2011-01-14 04:00:31 UTC (rev 28225)
@@ -85,6 +85,7 @@
echo "BUILD_ID = ${BUILD_ID}" >> ${STAGINGDIR}/logs/${METAFILE}
echo "WORKSPACE = ${WORKSPACE}" >> ${STAGINGDIR}/logs/${METAFILE}
echo "HUDSON_SLAVE = $(uname -a)" >> ${STAGINGDIR}/logs/${METAFILE}
+cp ${STAGINGDIR}/logs/${METAFILE} ${STAGINGDIR}/logs/build.properties
#echo "$z ..."
if [[ $z != "" ]] && [[ -f $z ]] ; then
15 years, 2 months
JBoss Tools SVN: r28224 - in branches/jbosstools-3.2.0.CR1/build: aggregate/site and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-01-13 23:00:11 -0500 (Thu, 13 Jan 2011)
New Revision: 28224
Modified:
branches/jbosstools-3.2.0.CR1/build/aggregate/site/build.xml
branches/jbosstools-3.2.0.CR1/build/aggregate/site/pom.xml
branches/jbosstools-3.2.0.CR1/build/build.xml
branches/jbosstools-3.2.0.CR1/build/parent/pom.xml
branches/jbosstools-3.2.0.CR1/build/target-platform/multiple.target.p2mirror.xml
Log:
switch from _trunk to _stable_branch and from /trunk to /branches/jbosstools-3.2.0.CR1
Modified: branches/jbosstools-3.2.0.CR1/build/aggregate/site/build.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/build/aggregate/site/build.xml 2011-01-14 03:59:06 UTC (rev 28223)
+++ branches/jbosstools-3.2.0.CR1/build/aggregate/site/build.xml 2011-01-14 04:00:11 UTC (rev 28224)
@@ -314,7 +314,7 @@
<property name="isTest" value="true" />
<antcall target="collect.zips">
<param name="inputRepos" value="1" />
- <param name="inputRepo1" value="http://download.jboss.org/jbosstools/builds/staging/_composite_/trunk" />
+ <param name="inputRepo1" value="http://download.jboss.org/jbosstools/builds/staging/_composite_/3.2_stabl..." />
</antcall>
</target>
@@ -330,11 +330,11 @@
<property name="isTest" value="true" />
<antcall target="collect.zips">
<param name="inputRepos" value="1,2,3,4,5" />
- <param name="inputRepo1" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_trunk...." />
- <param name="inputRepo2" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_trunk...." />
- <param name="inputRepo3" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_trunk...." />
- <param name="inputRepo4" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-savara-1.1..." />
- <param name="inputRepo5" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-savara-1.1..." />
+ <param name="inputRepo1" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_stable..." />
+ <param name="inputRepo2" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_stable..." />
+ <param name="inputRepo3" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_stable..." />
+ <param name="inputRepo4" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-savara-1.1..." />
+ <param name="inputRepo5" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-savara-1.1..." />
</antcall>
</target>
@@ -342,7 +342,7 @@
<property name="isTest" value="true" />
<antcall target="collect.zips">
<param name="inputRepos" value="1,2" />
- <param name="inputRepo2" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_trunk...." />
+ <param name="inputRepo2" value="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2_stable..." />
</antcall>
</target>
Modified: branches/jbosstools-3.2.0.CR1/build/aggregate/site/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/build/aggregate/site/pom.xml 2011-01-14 03:59:06 UTC (rev 28223)
+++ branches/jbosstools-3.2.0.CR1/build/aggregate/site/pom.xml 2011-01-14 04:00:11 UTC (rev 28224)
@@ -16,7 +16,7 @@
<properties>
<!-- add more inputRepos into the composite metadata at the URL below. Therefore need not edit this file and add dozens of URLs
which need to be called by Ant script later -->
- <inputRepo1>http://download.jboss.org/jbosstools/builds/staging/_composite_/trunk/</inputRepo1>
+ <inputRepo1>http://download.jboss.org/jbosstools/builds/staging/_composite_/3.2_stabl...</inputRepo1>
<inputRepos>1</inputRepos>
</properties>
Modified: branches/jbosstools-3.2.0.CR1/build/build.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/build/build.xml 2011-01-14 03:59:06 UTC (rev 28223)
+++ branches/jbosstools-3.2.0.CR1/build/build.xml 2011-01-14 04:00:11 UTC (rev 28224)
@@ -18,7 +18,7 @@
/>
<!-- svn root, including trunk or branch path -->
- <property name="svn.root" value="http://anonsvn.jboss.org/repos/jbosstools/trunk" />
+ <property name="svn.root" value="http://anonsvn.jboss.org/repos/jbosstools/branches/jbosstools-3.2.0.CR1" />
<!-- if true, use -Dmaven.repo.local=${COMMON_TOOLS}/m2-repository; if false, use default ~/.m2/repository; or set another path if preferred -->
<property name="maven.repo.local" value="true" />
Modified: branches/jbosstools-3.2.0.CR1/build/parent/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/build/parent/pom.xml 2011-01-14 03:59:06 UTC (rev 28223)
+++ branches/jbosstools-3.2.0.CR1/build/parent/pom.xml 2011-01-14 04:00:11 UTC (rev 28224)
@@ -14,7 +14,7 @@
<properties>
<!--tychoVersion>0.10.0-SNAPSHOT</tychoVersion -->
<tychoVersion>0.10.0</tychoVersion>
- <scmBranch>trunk</scmBranch>
+ <scmBranch>branches/jbosstools-3.2.0.CR1</scmBranch>
<BUILD_ALIAS>CR1</BUILD_ALIAS>
<memoryOptions1>-Xms512m -Xmx1024m -XX:PermSize=256m</memoryOptions1>
<memoryOptions2>-XX:MaxPermSize=256m</memoryOptions2>
@@ -35,7 +35,7 @@
repo w/o having to edit here. See local.target profile below for more information. -->
<target.platform.site>file://home/hudson/static_build_env/jbds/target-platform/e361-wtp322.target/
</target.platform.site>
- <jbosstools.update.site>http://download.jboss.org/jbosstools/updates/nightly/trunk</jbosstools.update.site>
+ <jbosstools.update.site>http://download.jboss.org/jbosstools/updates/nightly/3.2_stable_branch/</jbosstools.update.site>
<jbosstools-target-platform-repo>http://download.jboss.org/jbosstools/updates/target-platform/latest/</jbosstools-target-platform-repo>
</properties>
@@ -828,7 +828,7 @@
</repository>
<repository>
<id>jbosstools-nightly-staging-composite-trunk</id>
- <url>http://download.jboss.org/jbosstools/builds/staging/_composite_/trunk/ </url>
+ <url>http://download.jboss.org/jbosstools/builds/staging/_composite_/3.2_stabl...</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
@@ -848,7 +848,7 @@
<repositories>
<repository>
<id>jbosstools-nightly-staging-composite-trunk</id>
- <url>http://download.jboss.org/jbosstools/builds/staging/_composite_/trunk/ </url>
+ <url>http://download.jboss.org/jbosstools/builds/staging/_composite_/3.2_stabl...</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
Modified: branches/jbosstools-3.2.0.CR1/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- branches/jbosstools-3.2.0.CR1/build/target-platform/multiple.target.p2mirror.xml 2011-01-14 03:59:06 UTC (rev 28223)
+++ branches/jbosstools-3.2.0.CR1/build/target-platform/multiple.target.p2mirror.xml 2011-01-14 04:00:11 UTC (rev 28224)
@@ -44,7 +44,7 @@
<repository location="http://download.eclipse.org/eclipse/updates/3.6.x/M20110105-0951/"/>
<repository location="http://download.eclipse.org/releases/helios/"/>
<repository location="http://download.eclipse.org/webtools/repository/helios/"/>
-<repository location="http://download.jboss.org/jbosstools/builds/staging/_composite_/trunk/"/>
+<repository location="http://download.jboss.org/jbosstools/builds/staging/_composite_/3.2_stabl..."/>
<repository location="http://dl.google.com/eclipse/plugin/3.6/"/>
<repository location="http://download.jboss.org/jbosstools/updates/requirements/swtbot-helios/"/>
<repository location="http://download.jboss.org/jbosstools/updates/requirements/webtools-3.2/"/>
15 years, 2 months