JBoss Tools SVN: r28283 - trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/client/utils.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-01-17 04:41:30 -0500 (Mon, 17 Jan 2011)
New Revision: 28283
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/client/utils/StringUtils.java
Log:
[JBIDE-8051]
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/client/utils/StringUtils.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/client/utils/StringUtils.java 2011-01-17 09:40:19 UTC (rev 28282)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/client/utils/StringUtils.java 2011-01-17 09:41:30 UTC (rev 28283)
@@ -91,6 +91,11 @@
return stringValue;
}
+ public static boolean isEmpty(String stringValue) {
+ return stringValue == null || stringValue.isEmpty();
+ }
+
+
public static String toString(InputStream inputStream) throws IOException {
StringBuilder builder = new StringBuilder();
for(int character = -1; (character = inputStream.read()) != -1; ) {
15 years, 2 months
JBoss Tools SVN: r28282 - trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-01-17 04:40:19 -0500 (Mon, 17 Jan 2011)
New Revision: 28282
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstanceFactory.java
Log:
[JBIDE-8051]
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2011-01-17 09:39:40 UTC (rev 28281)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2011-01-17 09:40:19 UTC (rev 28282)
@@ -63,7 +63,7 @@
public static interface IInstanceStateMatcher {
public boolean matchesState(DeltaCloudInstance instance, DeltaCloudInstance.State instanceState);
}
-
+
public DeltaCloud(String name, String url, String username, String passwd) throws DeltaCloudException {
this(name, url, username, passwd, null);
}
@@ -74,12 +74,14 @@
}
public DeltaCloud(String name, String url, String username, Driver driver, String imageFilterRules,
- String instanceFilterRules, Collection<IInstanceAliasMapping> instanceAliasMappings) throws DeltaCloudException {
+ String instanceFilterRules, Collection<IInstanceAliasMapping> instanceAliasMappings)
+ throws DeltaCloudException {
this(name, url, username, null, driver, imageFilterRules, instanceFilterRules, instanceAliasMappings);
}
public DeltaCloud(String name, String url, String username, String password, Driver driver,
- String imageFilterRules, String instanceFilterRules, Collection<IInstanceAliasMapping> instanceAliasMappings) throws DeltaCloudException {
+ String imageFilterRules, String instanceFilterRules, Collection<IInstanceAliasMapping> instanceAliasMappings)
+ throws DeltaCloudException {
this.url = url;
this.name = name;
this.username = username;
@@ -88,9 +90,6 @@
this.client = createClient(url, username, passwordStore.getPassword());
this.imageFilter = createImageFilter(imageFilterRules);
this.instanceFilter = createInstanceFilter(instanceFilterRules);
- if (instanceAliasMappings == null) {
- instanceAliasMappings = new ArrayList<IInstanceAliasMapping>();
- }
this.instanceAliasMappings = instanceAliasMappings;
}
@@ -343,7 +342,8 @@
DeltaCloudInstancesRepository repo = getInstancesRepository();
DeltaCloudInstance[] oldInstances = repo.get();
List<Instance> instances = client.listInstances();
- Collection<DeltaCloudInstance> deltaCloudInstances = DeltaCloudInstanceFactory.create(instances, this, instanceAliasMappings);
+ Collection<DeltaCloudInstance> deltaCloudInstances =
+ DeltaCloudInstanceFactory.create(instances, this, instanceAliasMappings);
repo.add(deltaCloudInstances);
// TODO: remove notification with all instanceRepo, replace by
// notifying the changed instance
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstanceFactory.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstanceFactory.java 2011-01-17 09:39:40 UTC (rev 28281)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstanceFactory.java 2011-01-17 09:40:19 UTC (rev 28282)
@@ -53,8 +53,11 @@
return deltaCloudInstances;
}
- private static void setAlias(DeltaCloudInstance instance, Collection<IInstanceAliasMapping> instanceMappings) {
- for (IInstanceAliasMapping aliasMapping : instanceMappings) {
+ private static void setAlias(DeltaCloudInstance instance, Collection<IInstanceAliasMapping> aliasMappings) {
+ if (aliasMappings == null || aliasMappings.size() == 0) {
+ return;
+ }
+ for (IInstanceAliasMapping aliasMapping : aliasMappings) {
if (aliasMapping.matches(instance)) {
instance.setAlias(aliasMapping.getAlias());
}
15 years, 2 months
JBoss Tools SVN: r28281 - branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-01-17 04:39:40 -0500 (Mon, 17 Jan 2011)
New Revision: 28281
Modified:
branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstanceFactory.java
Log:
[JBIDE-8051]
Modified: branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
===================================================================
--- branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2011-01-17 06:02:52 UTC (rev 28280)
+++ branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2011-01-17 09:39:40 UTC (rev 28281)
@@ -63,7 +63,7 @@
public static interface IInstanceStateMatcher {
public boolean matchesState(DeltaCloudInstance instance, DeltaCloudInstance.State instanceState);
}
-
+
public DeltaCloud(String name, String url, String username, String passwd) throws DeltaCloudException {
this(name, url, username, passwd, null);
}
@@ -74,12 +74,14 @@
}
public DeltaCloud(String name, String url, String username, Driver driver, String imageFilterRules,
- String instanceFilterRules, Collection<IInstanceAliasMapping> instanceAliasMappings) throws DeltaCloudException {
+ String instanceFilterRules, Collection<IInstanceAliasMapping> instanceAliasMappings)
+ throws DeltaCloudException {
this(name, url, username, null, driver, imageFilterRules, instanceFilterRules, instanceAliasMappings);
}
public DeltaCloud(String name, String url, String username, String password, Driver driver,
- String imageFilterRules, String instanceFilterRules, Collection<IInstanceAliasMapping> instanceAliasMappings) throws DeltaCloudException {
+ String imageFilterRules, String instanceFilterRules, Collection<IInstanceAliasMapping> instanceAliasMappings)
+ throws DeltaCloudException {
this.url = url;
this.name = name;
this.username = username;
@@ -88,9 +90,6 @@
this.client = createClient(url, username, passwordStore.getPassword());
this.imageFilter = createImageFilter(imageFilterRules);
this.instanceFilter = createInstanceFilter(instanceFilterRules);
- if (instanceAliasMappings == null) {
- instanceAliasMappings = new ArrayList<IInstanceAliasMapping>();
- }
this.instanceAliasMappings = instanceAliasMappings;
}
@@ -343,7 +342,8 @@
DeltaCloudInstancesRepository repo = getInstancesRepository();
DeltaCloudInstance[] oldInstances = repo.get();
List<Instance> instances = client.listInstances();
- Collection<DeltaCloudInstance> deltaCloudInstances = DeltaCloudInstanceFactory.create(instances, this, instanceAliasMappings);
+ Collection<DeltaCloudInstance> deltaCloudInstances =
+ DeltaCloudInstanceFactory.create(instances, this, instanceAliasMappings);
repo.add(deltaCloudInstances);
// TODO: remove notification with all instanceRepo, replace by
// notifying the changed instance
Modified: branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstanceFactory.java
===================================================================
--- branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstanceFactory.java 2011-01-17 06:02:52 UTC (rev 28280)
+++ branches/jbosstools-3.2.0.CR1/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstanceFactory.java 2011-01-17 09:39:40 UTC (rev 28281)
@@ -53,8 +53,11 @@
return deltaCloudInstances;
}
- private static void setAlias(DeltaCloudInstance instance, Collection<IInstanceAliasMapping> instanceMappings) {
- for (IInstanceAliasMapping aliasMapping : instanceMappings) {
+ private static void setAlias(DeltaCloudInstance instance, Collection<IInstanceAliasMapping> aliasMappings) {
+ if (aliasMappings == null || aliasMappings.size() == 0) {
+ return;
+ }
+ for (IInstanceAliasMapping aliasMapping : aliasMappings) {
if (aliasMapping.matches(instance)) {
instance.setAlias(aliasMapping.getAlias());
}
15 years, 2 months
JBoss Tools SVN: r28280 - trunk/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-17 01:02:52 -0500 (Mon, 17 Jan 2011)
New Revision: 28280
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
Log:
General Updates
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2011-01-17 06:00:51 UTC (rev 28279)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2011-01-17 06:02:52 UTC (rev 28280)
@@ -894,7 +894,7 @@
<section id="Collected_usage_information_guide">
<title>Collected usage information guide</title>
<para>
- Outlined is the information type being reported and the Goolge Analytics fieds implemented to gather this information.
+ Below you will find an outline of the information that is reported and the Goolge Analytics fields that are used to gather this information.
</para>
<variablelist>
<varlistentry>
@@ -1000,9 +1000,9 @@
<section id="Support">
<?dbhtml filename="Support.html"?>
<title>Support</title>
- <para>If you have comments or questions, you can discuss them at our <ulink url="http://www.jboss.com/index.html?module=bb&op=viewforum&f=258">JBoss
+ <para>If you have comments or questions, you can discuss them on our <ulink url="http://www.jboss.com/index.html?module=bb&op=viewforum&f=258">JBoss
Developer Studio Forum</ulink>.</para>
- <para>When writing to the forum for questions, please include the following information:</para>
+ <para>When posting questions to the forum, please include the following information:</para>
<orderedlist>
<listitem>
<para>JBoss Developer Studio version</para>
@@ -1015,7 +1015,7 @@
</listitem>
</orderedlist>
- <para><property>JBDS</property> subscribers can get necessary support on our <ulink url="https://network.jboss.com/jbossnetwork/login.html">Support Portal</ulink>.</para>
+ <para><property>JBDS</property> subscribers can get additional support on our <ulink url="https://network.jboss.com/jbossnetwork/login.html">Support Portal</ulink>.</para>
</section>
15 years, 2 months
JBoss Tools SVN: r28279 - trunk/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-17 01:00:51 -0500 (Mon, 17 Jan 2011)
New Revision: 28279
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
Log:
General Updates
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2011-01-17 04:47:28 UTC (rev 28278)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2011-01-17 06:00:51 UTC (rev 28279)
@@ -14,20 +14,19 @@
<section id="intro1">
<title>What is JBDS?</title>
<para><property>JBoss Developer Studio</property> is a set of eclipse-based development tools that
- are pre-configured for JBoss Enterprise Middleware Platforms and Red Hat Enterprise Linux.
+ have been pre-configured for JBoss Enterprise Middleware Platforms and Red Hat Enterprise Linux.
Developers are not required to use <property>JBoss Developer Studio</property> to develop on
JBoss Enterprise Middleware and/or Red Hat Linux. But, many find these pre-configured tools offer
- significant time-savings and value, making them more productive and speeding time to deployment.</para>
- <para>This guide covers the first steps to get started working with <property>JBoss Developer
- Studio</property>. You will learn how to install and configure necessary software for your OS
- (currently Linux, Microsoft Windows or Mac OSX).</para>
- <para>Thus this guide will provide you with detailed info on how to start JDK, JBDS and JBoss
+ significant time-savings and value, making them more pra JSPoductive reducing deployment times.</para>
+ <para>This guide covers the first steps required to get started with <property>JBoss Developer
+ Studio</property>. You will learn how to install and configure the software necessary for your OS
+ (currently Linux, Microsoft Windows or Mac OSX), including detailed information on how to install, configure and use JDK, JBDS and JBoss
Tools.</para>
</section>
<section>
<title>Key Features of JBoss Developer Studio and Requirements</title>
- <para>For a start, we propose you to look through the table of main features of JBoss Developer Studio:</para>
+ <para>The table below lists the main features of JBoss Developer Studio:</para>
<table>
@@ -70,7 +69,7 @@
<row>
<entry><para>JBoss Tools Palette</para></entry>
- <entry><para>The JBoss Tools Palette contains a developer’s project tag libraries and enables inserting tags into a JSP with one click. The Tools Palette supports custom and 3rd party tags.</para></entry>
+ <entry><para>The JBoss Tools Palette contains a developer’s project tag libraries and enables inserting tags into a JSP file with one click. The Tools Palette supports custom and 3rd party tags.</para></entry>
</row>
<row>
@@ -297,8 +296,8 @@
<para>This chapter will provide you with detailed information on how to install <property>JBoss
Developer Studio</property>.</para>
- <para>JBDS comes with a simple installer, bundled with tested/pre-configured versions of Eclipse,
- WTP, JBossEAP, Seam, and SpringIDE. Thus, to start perform the next steps:</para>
+ <para>JBDS comes with a simple installer, bundled with tested and pre-configured versions of Eclipse,
+ WTP, JBossEAP, Seam, and SpringIDE. The following steps show you how to install JBDS:</para>
<itemizedlist>
<listitem>
@@ -307,7 +306,7 @@
website</ulink>.</para>
</listitem>
<listitem>
- <para>Then run in console:</para>
+ <para>Run the following command in a terminal window:</para>
<programlisting role="JAVA"><![CDATA[java -jar jbdevstudio-eap-linux-gtk-4.0.0.GA.jar
]]></programlisting>
</listitem>
@@ -326,23 +325,14 @@
</figure>
<itemizedlist>
+ <listitem>
+ <para>Provide the installation path</para>
+ </listitem>
<listitem>
- <para>Provide the installation path</para>
+ <para>Select the appropriate Java Virtual Machine</para>
</listitem>
- <listitem>
- <para>Select Java VM</para>
- </listitem>
</itemizedlist>
-
- <figure>
- <title>Select Java VM</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/getting_started_2.png"/>
- </imageobject>
- </mediaobject>
- </figure>
-
+
<note>
<title>Tip:</title>
<para>By selecting <emphasis>
@@ -361,11 +351,20 @@
and "gij" isn't available on every platform.</para>
</note>
+ <figure>
+ <title>Select Java VM</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/getting_started_2.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
<itemizedlist>
<listitem>
- <para>Installation process includes <ulink url="http://www.jboss.com/products/platforms/application">JBoss Enterprise Application
+ <para>As part of the installation you can choose to install <ulink url="http://www.jboss.com/products/platforms/application">JBoss Enterprise Application
Platform</ulink>. Select <emphasis>
- <property>Yes</property></emphasis> to use it in JBoss Developer Studio.</para>
+ <property>Yes</property></emphasis> to use it in JBoss Developer Studio.</para>
<note>
<title>Note:</title>
<para>Like in the previous version of JBDS, JBDS 4.0.0.GA comes integrated with JBoss EAP 5.1 that supports EAP 5 adapter and Seam 2.2.</para>
@@ -385,7 +384,7 @@
</figure>
<itemizedlist>
- <listitem><para>You can fill the list automatically using the <emphasis><property>Find</property></emphasis> button: click <emphasis><property>Find</property></emphasis>, select a folder where search of available JBoss Application Servers should be started and click on <guibutton>OK</guibutton> button: </para> </listitem>
+ <listitem><para>You can fill the list automatically using the <guibutton>Find</guibutton> button. When the <guibutton>Find</guibutton> button is clicked you are propmpted to select the folder from which to search for available JBoss Application Servers. Click the <guibutton>OK</guibutton> button to select the chosen folder. </para> </listitem>
</itemizedlist>
<figure>
@@ -399,13 +398,12 @@
<para/>
<itemizedlist>
- <listitem><para> All available servers in the selected directory will be added to the list with the following information specified: Name, Type, Version and Location.
+ <listitem><para> All available servers in the selected directory will be added to the list with the following details: Name, Type, Version and Location.
</para></listitem>
</itemizedlist>
<itemizedlist>
- <listitem><para>You can also add servers one by one using the
- <emphasis><property>Add</property></emphasis> button:</para>
+ <listitem><para>You can also add servers one by one using the <guibutton>Add</guibutton> button:</para>
</listitem>
</itemizedlist>
@@ -419,7 +417,7 @@
</figure>
<para/>
-<para>Click on <emphasis><property>Browse</property></emphasis> and select the server location. Fields Name, Type and Version will be filled in automatically:</para>
+<para>Click on the <guibutton>Browse</guibutton> button and select the server location. Fields Name, Type and Version will be filled in automatically:</para>
<figure>
<title>Specify Server Location</title>
@@ -432,12 +430,10 @@
<para/>
- <para>Click the <guibutton>OK</guibutton> button. The server is added to the list with the details on its type, version and location.</para>
+ <para>When you click the <guibutton>OK</guibutton> button the server will be added to the list with the details on its type, version and location.</para>
+
+ <para>The <guibutton>Remove</guibutton> button will the remove the selected server from the list. If necessary, you can edit the server details clicking on the <guibutton>Edit</guibutton> button:</para>
-
-
- <para>The <emphasis><property>Remove</property></emphasis> button will the remove the selected server from the list. If necessary, you can edit the server details clicking on the <emphasis><property>Edit</property></emphasis> button:</para>
-
<figure>
<title>Edit Server</title>
<mediaobject>
@@ -457,12 +453,7 @@
<itemizedlist>
<listitem>
- <para>Click <emphasis><property>Next</property></emphasis>. Check your installation paths and see the components to install. If you'd like to change
- something, press the <emphasis>
- <property>Previous</property>
- </emphasis> button. Click <emphasis>
- <property>Next</property>
- </emphasis> to start installation. </para>
+ <para>Click the <guibutton>Next</guibutton> button to bring up a summary page where you can check your installation paths and see the components that will be installed. If you'd like to change something, press the <guibutton>Previous</guibutton> button. Click the <guibutton>Next</guibutton> button to start installation. </para>
</listitem>
</itemizedlist>
@@ -484,14 +475,14 @@
<title>JBoss Developer Studio and JBoss Tools</title>
<para>This section highlights the differences between <property>JBoss Developer
- Studio</property> and <property>JBoss Tools</property>, and provides the steps on <property>JBoss
- Tools</property> installation as well.</para>
+ Studio</property> and <property>JBoss Tools</property>, and provides the steps on the <property>JBoss
+ Tools</property> installation process.</para>
<section id="WhatDifferenceBetweenJBDSAndJBossTools">
<title>What is the difference?</title>
<para><property>JBoss Tools</property> is a component of <property>JBoss Developer
- Studio</property>, which is designed to be an easy-to-install Eclipse based IDE fully configured and ready
+ Studio</property>, which is designed to be an easy-to-install Eclipse based IDE, fully configured and ready
to run with the bundled <property>JBoss Enterprise Application Platform</property>.</para>
<para>In short <property>JBoss Tools</property> are just a set of Eclipse plugins and
@@ -522,10 +513,9 @@
<section id="JBossToolsInstall">
<title>JBoss Tools Installation and Update</title>
- <para>Here, let's consider the installation of the <property>JBoss Tools</property>
- modules.</para>
+ <para>This section covers the installation of the <property>JBoss Tools</property> modules.</para>
<para><property>JBoss Tools</property> is an umbrella project for the JBoss developed plugins
- that will make it into <property>JBoss Developer Studio</property>. The JBoss Tools modules are:</para>
+ that are part of <property>JBoss Developer Studio</property>. The JBoss Tools modules are:</para>
<itemizedlist>
<listitem>
<para>JBoss AS Tools</para>
@@ -562,7 +552,7 @@
<itemizedlist>
<listitem>
- <para>Get Eclipse and Web Tools (make sure you have the
+ <para>A copy of Eclipse and Web Tools (make sure you have the
<ulink url="http://www.jboss.org/community/wiki/Matrixofsupportedplatformsruntimesand...">appropriate version of Eclipse</ulink>).</para>
</listitem>
</itemizedlist>
@@ -595,7 +585,7 @@
<title>Installation From Update Site</title>
- <para>Instead of downloading installation/updating manually, it's also possible to
+ <para>Instead of downloading installation and updating manually, it's also possible to
get the latest release of <property>JBoss Tools</property> from one of our update sites:
<itemizedlist id="sites">
<listitem>
@@ -615,29 +605,28 @@
<itemizedlist>
<note>
<title>Note:</title>
- <para>During the JBT installation/updating process using some of Jboss
- update sites <emphasis>No repository found containing...</emphasis> error
- can appear.It is a Eclipse P2 bug.To work around it try:1.Restart your Eclipse. 2.
- Add the update site again. 3.
- Do the update again.</para>
+ <para>During the JBT installation and updating process using some of Jboss
+ update sites the <emphasis>No repository found containing...</emphasis> error
+ can appear. This is an Eclipse P2 bug. To work around it try: 1.Restarting Eclipse. 2.
+ Add the update site again. 3. Performing the update again.</para>
</note>
- <para>To install/update Jboss Tools from one of the update sites you should follow the steps:</para>
+ <para>To install and/or update JBoss Tools from one of the update sites you should follow the steps:</para>
<listitem><para>First, download the correct version of Eclipse
for your platform which is compatible with the version of JBoss
- Tools you plan to install.For example if you want to install
- 3.1.0.GA Eclipse 3.6.1 Helios JEE Bundle is required.</para></listitem>
+ Tools you plan to install. For example if you want to install
+ 3.2.0.GA Eclipse 3.6.1 Helios JEE Bundle is required.</para></listitem>
<listitem><para>If you do not already have Java 5 or 6 installed and in your path,
download and install it.</para></listitem>
<listitem><para>When Eclipse is started, go to <itemizedlist>
- <listitem><para><menuchoice><guimenuitem>Help</guimenuitem><guimenuitem>Software Updates...</guimenuitem><guimenuitem>Available Software</guimenuitem><guimenuitem>Manage Sites...</guimenuitem><guimenuitem>Add...</guimenuitem></menuchoice><emphasis>(Eclipse 3.4)</emphasis></para></listitem>
- <listitem><para><menuchoice><guimenuitem>Help</guimenuitem><guimenuitem>Install New Software</guimenuitem><guimenuitem>Add...</guimenuitem></menuchoice><emphasis>(Eclipse 3.5, 3.6)</emphasis></para></listitem>
+ <listitem><para><menuchoice><guimenuitem>Help</guimenuitem><guimenuitem>Software Updates...</guimenuitem><guimenuitem>Available Software</guimenuitem><guimenuitem>Manage Sites...</guimenuitem><guimenuitem>Add...</guimenuitem></menuchoice><emphasis> (Eclipse 3.4)</emphasis></para></listitem>
+ <listitem><para><menuchoice><guimenuitem>Help</guimenuitem><guimenuitem>Install New Software</guimenuitem><guimenuitem>Add...</guimenuitem></menuchoice><emphasis> (Eclipse 3.5, 3.6)</emphasis></para></listitem>
</itemizedlist>
</para></listitem>
<listitem><para>After clicking the <guibutton>Add</guibutton> button the <property>Add Site</property> View should appear.
In the <property>Location</property> field you should paste one of the update sites described
- <link linkend="sites">above</link>.On some platforms,
+ <link linkend="sites">above</link>. On some platforms,
you can also drag and drop the link from your browser directly into Eclipse. In the <property>Name</property> field you can enter any name you like.
- In the end press the <property>OK</property> button.</para>
+ In the end press the <guibutton>OK</guibutton> button.</para>
<figure>
<title>Add Update Site</title>
<mediaobject>
@@ -669,18 +658,17 @@
</imageobject>
</mediaobject>
</figure>
- <para>If some of them are missing an error message will appear and
+ <para>If some of the dependencies are missing an error message will appear and
the installation process will be terminated.
</para>
<note>
<title>Note:</title>
<para>Sometimes when a user changes the list of plugins for download and clicks
- <guibutton>Next</guibutton>, after required dependences check,
- the list of missing dependencies of the previous attempt is showed.
- In this case the completely close of the <emphasis>Install New Software</emphasis> dialog can help.</para>
+ <guibutton>Next</guibutton>, after the required dependences have been checked,
+ the list of missing dependencies from the previous attempt is showed.
+ In this case completely closing the <emphasis>Install New Software</emphasis> dialog can help.</para>
</note>
- <para>If JBoss Tools are already installed on your Eclipse and you are doing updating but not
- installation the following messages will appear in your <emphasis>Details</emphasis> section.
+ <para>If JBoss Tools are already installed on your Eclipse and you are performing an update (and not installing new components) the following messages may appear in your <emphasis>Details</emphasis> section.
Ignore them and press the <guibutton>Next</guibutton> button.</para>
<figure>
<title>Possible messages</title>
@@ -691,7 +679,7 @@
</mediaobject>
</figure>
</listitem>
- <listitem><para>When you click the <guibutton>Finish</guibutton> button the Installation/Updating process will commence.</para></listitem>
+ <listitem><para>When you click the <guibutton>Finish</guibutton> button the Installation and/or Updating process will commence.</para></listitem>
<listitem><para>Once the installation is complete, restart Eclipse when prompted.</para>
<figure>
<title>Message dialog</title>
@@ -703,7 +691,7 @@
</figure>
</listitem>
<listitem><para>After fetching all the features and plugins for installation,
- you may be prompted that your selection contains unsigned jars.
+ you may be warned that your selection contains unsigned jars.
This is normal, simply accept the warning and continue. </para>
<figure>
<title>Warning Message</title>
@@ -727,9 +715,8 @@
<section>
<title>Installation From Zip file</title>
- <para>Now you can install JBoss Tools using Eclipse P2 update manager and a common zip file which is
- one installer for all platforms.</para>
- <para>You can download Jboss Tools in a zip file from one of the pages below:</para>
+ <para>It is also possible to install JBoss Tools using the Eclipse P2 update manager and a common zip file which provides a single installer for all platforms.</para>
+ <para>You can download JBoss Tools in a zip file from one of the pages below:</para>
<itemizedlist id="zip_sites">
<listitem>
<para>Stable Releases: <ulink url="http://www.jboss.org/tools/download/stable.html"
@@ -748,7 +735,7 @@
<itemizedlist>
<listitem><para>When Eclipse is started, go to <menuchoice><guimenuitem>Help</guimenuitem><guimenuitem>Install New Software...</guimenuitem><guimenuitem>Add...</guimenuitem><guimenuitem>Archive...</guimenuitem></menuchoice></para></listitem>
<listitem><para>Browse for the update site zip. In the <emphasis>Name</emphasis> field you can write any name you like.
- In the end press the <guibutton>OK</guibutton> button.</para>
+ Then click the <guibutton>OK</guibutton> button.</para>
<figure>
<title>Installation from a zip file</title>
<mediaobject>
@@ -758,7 +745,7 @@
</mediaobject>
</figure>
</listitem>
- <listitem><para>All the other steps are the same as it was described in the <link linkend="from_point">
+ <listitem><para>The remaining steps are the same as described in the section <link linkend="from_point">
Installation From Update Site section</link>. </para>
</listitem>
</itemizedlist>
@@ -819,8 +806,7 @@
<itemizedlist>
<listitem>
- <para>to get short description of perspectives that JBDS offers for more productive
- development</para>
+ <para>to get short descriptions of the perspectives that JBDS provides</para>
</listitem>
</itemizedlist>
@@ -848,9 +834,9 @@
</mediaobject>
</figure>
- <para>Start work with <property>JBoss Developer Studio</property> by clicking on <emphasis>
+ <para>You can start working with <property>JBoss Developer Studio</property> by clicking on <emphasis>
<property>Workbench</property>
- </emphasis> button or simply close the Welcome page.</para>
+ </emphasis> button or simply closing the Welcome page.</para>
</section>
@@ -873,8 +859,7 @@
<para>Make sure <property>JBoss Developer Studio</property> is not running</para>
</listitem>
<listitem>
- <para>Uninstall your current version of <property>JBoss Developer Studio</property> by running
- Uninstaller</para>
+ <para>Uninstall your current version of <property>JBoss Developer Studio</property> by running the Uninstaller</para>
</listitem>
</itemizedlist>
</section>
@@ -884,12 +869,16 @@
<para>
The JBoss Developer Studio now includes a usage plug-in that anonymously reports information back to JBoss. The plug-in is not enabled by default. To enable, make sure the <guilabel>Report usage of JBoss Tools to JBoss Tools team.</guilabel> box is ticked.
</para>
- <mediaobject>
- <imageobject>
+
+ <figure>
+ <title>Usage plug-in pop-up</title>
+ <mediaobject>
+ <imageobject>
<imagedata fileref="images/getting_started/usage_plug-in_1_JBDS.png"/>
- </imageobject>
- <caption>Usage plug-in pop-up</caption>
- </mediaobject>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
<para>
Once enabled, the plug-in will remain active until turned off. To turn the active plug-in off, navigate to <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Preferences</guimenuitem><guimenuitem>JBoss Tools</guimenuitem><guimenuitem>Usage Reporting</guimenuitem></menuchoice>.
</para>
@@ -900,7 +889,7 @@
The plug-in uses Google Analytics to track and report data by acting as if you were visiting the site http://jboss.org/tools/usage/. To view the type of information being collected, refer to <xref linkend="Collected_usage_information_guide"/>.
</para>
<para>
- To view the sourcecode of the usage plug-in visit <ulink url="http://anonsvn.jboss.org/repos/jbosstools/trunk/usage/">http://anonsvn.jboss.org/repos/jbosstools/trunk/usage/</ulink>.
+ To view the source code of the usage plug-in visit <ulink url="http://anonsvn.jboss.org/repos/jbosstools/trunk/usage/">http://anonsvn.jboss.org/repos/jbosstools/trunk/usage/</ulink>.
</para>
<section id="Collected_usage_information_guide">
<title>Collected usage information guide</title>
15 years, 2 months
JBoss Tools SVN: r28278 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-16 23:47:28 -0500 (Sun, 16 Jan 2011)
New Revision: 28278
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
Log:
Added Document Conventions release note
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-01-17 04:22:07 UTC (rev 28277)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-01-17 04:47:28 UTC (rev 28278)
@@ -1266,6 +1266,12 @@
<listitem>
<para>
+ <ulink url="https://issues.jboss.org/browse/TOOLSDOC-134">TOOLSDOC-134</ulink>: Common typographical conventions that were listed at the beginning of each JBoss Developer Studio book have been moved into a seperate book called Document Conventions. JBoss Developer Studio books now link to the Document Conventions book in their preface.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
<ulink url="https://issues.jboss.org/browse/JBIDE-7527">JBIDE-7527</ulink>: The the new JBoss Tools Runtime Detection feature provides a way for JBoss runtime components such as jBPM, Drools, JBoss Server and Seam to be discovered when a workspace is created or when Eclipse is started. These runtime components can be found within a user definable list of directories, which can be defined in <menuchoice><guimenuitem>Preferences</guimenuitem><guimenuitem>JBoss Tools</guimenuitem><guimenuitem>JBoss Tools Runtime Detection</guimenuitem></menuchoice>.
</para>
</listitem>
15 years, 2 months
JBoss Tools SVN: r28277 - trunk/ws/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-16 23:22:07 -0500 (Sun, 16 Jan 2011)
New Revision: 28277
Modified:
trunk/ws/docs/reference/en-US/Book_Info.xml
Log:
updated pubs number
Modified: trunk/ws/docs/reference/en-US/Book_Info.xml
===================================================================
--- trunk/ws/docs/reference/en-US/Book_Info.xml 2011-01-17 04:15:53 UTC (rev 28276)
+++ trunk/ws/docs/reference/en-US/Book_Info.xml 2011-01-17 04:22:07 UTC (rev 28277)
@@ -7,7 +7,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>4.0</productnumber>
<edition>4.0.0</edition>
- <pubsnumber>4</pubsnumber>
+ <pubsnumber>5</pubsnumber>
<abstract>
<para>The JBoss Web Services User Guide explains how to use the JBoss Web Services module to implement web services in Java.</para>
</abstract>
15 years, 2 months
JBoss Tools SVN: r28276 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-16 23:15:53 -0500 (Sun, 16 Jan 2011)
New Revision: 28276
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
Log:
Added new JIRAs
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-01-17 02:58:22 UTC (rev 28275)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2011-01-17 04:15:53 UTC (rev 28276)
@@ -1265,6 +1265,12 @@
<itemizedlist>
<listitem>
+ <para>
+ <ulink url="https://issues.jboss.org/browse/JBIDE-7527">JBIDE-7527</ulink>: The the new JBoss Tools Runtime Detection feature provides a way for JBoss runtime components such as jBPM, Drools, JBoss Server and Seam to be discovered when a workspace is created or when Eclipse is started. These runtime components can be found within a user definable list of directories, which can be defined in <menuchoice><guimenuitem>Preferences</guimenuitem><guimenuitem>JBoss Tools</guimenuitem><guimenuitem>JBoss Tools Runtime Detection</guimenuitem></menuchoice>.
+ </para>
+ </listitem>
+
+ <listitem>
<para>
<ulink url="https://issues.jboss.org/browse/JBDS-1150">JBDS-1150</ulink>: The Java Virtual Machine used by the JBoss Developer Studio installer will also be used as the default VM for JBDS. This can casuse problems if a 64 bit Java VM is used to install a 32 bit JBDS distribution, as the two are incompatible. This can be fixed by editing the <filename>eclipse.ini</filename> file and modifying the <property>vm</property> argument, or by using the appropiate Java VM when installing JBDS.
</para>
15 years, 2 months
JBoss Tools SVN: r28275 - trunk/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-16 21:58:22 -0500 (Sun, 16 Jan 2011)
New Revision: 28275
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/manage.xml
Log:
General Updates
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/manage.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/manage.xml 2011-01-17 02:53:39 UTC (rev 28274)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/manage.xml 2011-01-17 02:58:22 UTC (rev 28275)
@@ -20,8 +20,7 @@
Developer Studio</property>, you should already have a JBoss EAP 5.1 Server installed and defined. To run JBoss AS you need you will need to have JDK 6 installed.</para>
<note>
<title>Note:</title>
- <para>You can leave <property>JDK 1.5</property> configuration for <property>JBDS</property> and set <property>JDK 6</property> as <property>JRE</property> only for <property>JBoss EAP Server</property>. For this you need on <emphasis><property>Windows > Preferences</property>
- </emphasis> menu click <menuchoice><guimenuitem>Server</guimenuitem><guimenuitem>Runtime Environments</guimenuitem></menuchoice>. On the opened preference page you should select <property>JBoss EAP Runtime</property> and click <property>Edit</property>. In <property>Edit Server Runtime Environment</property> dialog you can configure <property>Jave Runtime Environment</property> by clicking <property>JRE</property> button. </para>
+ <para>You can leave <property>JDK 1.5</property> configuration for <property>JBDS</property> and set <property>JDK 6</property> as <property>JRE</property> only for <property>JBoss EAP Server</property>. For this you need to select <menuchoice><guimenuitem>Windows</guimenuitem><guimenuitem>Preferences</guimenuitem></menuchoice>, and then click <menuchoice><guimenuitem>Server</guimenuitem><guimenuitem>Runtime Environments</guimenuitem></menuchoice>. On the opened preference page you should select <property>JBoss EAP Runtime</property> and click <property>Edit</property>. In <property>Edit Server Runtime Environment</property> dialog you can configure <property>Jave Runtime Environment</property> by clicking <property>JRE</property> button. </para>
</note>
<section id="JBossbundled">
@@ -53,12 +52,7 @@
<listitem>
<para>To launch the server click the green-with-white-arrow icon on the
<property>Servers</property> or right click server name in
- this view and select <emphasis>
- <property>Start</property>
- </emphasis>. If this view is not open, select <emphasis>
- <property>Window > Show View > Other > Server
- > Servers</property>
- </emphasis>
+ this view and click the <guibutton>Start</guibutton> button. If this view is not open, select <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Show View</guimenuitem><guimenuitem>Other</guimenuitem><guimenuitem>Server</guimenuitem><guimenuitem>Servers</guimenuitem></menuchoice>
</para>
</listitem>
</itemizedlist>
@@ -208,9 +202,7 @@
</para>
</listitem>
<listitem>
- <para>Select <emphasis>
- <property>JBoss Community > JBoss 4.2 Server</property>
- </emphasis>
+ <para>Select <menuchoice><guimenuitem>JBoss Community</guimenuitem><guimenuitem>JBoss 4.2 Server</guimenuitem></menuchoice>
</para>
</listitem>
</itemizedlist>
@@ -282,9 +274,7 @@
<itemizedlist>
<listitem>
<para>In the last wizard's dialog modify the projects that are
- configured on the server and click <emphasis>
- <property>Finish</property>
- </emphasis>.</para>
+ configured on the server and click the <guibutton>Finish</guibutton> button.</para>
</listitem>
</itemizedlist>
<figure>
15 years, 2 months
JBoss Tools SVN: r28274 - trunk/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-01-16 21:53:39 -0500 (Sun, 16 Jan 2011)
New Revision: 28274
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
trunk/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml
trunk/documentation/guides/GettingStartedGuide/en-US/project_examples.xml
trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
Log:
General Updates
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2011-01-17 02:02:02 UTC (rev 28273)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2011-01-17 02:53:39 UTC (rev 28274)
@@ -385,7 +385,7 @@
</figure>
<itemizedlist>
- <listitem><para>You can fill the list automatically using the <emphasis><property>Find</property></emphasis> button: click <emphasis><property>Find</property></emphasis>, select a folder where search of available JBoss Application Servers should be started and click on <emphasis><property>Ok</property></emphasis>: </para> </listitem>
+ <listitem><para>You can fill the list automatically using the <emphasis><property>Find</property></emphasis> button: click <emphasis><property>Find</property></emphasis>, select a folder where search of available JBoss Application Servers should be started and click on <guibutton>OK</guibutton> button: </para> </listitem>
</itemizedlist>
<figure>
@@ -432,7 +432,7 @@
<para/>
- <para>Click on <emphasis><property>Ok</property></emphasis>. The server is added to the list with the details on its type, version and location.</para>
+ <para>Click the <guibutton>OK</guibutton> button. The server is added to the list with the details on its type, version and location.</para>
@@ -636,7 +636,7 @@
<listitem><para>After clicking the <guibutton>Add</guibutton> button the <property>Add Site</property> View should appear.
In the <property>Location</property> field you should paste one of the update sites described
<link linkend="sites">above</link>.On some platforms,
- you can also drag and drop the link from your browser directly into Eclipse.In <property>Name</property> you can write any name you like.
+ you can also drag and drop the link from your browser directly into Eclipse. In the <property>Name</property> field you can enter any name you like.
In the end press the <property>OK</property> button.</para>
<figure>
<title>Add Update Site</title>
@@ -675,7 +675,7 @@
<note>
<title>Note:</title>
<para>Sometimes when a user changes the list of plugins for download and clicks
- <emphasis>Next</emphasis>, after required dependences check,
+ <guibutton>Next</guibutton>, after required dependences check,
the list of missing dependencies of the previous attempt is showed.
In this case the completely close of the <emphasis>Install New Software</emphasis> dialog can help.</para>
</note>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml 2011-01-17 02:02:02 UTC (rev 28273)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/jsp_application.xml 2011-01-17 02:53:39 UTC (rev 28274)
@@ -22,11 +22,7 @@
"Hello World!" on the page.</para>
<para>We'll assume that you have already launched <property>JBoss Developer
Studio</property> and also that the <property>Web Development</property> perspective is the
- current perspective. If not, make it active by selecting <emphasis>
- <property>Window > Open Perspective > Web Development</property>
- </emphasis> from the menu bar or by selecting <emphasis>
- <property>Window > Open Perspective > Other...</property>
- </emphasis> from the menu bar and then selecting Web Development from the Select Perspective
+ current perspective. If not, make it active by selecting <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Open Perspective</guimenuitem><guimenuitem>Web Development</guimenuitem></menuchoice> from the menu bar or by selecting <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Open Perspective</guimenuitem><guimenuitem>Other...</guimenuitem></menuchoice> from the menu bar and then selecting Web Development from the Select Perspective
dialog box.</para>
<section id="SettingUpTheProject">
@@ -37,19 +33,13 @@
necessary steps on how to do this.</para>
<itemizedlist>
<listitem>
- <para>Go to the menu bar and select <emphasis>
- <property>File > New > Other...</property>
- </emphasis></para>
+ <para>Go to the menu bar and select <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>New</guimenuitem><guimenuitem>Other...</guimenuitem></menuchoice></para>
</listitem>
<listitem>
- <para>Select <emphasis>
- <property>Web > Dynamic Web Project</property>
- </emphasis> in the New Project dialog box</para>
+ <para>Select <menuchoice><guimenuitem>Web</guimenuitem><guimenuitem>Dynamic Web Project</guimenuitem></menuchoice> in the New Project dialog box</para>
</listitem>
<listitem>
- <para>Click <emphasis>
- <property>Next</property>
- </emphasis>
+ <para>Click the <guibutton>Next</guibutton> button
</para>
</listitem>
<listitem>
@@ -58,9 +48,7 @@
<listitem>
<para>Then select <emphasis>
<property>Minimal Configuration</property>
- </emphasis> from the list of possible configurations and click <emphasis>
- <property>Finish</property>
- </emphasis></para>
+ </emphasis> from the list of possible configurations and click the <guibutton>Finish</guibutton> button.</para>
</listitem>
</itemizedlist>
<figure>
@@ -94,13 +82,10 @@
<emphasis>"Hello World!"</emphasis> message.</para>
<itemizedlist>
<listitem>
- <para>Right click <emphasis><property>WebContent > New >
- JSP</property>. </emphasis></para>
+ <para>Right click <menuchoice><guimenuitem>WebContent</guimenuitem><guimenuitem>New</guimenuitem><guimenuitem>JSP</guimenuitem></menuchoice>.</para>
</listitem>
<listitem>
- <para>Type "hello.jsp" for a file name and click the <emphasis>
- <property>Next</property>
- </emphasis> button.</para>
+ <para>Type "hello.jsp" for a file name and click the <guibutton>Next</guibutton> button.</para>
</listitem>
</itemizedlist>
<para>In the next window you can choose a template for your jsp page and see its preview.</para>
@@ -108,9 +93,7 @@
<listitem>
<para>Select <emphasis>
<property>New JSP File (xhtml)</property>
- </emphasis> template and click <emphasis>
- <property>Finish</property>
- </emphasis> button.</para>
+ </emphasis> template and click the <guibutton>Finish</guibutton> button.</para>
</listitem>
</itemizedlist>
<figure>
@@ -226,10 +209,8 @@
<para>Project archives managing is available through Project Archives view.</para>
<itemizedlist>
<listitem>
- <para>Select <emphasis>
- <property>Window > Show view > Other > JBoss
- Tools > Project archives</property>
- </emphasis> from menu bar</para>
+ <para>Select <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Show view</guimenuitem><guimenuitem>Other</guimenuitem><guimenuitem>JBoss
+ Tools</guimenuitem><guimenuitem>Project archives</guimenuitem></menuchoice> from the menu bar</para>
</listitem>
<listitem>
<para>Select a project in Package Explorer you want to be archived</para>
@@ -267,9 +248,7 @@
</figure>
<itemizedlist>
<listitem>
- <para>Click <emphasis>
- <property>Next</property>
- </emphasis> to see a stub archive configuration for your project: <figure>
+ <para>Click the <guibutton>Next</guibutton> button to see a stub archive configuration for your project: <figure>
<title>Stub Archive Configuration</title>
<mediaobject>
<imageobject>
@@ -282,8 +261,7 @@
</para>
</listitem>
<listitem>
- <para>Click <emphasis>
- <property>Finish</property>. </emphasis> The
+ <para>Click the <guibutton>Finish</guibutton> button. The
<emphasis>.war</emphasis> file will appear in <property>Package
Explorer</property> and also in <property>Project Archives</property>
view as structure tree: <figure>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/project_examples.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/project_examples.xml 2011-01-17 02:02:02 UTC (rev 28273)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/project_examples.xml 2011-01-17 02:53:39 UTC (rev 28274)
@@ -16,7 +16,7 @@
project that you can explore and derive some useful technology implementation lessons from. </para>
<para>
- To adjust the settings of the Project Examples feature you need to navigate to <property>Windows> Preferences > JBoss Tools > Project Examples</property>. </para>
+ To adjust the settings of the Project Examples feature you need to navigate to <menuchoice><guimenuitem>Windows</guimenuitem><guimenuitem>Preferences</guimenuitem><guimenuitem>JBoss Tools</guimenuitem><guimenuitem>Project Examples</guimenuitem></menuchoice>. </para>
<figure>
<title>Project Examples Preferences</title>
@@ -27,7 +27,7 @@
</mediaobject>
</figure>
- <para>The <property>Show experimental sites</property> checkbox serves to enable/disable representing the user sites in the <property>Project Example</property> dialog ( <property>Help > Project Examples</property>). </para>
+ <para>The <property>Show experimental sites</property> checkbox serves to enable/disable representing the user sites in the <property>Project Example</property> dialog (<menuchoice><guimenuitem>Help</guimenuitem><guimenuitem>Project Examples</guimenuitem></menuchoice>). </para>
<section id="UserSites">
@@ -83,10 +83,10 @@
<para>To download a project example and start working with it you need to take a few steps:</para>
<itemizedlist>
<listitem>
- <para>Go to the menu bar and select <emphasis><property>File > New > Other...</property></emphasis>
- </para></listitem>
+ <para>Go to the menu bar and select <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>New</guimenuitem><guimenuitem>Other...</guimenuitem></menuchoice></para></listitem>
- <listitem><para>Select <emphasis><property>Jboss Tools > Project Examples</property></emphasis> (You can also call the <emphasis><property>Project Examples</property></emphasis> from menu bar: <property>Help > Project Examples...</property> or directly from <emphasis><property>File > New > Example...</property></emphasis> menu )</para></listitem>
+ <listitem><para>Select <menuchoice><guimenuitem>Jboss Tools</guimenuitem><guimenuitem>Project Examples</guimenuitem></menuchoice> (You can also call the <emphasis><property>Project Examples</property></emphasis> from menu bar: <menuchoice><guimenuitem>Help</guimenuitem><guimenuitem> Project Examples...</guimenuitem></menuchoice> or directly from
+ <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>New</guimenuitem><guimenuitem>Example...</guimenuitem></menuchoice> menu )</para></listitem>
</itemizedlist>
@@ -101,7 +101,7 @@
</figure>
<para>
- Alternatively, you should navigate to <property>New > Other..</property>, scroll down to find the <property>JBoss Tools</property> option (or just type in the first letters of the word "JBoss" for quick search), expand the option and select <property>Project Examples</property>, click <property>Next</property>.
+ Alternatively, you should navigate to <menuchoice><guimenuitem>New</guimenuitem><guimenuitem>Other...</guimenuitem></menuchoice>, scroll down to find the <property>JBoss Tools</property> option (or just type in the first letters of the word "JBoss" for quick search), expand the option and select <property>Project Examples</property>, click <property>Next</property>.
</para>
<itemizedlist>
<listitem><para>Now in the <property>New Project Example</property> dialog you can select a project you would like to explore and a site to download it from</para>
@@ -132,7 +132,7 @@
</mediaobject>
</figure>
- <para>You should click <emphasis><property>Details</property></emphasis> to see the list of requirements
+ <para>You should click the <guibutton>Details</guibutton> button to see the list of requirements
and make fixes.</para>
<figure>
@@ -166,7 +166,7 @@
</note>
<itemizedlist>
- <listitem><para>Press <emphasis><property>Finish</property></emphasis> to start downloading the project from the repository
+ <listitem><para>Press the <guibutton>Finish</guibutton> button to start downloading the project from the repository
</para></listitem>
</itemizedlist>
@@ -221,7 +221,7 @@
<itemizedlist>
<listitem><para>Select the problem from the list</para></listitem>
- <listitem><para>Click <emphasis><property>Quick Fix</property></emphasis> button</para></listitem>
+ <listitem><para>Click <guibutton>Quick Fix</guibutton> button</para></listitem>
</itemizedlist>
<para>You will be offered a solution or a number of solutions to the problem.</para>
@@ -234,7 +234,7 @@
</imageobject>
</mediaobject>
</figure>
- <para>In this case (see the image above), when the <emphasis><property>Finish</property></emphasis> button is pressed, Seam Settings dialog box will be displayed where you need to provide a path to the Seam environment to fix the issue.</para>
+ <para>In this case (see the image above), when the <guibutton>Finish</guibutton> button is pressed, Seam Settings dialog box will be displayed where you need to provide a path to the Seam environment to fix the issue.</para>
<para>When the problem is fixed you will be returned to the Quick Fix dialog box with the remaining problems to be fixed.</para>
@@ -251,9 +251,9 @@
<para>To fix the problem immediately you need to:</para>
<itemizedlist>
- <listitem><para>Click <emphasis><property>Details...</property></emphasis> button in the <property>New Project Example</property> dialog</para></listitem>
+ <listitem><para>Click the <guibutton>Details...</guibutton> button in the <property>New Project Example</property> dialog</para></listitem>
<listitem><para>Select the problem from the list in the <property>Requirement details</property> dialog box</para></listitem>
- <listitem><para>Click <emphasis><property>Fix</property></emphasis> button</para></listitem>
+ <listitem><para>Click the <guibutton>Fix</guibutton> button</para></listitem>
</itemizedlist>
<figure>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-17 02:02:02 UTC (rev 28273)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/rad_jsf_application.xml 2011-01-17 02:53:39 UTC (rev 28274)
@@ -35,12 +35,7 @@
project wizard and predefined templates. Follow the next steps:</para>
<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>
- <property>Create New JSF Project</property>
- </emphasis> button. <figure>
+ <para>In Web Projects (if it is not open select <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Show View</guimenuitem><guimenuitem>Others</guimenuitem><guimenuitem>JBoss Tools Web</guimenuitem><guimenuitem>Web Projects</guimenuitem></menuchoice>) click <guibutton>Create New JSF Project</guibutton> button. <figure>
<title>Create New JSF Project</title>
<mediaobject>
<imageobject>
@@ -57,15 +52,13 @@
</para>
</listitem>
<listitem>
- <para>Leave everything else as it is and click <emphasis>
- <property>Finish</property>
- </emphasis>
+ <para>Leave everything else as it is and click the <guibutton>Finish</guibutton> button
</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>
+ needed libraries, <filename>faces-config.xml</filename> and <filename>web.xml</filename> files.</para>
<figure>
<title>New JSF Project</title>
<mediaobject>
@@ -90,7 +83,7 @@
<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>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 <menuchoice><guimenuitem>New</guimenuitem><guimenuitem>Folder</guimenuitem></menuchoice>. 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>
@@ -133,10 +126,7 @@
</para>
</listitem>
<listitem>
- <para>Leave everything else as is and click <emphasis>
- <property>Finish</property>
- </emphasis>
- </para>
+ <para>Leave everything else as is and click the <guibutton>Finish</guibutton> button</para>
</listitem>
<listitem>
<para>In the same way create another jsf view. Type <emphasis>
@@ -147,9 +137,7 @@
</para>
</listitem>
<listitem>
- <para>Select <emphasis>
- <property>File > Save</property>
- </emphasis>
+ <para>Select <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Save</guimenuitem></menuchoice>
</para>
</listitem>
</itemizedlist>
@@ -202,9 +190,7 @@
</figure>
<itemizedlist>
<listitem>
- <para>Select <emphasis>
- <property>File > Save</property>
- </emphasis> from the menu bar</para>
+ <para>Select <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Save</guimenuitem></menuchoice> from the menu bar</para>
</listitem>
</itemizedlist>
</section>
@@ -229,17 +215,13 @@
<listitem>
<para>Right click <emphasis>
<property>JavaSource</property>
- </emphasis> folder and select <emphasis>
- <property>New > Folder</property>
- </emphasis>
+ </emphasis> folder and select <menuchoice><guimenuitem>New</guimenuitem><guimenuitem>Folder</guimenuitem></menuchoice>
</para>
</listitem>
<listitem>
<para>Type <emphasis>
<property>game</property>
- </emphasis> for Folder name and click <emphasis>
- <property>Finish</property>
- </emphasis>
+ </emphasis> for Folder name and click the <guibutton>Finish</guibutton> button
</para>
</listitem>
</itemizedlist>
@@ -248,17 +230,12 @@
<listitem>
<para>Right click on <emphasis>
<property>game folder</property>
- </emphasis> and select <emphasis>
- <property>New > Properties File</property>
- </emphasis>
+ </emphasis> and select <menuchoice><guimenuitem>New</guimenuitem><guimenuitem>Properties File</guimenuitem></menuchoice>
</para>
</listitem>
<listitem>
- <para>Type <emphasis>
- <property>messages</property>
- </emphasis> as the value for "name" attribute and click <emphasis>
- <property>Finish</property>
- </emphasis>
+ <para>
+ Type <emphasis><property>messages</property></emphasis> as the value for "name" attribute and click the <guibutton>Finish</guibutton> button
</para>
</listitem>
</itemizedlist>
@@ -274,9 +251,7 @@
</figure>
<itemizedlist>
<listitem>
- <para>Click <emphasis>
- <property>Add</property>
- </emphasis> button for adding new attribute to your resource file</para>
+ <para>Click the <guibutton>Add</guibutton> button for adding new attribute to your resource file</para>
</listitem>
<listitem>
<para>Type <emphasis role="italic">
@@ -286,9 +261,7 @@
</emphasis> for value</para>
</listitem>
<listitem>
- <para>Click <emphasis>
- <property>Finish</property>
- </emphasis>
+ <para>Click the <guibutton>Finish</guibutton> button
</para>
</listitem>
<listitem>
@@ -303,9 +276,7 @@
]]></programlisting>
<itemizedlist>
<listitem>
- <para>Click <emphasis>
- <property>File > Save</property>
- </emphasis> from the menu bar</para>
+ <para>Click <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>Save</guimenuitem></menuchoice> from the menu bar</para>
</listitem>
</itemizedlist>
<para>Your .properties file should now look like follows:</para>
@@ -318,17 +289,8 @@
</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>
+ The <guibutton>Up</guibutton> and <guibutton>Down</guibutton> buttons allow you to move you attribute on the list. For delete the attribute, choose it and press the <guibutton>Delete</guibutton> button.</para>
+ <para>If you want to change a value or a name of your attribute, click on it and then click the <guibutton>Edit</guibutton> 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>
@@ -369,10 +331,7 @@
</para>
</listitem>
<listitem>
- <para>Select <emphasis>
- <property>New > Class</property>
- </emphasis>
- </para>
+ <para>Select <menuchoice><guimenuitem>New</guimenuitem><guimenuitem>Class</guimenuitem></menuchoice></para>
</listitem>
<listitem>
<para>Type <emphasis>
@@ -396,17 +355,13 @@
</emphasis> in Package Explorer</para>
</listitem>
<listitem>
- <para>Select <emphasis>
- <property>Source > Generate Getters and Setters...</property>
- </emphasis>
+ <para>Select <menuchoice><guimenuitem>Source</guimenuitem><guimenuitem>Generate Getters and Setters...</guimenuitem></menuchoice>
</para>
</listitem>
<listitem>
<para>Check <emphasis>
<property>userNumber</property>
- </emphasis> box and click <emphasis>
- <property>OK</property>
- </emphasis>
+ </emphasis> box and click the <guibutton>OK</guibutton> button
<figure>
<title>Generate Getters and Setters</title>
<mediaobject>
@@ -553,11 +508,11 @@
<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>In this section you know about <filename>faces-config.xml</filename> 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>
+ <para>Open <filename>faces-config.xml</filename> file in a source mode</para>
</listitem>
<listitem>
<para>Add here one more navigation rule and a managed bean declarations that the
@@ -615,14 +570,12 @@
<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>First, let's dwell on how to edit <filename>inputnumber.jsp</filename>.</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>
- <property>/pages/inputnumber. jsp</property>
- </emphasis> icon</para>
+ <para>Open <filename>inputnumber.jsp</filename> by double-clicking on the <filename>/pages/inputnumber. jsp</filename> icon</para>
</listitem>
</itemizedlist>
<para>The Visual Page Editor will open in a screen split between source code along the
@@ -672,9 +625,7 @@
<listitem>
<para>Type <emphasis>
<property>inputNumbers</property>
- </emphasis> and click <emphasis>
- <property>Finish</property>
- </emphasis>
+ </emphasis> and click the <guibutton>Finish</guibutton> button
</para>
</listitem>
</itemizedlist>
@@ -687,7 +638,7 @@
</imageobject>
</mediaobject>
</figure>
- <para>First let's declare the properties file in inputnumber.jsp page using the
+ <para>First let's declare the properties file in the <filename>inputnumber.jsp</filename> page using the
loadBundle JSF tag.</para>
<itemizedlist>
<listitem>
@@ -719,7 +670,7 @@
<para>Select the second column in the <property>value</property> row.</para>
</listitem>
<listitem>
- <para>Click <property>...</property> button next to the value field</para>
+ <para>Click the <guibutton>...</guibutton> button next to the value field</para>
</listitem>
</itemizedlist>
<para>JBDS will nicely propose you to choose within available values:</para>
@@ -733,9 +684,7 @@
</figure>
<itemizedlist>
<listitem>
- <para>Expand <emphasis>
- <property>Resource Bundles > msg</property>
- </emphasis>
+ <para>Expand <menuchoice><guimenuitem>Resource Bundles</guimenuitem><guimenuitem>msg</guimenuitem></menuchoice>
</para>
</listitem>
<listitem>
@@ -771,9 +720,7 @@
component to make a new line.</para>
</listitem>
<listitem>
- <para>Click <emphasis>
- <property>Save</property>
- </emphasis> button.</para>
+ <para>Click the <guibutton>Save</guibutton> button.</para>
</listitem>
<listitem>
<para>On the Palette click on <emphasis>
@@ -788,9 +735,7 @@
component to make a new line</para>
</listitem>
<listitem>
- <para>Click <emphasis>
- <property>Save</property>
- </emphasis> button</para>
+ <para>Click the <guibutton>Save</guibutton> button</para>
</listitem>
<listitem>
<para>On the Palette click on <emphasis>
@@ -804,20 +749,16 @@
header</para>
</listitem>
<listitem>
- <para>Click <property>...</property> button next to the value field</para>
+ <para>Click the <guibutton>...</guibutton> button next to the value field</para>
</listitem>
<listitem>
- <para>Expand <emphasis>
- <property>Managed Beans > NumberBean</property>
- </emphasis>
+ <para>Expand <menuchoice><guimenuitem>Managed Beans</guimenuitem><guimenuitem>NumberBean</guimenuitem></menuchoice>
</para>
</listitem>
<listitem>
<para>Select <emphasis>
<property>userNumber</property>
- </emphasis> value and click <emphasis>
- <property>Ok</property>
- </emphasis>
+ </emphasis> value and click the <guibutton>OK</guibutton> button
</para>
</listitem>
<listitem>
@@ -843,7 +784,7 @@
header</para>
</listitem>
<listitem>
- <para>Click <property>...</property> button next to the value field</para>
+ <para>Click <guibutton>...</guibutton> button next to the value field</para>
</listitem>
<listitem>
<para>Expand <emphasis>
@@ -863,10 +804,8 @@
</figure>
<itemizedlist>
<listitem>
- <para>Click <emphasis>
- <property>Ok</property>, </emphasis> then click <emphasis>
- <property>Finish</property>
- </emphasis>
+ <para>Click the <guibutton>OK</guibutton> button, then click the <guibutton>Finish</guibutton> button
+
</para>
</listitem>
<listitem>
@@ -884,9 +823,7 @@
]]></programlisting>
<itemizedlist>
<listitem>
- <para>Click <emphasis>
- <property>Save</property>
- </emphasis> button</para>
+ <para>Click the <guibutton>Save</guibutton> button</para>
</listitem>
<listitem>
<para>Again select <emphasis>
@@ -906,19 +843,15 @@
header</para>
</listitem>
<listitem>
- <para>Click <property>...</property> button next to the value field</para>
+ <para>Click <guibutton>...</guibutton> button next to the value field</para>
</listitem>
<listitem>
- <para>Expand <emphasis>
- <property>Resource Bundles > msg</property>
- </emphasis> and select <emphasis>
+ <para>Expand <menuchoice><guimenuitem>Resource Bundles</guimenuitem><guimenuitem>msg</guimenuitem></menuchoice> and select <emphasis>
<property>makeguess_button</property>
</emphasis> as a value</para>
</listitem>
<listitem>
- <para>Click <emphasis>
- <property>Ok</property>
- </emphasis>
+ <para>Click the <guibutton>OK</guibutton> button
</para>
</listitem>
<listitem>
@@ -930,12 +863,10 @@
<listitem>
<para>Type <emphasis>
<property>#{NumberBean.checkGuess}</property>
- </emphasis> in text field</para>
+ </emphasis> in the text field</para>
</listitem>
<listitem>
- <para>Click <emphasis>
- <property>Finish</property>
- </emphasis>
+ <para>Click the <guibutton>Finish</guibutton> button
</para>
</listitem>
<listitem>
@@ -948,7 +879,7 @@
components to place them on different lines</para>
</listitem>
</itemizedlist>
- <para>inputnumber.jsp page should look like this:</para>
+ <para><filename>inputnumber.jsp</filename> page should look like this:</para>
<programlisting role="XML"><![CDATA[<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
@@ -981,7 +912,7 @@
<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
+ <para>In the same way like <filename>inputnumber.jsp</filename>, edit <filename>success.jsp</filename> page. Its whole source
should be the next:</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" %>
@@ -1016,7 +947,7 @@
</imageobject>
</mediaobject>
</figure>
- <para>This page, success.jsp, is shown if you correctly guessed the number. The
+ <para>This page, <filename>success.jsp</filename>, 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
@@ -1044,14 +975,12 @@
<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>
+ <para>Now you know how to create <filename>index.jsp</filename> page.</para>
+ <para>The <filename>index.jsp</filename> page is the entry point of our application. It's just
+ forwarding to <filename>inputnumber.jsp</filename> page.</para>
<itemizedlist>
<listitem>
- <para>Right click <emphasis>
- <property>WebContent > New > JSP File</property>
- </emphasis>
+ <para>Right click <menuchoice><guimenuitem>WebContent</guimenuitem><guimenuitem>New</guimenuitem><guimenuitem>JSP File</guimenuitem></menuchoice>
</para>
</listitem>
<listitem>
@@ -1074,7 +1003,7 @@
]]></programlisting>
<para>Note the <emphasis>.jsf</emphasis> extension of a page. It means that we trigger the
JSF controller servlet to handle the page according the servlet mapping in the
- faces-config.xml file.</para>
+ <filename>faces-config.xml</filename> file.</para>
</section>
<section id="RunningTheApplication33">
<?dbhtml filename="RunningTheApplication33.html"?>
@@ -1082,17 +1011,10 @@
<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
- clicking on the red icon and then start it again. After the messages in the
- Console tabbed view stop scrolling, JBoss is available)</para>
+ <para>Start up JBoss server by clicking on the the <guibutton>Start</guibutton> icon in the <property>Servers</property> view. (If JBoss is already running, stop it by clicking on the red icon and then start it again. After the messages in the Console tabbed view stop scrolling, JBoss is available)</para>
</listitem>
<listitem>
- <para>Right-click on project <emphasis>
- <property>Run AS > Run on Server</property>
- </emphasis>
- </para>
+ <para>Right-click on project <menuchoice><guimenuitem>Run AS</guimenuitem><guimenuitem>Run on Server</guimenuitem></menuchoice></para>
</listitem>
<listitem>
<para>Play with the application by entering correct as well as incorrect
15 years, 2 months