JBoss Tools SVN: r3901 - trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression.
by jbosstools-commits@lists.jboss.org
Author: ezheleznyakov
Date: 2007-09-28 08:13:10 -0400 (Fri, 28 Sep 2007)
New Revision: 3901
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeAttributeOperand.java
Log:
Little fix with html tag <img/>.
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeAttributeOperand.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeAttributeOperand.java 2007-09-28 12:05:00 UTC (rev 3900)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeAttributeOperand.java 2007-09-28 12:13:10 UTC (rev 3901)
@@ -33,8 +33,8 @@
try {
value = ((Element)sourceNode).getAttribute(name);
- if (!caseSensitive) {
- value = (value == null ? "" : value.toLowerCase());
+ if (value == null) {
+ value = "";
}
} catch (Exception e) {
// throw new VpeExpressionError(x.getMessage());
17 years, 2 months
JBoss Tools SVN: r3900 - in trunk/documentation/GettingStartedGuide/docs/userguide/en: modules and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: sabrashevich
Date: 2007-09-28 08:05:00 -0400 (Fri, 28 Sep 2007)
New Revision: 3900
Added:
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication.png
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication2.png
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication3.png
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication4.png
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication5.png
trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication6.png
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-160 updated context in 4th chapter
Added: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication2.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication2.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication3.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication3.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication4.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication4.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication5.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication5.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication6.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/GettingStartedGuide/docs/userguide/en/images/simplejspwebapplication6.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml 2007-09-28 11:58:10 UTC (rev 3899)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/DevelopAsimpleJSPWebApplication.xml 2007-09-28 12:05:00 UTC (rev 3900)
@@ -98,10 +98,10 @@
<section id="WebXML">
<?dbhtml filename="WebXML.html"?>
- <title>Web.xml File</title>
+ <title>web.xml file</title>
<para>When you are creating web project the wizard creates the web.xml for you automatically. The web.xml file editor provided by Red Hat Developer Studio is available in two modes: design and source.</para>
<figure>
- <title>Web.xml in design mode</title>
+ <title>web.xml in design mode</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/webxmldesign.png"/>
@@ -109,7 +109,7 @@
</mediaobject>
</figure>
<figure>
- <title>Web.xml in source mode</title>
+ <title>web.xml in source mode</title>
<mediaobject>
<imageobject>
<imagedata fileref="images/webxmlsource.png"/>
@@ -131,12 +131,76 @@
<?dbhtml filename="DeployTheProject.html"?>
<title>Deploying the project</title>
<para>While creating any web project you could experience a pain writing ant scripts and managing the
-packaging even if a developer is writing the most trivial web applications. With Red Hat Developer Studio you are saved from such a pain. All you need is start JBoss server and launch your application in your favorite browser.</para>
+packaging even if a developer is writing the most trivial web applications. With Red Hat Developer Studio you are saved from such a pain. All you need is to start JBoss server and launch your application in your favorite browser.</para>
<para>You can also create a war archive with RHDS's Archive Tools and export it to any web server.</para>
<section id="WarConfig">
<?dbhtml filename="WarConfig.html"?>
- <title>WAR config</title>
- <para>TO BE DONE</para>
+ <title>WAR Config</title>
+ <para>Project archives managing is available through <emphasis>Project archives</emphasis> view.</para>
+ <itemizedlist>
+ <listitem><para>Select <emphasis>Window > Show view > Other > JBoss Tools > Project archives</emphasis> from menu bar</para></listitem>
+ <listitem><para>Select a project in Package Explorer you want to be archived</para></listitem>
+ </itemizedlist>
+ <para>In Project Archives you will see available archive types for the project:</para>
+ <figure>
+ <title>Project Archives</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/simplejspwebapplication.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem><para>Click, for example, <emphasis>WA</emphasis> option to create war archive</para></listitem>
+ </itemizedlist>
+ <para>In the dialog New WAR you can see automatically selected default values</para>
+ <figure>
+ <title>New WAR archive</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/simplejspwebapplication2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <itemizedlist>
+ <listitem><para>Click Next to see a stub archive configuration for your project:
+ <figure>
+ <title>Stub Archive Configuration</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/simplejspwebapplication3.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para></listitem>
+ <listitem><para>Click Finish. The <emphasis>.war</emphasis> file will appear in Package Explorer and in Project archives view as structure tree:
+ <figure>
+ <title>Archive is created</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/simplejspwebapplication4.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <figure>
+ <title>Archive in Project archives view</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/simplejspwebapplication5.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </para></listitem>
+ </itemizedlist>
+ <para>Via Project archives view you could now edit your archive, add new folders, publish to server, and so on:</para>
+ <figure>
+ <title>Configure archive</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/simplejspwebapplication6.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
</section>
<section id="AutoRedeploy">
17 years, 2 months
JBoss Tools SVN: r3899 - trunk/documentation/GettingStartedGuide/docs/userguide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2007-09-28 07:58:10 -0400 (Fri, 28 Sep 2007)
New Revision: 3899
Modified:
trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/RADdevelopmentOfSimpleJSFapplication.xml
Log:
http://jira.jboss.com/jira/browse/RHDS-196
the bug with screenshot was found in GSG guide, fixed with "width" parameter
screenshot - newrad2.png, Anatily Fedosik will look how to fix it with "scale" parameter
Modified: trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/RADdevelopmentOfSimpleJSFapplication.xml
===================================================================
--- trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/RADdevelopmentOfSimpleJSFapplication.xml 2007-09-28 00:14:28 UTC (rev 3898)
+++ trunk/documentation/GettingStartedGuide/docs/userguide/en/modules/RADdevelopmentOfSimpleJSFapplication.xml 2007-09-28 11:58:10 UTC (rev 3899)
@@ -13,6 +13,7 @@
<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 as follows. A user is 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 the user 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 demonstrating powerful features of Red Hat 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 Red Hat Developer Studio using the bundled JBoss server.</para>
+
<section id="SettingUpTheProject12">
<?dbhtml filename="SettingUpTheProject12.html"?>
<title>Setting up the project</title>
@@ -26,6 +27,7 @@
</imageobject>
</mediaobject>
</figure>
+
<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 Finish.</para>
<para>Our project will appear in Project Explorer and Web Projects Views. As you can see Red Had Developer Studio has created for us the whole skeleton for the project with all needed libraries, faces-config.xml and web.xml files.</para>
@@ -33,10 +35,11 @@
<title>New JSF Project</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad2.png"/>
+ <imagedata depth="22cm" fileref="images/newrad2.png"/>
</imageobject>
</mediaobject>
</figure>
+
</section>
<section id="CreatingJSPPages">
<?dbhtml filename="CreatingJSPPages.html"?>
@@ -53,7 +56,7 @@
<title>Create New View</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad3.png"/>
+ <imagedata scale="80" fileref="images/newrad3.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -69,11 +72,12 @@
<title>New Views</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad4.png"/>
+ <imagedata scale="80" fileref="images/newrad4.png"/>
</imageobject>
</mediaobject>
</figure>
</section>
+
<section id="CreatingTransition">
<?dbhtml filename="CreatingTransition.html"?>
<title>Creating Transition between two views</title>
@@ -84,7 +88,7 @@
<title>Create connection</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad5.png"/>
+ <imagedata scale="80" fileref="images/newrad5.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -96,7 +100,7 @@
<title>Created connection</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad6.png"/>
+ <imagedata scale="80" fileref="images/newrad6.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -124,7 +128,7 @@
<title>messages.properties file</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad62.png"/>
+ <imagedata scale="80" fileref="images/newrad62.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -148,7 +152,7 @@
<title>Properties are added</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad63.png"/>
+ <imagedata scale="80" fileref="images/newrad63.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -178,7 +182,7 @@
<title>Generate Getters and Setters</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad64.png"/>
+ <imagedata scale="80" fileref="images/newrad64.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -368,7 +372,7 @@
<title>Insert h:form</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad7.png"/>
+ <imagedata scale="80" fileref="images/newrad7.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -378,7 +382,7 @@
<title>Define id of form</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad8.png"/>
+ <imagedata scale="80" fileref="images/newrad8.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -390,7 +394,7 @@
<title>Created form</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad9.png"/>
+ <imagedata scale="80" fileref="images/newrad9.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -405,7 +409,7 @@
<title>Code assist</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad10.png"/>
+ <imagedata scale="80" fileref="images/newrad10.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -421,7 +425,7 @@
<title>Choose Value</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad11.png"/>
+ <imagedata scale="80" fileref="images/newrad11.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -432,7 +436,7 @@
<title>Selecting Value</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad12.png"/>
+ <imagedata scale="80" fileref="images/newrad12.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -443,7 +447,7 @@
<title>Created outputText component</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad13.png"/>
+ <imagedata scale="80" fileref="images/newrad13.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -466,7 +470,7 @@
<title>Add required attribute</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad14.png"/>
+ <imagedata scale="80" fileref="images/newrad14.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -538,7 +542,7 @@
<title>Code Assist for <f:param></title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad15.png"/>
+ <imagedata scale="80" fileref="images/newrad15.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -551,7 +555,7 @@
<title>success.jsp in Preview mode</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/newrad16.png"/>
+ <imagedata scale="80" fileref="images/newrad16.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -590,7 +594,7 @@
<title>A user is asked to enter a number between 0 and 100</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/default.png"/>
+ <imagedata scale="80" fileref="images/default.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -598,7 +602,7 @@
<title>User input is validated and an error message is displayed if invalid input was entered</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/default.png"/>
+ <imagedata scale="80" fileref="images/default.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -607,7 +611,7 @@
<title>After the user enters a guess, the application tells the user if a smaller or a larger number should be tried</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/default.png"/>
+ <imagedata scale="80" fileref="images/default.png"/>
</imageobject>
</mediaobject>
</figure>
@@ -616,7 +620,7 @@
<title>A user guesses correctly</title>
<mediaobject>
<imageobject>
- <imagedata fileref="images/default.png"/>
+ <imagedata scale="80" fileref="images/default.png"/>
</imageobject>
</mediaobject>
</figure>
17 years, 2 months
JBoss Tools SVN: r3898 - tags.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2007-09-27 20:14:28 -0400 (Thu, 27 Sep 2007)
New Revision: 3898
Added:
tags/hibernatetools-3.2.0.beta11/
Removed:
tags/TOOLS_3_2_0_beta11/
Log:
renaming hibernate tools tag to something more "subversion-esque"
Copied: tags/hibernatetools-3.2.0.beta11 (from rev 3897, tags/TOOLS_3_2_0_beta11)
17 years, 2 months
JBoss Tools SVN: r3897 - tags/struts-2.0.0.beta4.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-09-27 16:37:36 -0400 (Thu, 27 Sep 2007)
New Revision: 3897
Added:
tags/struts-2.0.0.beta4/struts/
Log:
struts component 2.0.0.beta4
Copied: tags/struts-2.0.0.beta4/struts (from rev 3896, trunk/struts)
17 years, 2 months
JBoss Tools SVN: r3896 - tags.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-09-27 16:37:28 -0400 (Thu, 27 Sep 2007)
New Revision: 3896
Added:
tags/struts-2.0.0.beta4/
Log:
struts component 2.0.0.beta4
17 years, 2 months
JBoss Tools SVN: r3895 - tags/shale-2.0.0.beta4.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-09-27 16:37:05 -0400 (Thu, 27 Sep 2007)
New Revision: 3895
Added:
tags/shale-2.0.0.beta4/shale/
Log:
shale component 2.0.0.beta4
Copied: tags/shale-2.0.0.beta4/shale (from rev 3894, trunk/shale)
17 years, 2 months
JBoss Tools SVN: r3894 - tags.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-09-27 16:36:57 -0400 (Thu, 27 Sep 2007)
New Revision: 3894
Added:
tags/shale-2.0.0.beta4/
Log:
shale component 2.0.0.beta4
17 years, 2 months
JBoss Tools SVN: r3893 - tags/seam-2.0.0.beta4.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2007-09-27 16:36:28 -0400 (Thu, 27 Sep 2007)
New Revision: 3893
Added:
tags/seam-2.0.0.beta4/seam/
Log:
seam component 2.0.0.beta4
Copied: tags/seam-2.0.0.beta4/seam (from rev 3892, trunk/seam)
17 years, 2 months