JBoss Tools SVN: r42197 - trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils.
by jbosstools-commits@lists.jboss.org
Author: jjankovi
Date: 2012-06-25 10:57:06 -0400 (Mon, 25 Jun 2012)
New Revision: 42197
Modified:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java
Log:
little fixing
Modified: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java 2012-06-25 14:54:09 UTC (rev 42196)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/RunOnServerDialog.java 2012-06-25 14:57:06 UTC (rev 42197)
@@ -40,7 +40,7 @@
}
public RunOnServerDialog chooseExistingServer() {
- bot.checkBox(0).select();
+ bot.radio(0).click();
return this;
}
12 years, 6 months
JBoss Tools SVN: r42196 - trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/condition.
by jbosstools-commits@lists.jboss.org
Author: jjankovi
Date: 2012-06-25 10:54:09 -0400 (Mon, 25 Jun 2012)
New Revision: 42196
Added:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/condition/ViewIsActive.java
Log:
condition for testing if view is active added
Added: trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/condition/ViewIsActive.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/condition/ViewIsActive.java (rev 0)
+++ trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/condition/ViewIsActive.java 2012-06-25 14:54:09 UTC (rev 42196)
@@ -0,0 +1,42 @@
+package org.jboss.tools.ui.bot.ext.condition;
+
+import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotView;
+import org.eclipse.swtbot.swt.finder.SWTBot;
+import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
+import org.eclipse.swtbot.swt.finder.utils.StringUtils;
+import org.eclipse.swtbot.swt.finder.utils.internal.Assert;
+import org.eclipse.swtbot.swt.finder.waits.ICondition;
+import org.jboss.tools.ui.bot.ext.SWTBotFactory;
+
+/**
+ * SWTBot Condition checking if a view is active
+ * @author jjankovi
+ *
+ */
+public class ViewIsActive implements ICondition{
+
+ private String viewTitle;
+
+ public ViewIsActive(String viewTitle) {
+ Assert.isNotNull(viewTitle, "View title text was null");
+ Assert.isLegal(!StringUtils.isEmpty(viewTitle), "View title text was empty");
+ this.viewTitle = viewTitle;
+ }
+
+ public String getFailureMessage() {
+ return "View '" + viewTitle + "' is not active";
+ }
+
+ public boolean test() throws Exception {
+ try {
+ SWTBotView view = SWTBotFactory.getBot().viewByTitle(viewTitle);
+ return view.isActive();
+ } catch (WidgetNotFoundException e) {
+ }
+ return false;
+ }
+
+ @Override
+ public void init(SWTBot bot) {
+ }
+}
12 years, 6 months
JBoss Tools SVN: r42195 - in trunk/esb/tests: org.jboss.tools.esb.ui.bot.test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-06-25 10:09:33 -0400 (Mon, 25 Jun 2012)
New Revision: 42195
Removed:
trunk/esb/tests/org.jboss.tools.esb.project.core.test/requirements.properties
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/requirements.properties
Modified:
trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml
Log:
JBIDE-11714:
* Get ESB runtimes using maven-download-plugin
Modified: trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2012-06-24 23:51:14 UTC (rev 42194)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2012-06-25 14:09:33 UTC (rev 42195)
@@ -13,7 +13,7 @@
<packaging>eclipse-test-plugin</packaging>
<properties>
- <systemProperties>-Djbosstools.test.jboss.home.4.2=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.1=${requirement.build.root}/jboss-5.1.0.GA -Djbosstools.test.soap.home.4.3=${requirement.build.root}/jboss-soa-p.4.3.0/jboss-soa-p.4.3.0/ -Djbosstools.test.soap.home.5.0=${requirement.build.root}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/</systemProperties>
+ <systemProperties>-Djbosstools.test.jboss.home.4.2=${requirementsDirectory}/jboss-soa-p.4.3.0/jboss-as -Djbosstools.test.jboss.home.5.0=${requirementsDirectory}/jboss-soa-p.5.0.0/jboss-as -Djbosstools.test.jboss.home.5.1=${requirementsDirectory}/jboss-5.1.0.GA -Djbosstools.test.soap.home.4.3=${requirementsDirectory}/jboss-soa-p.4.3.0/jboss-soa-p.4.3.0/ -Djbosstools.test.soap.home.5.0=${requirementsDirectory}/jboss-soa-p.5.0.0/jboss-soa-p.5.0.0/</systemProperties>
<coverage.filter>org.jboss.tools.esb.core*</coverage.filter>
<emma.instrument.bundles>org.jboss.tools.esb.project.core</emma.instrument.bundles>
</properties>
@@ -21,6 +21,48 @@
<build>
<plugins>
<plugin>
+ <groupId>com.googlecode.maven-download-plugin</groupId>
+ <artifactId>maven-download-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>install-as-5.1.0</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+ <url>http://repository.jboss.org/sourceforge/jboss-5.1.0.GA.zip</url>
+ <md5>78322c75ca0c13002a04418b4a8bc920</md5>
+ <unpack>true</unpack>
+ </configuration>
+ </execution>
+ <execution>
+ <id>install-soa-p-4.3</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+ <url>http://download.devel.redhat.com/released/JBossSOAP/4.3.0/CP05/soa-4.3.0....</url>
+ <md5>91ce2b24015178cda02878d0abe38ac7</md5>
+ <unpack>true</unpack>
+ </configuration>
+ </execution>
+ <execution>
+ <id>install-soa-p-5.0</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+ <url>http://download.devel.redhat.com/released/JBossSOAP/5.0.1/soa-5.0.1.GA-si...</url>
+ <md5>b9088f7884c7464419623c596dafe25f</md5>
+ <unpack>true</unpack>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
Deleted: trunk/esb/tests/org.jboss.tools.esb.project.core.test/requirements.properties
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/requirements.properties 2012-06-24 23:51:14 UTC (rev 42194)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/requirements.properties 2012-06-25 14:09:33 UTC (rev 42195)
@@ -1 +0,0 @@
-requirements=soap,jbossas
\ No newline at end of file
Modified: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml 2012-06-24 23:51:14 UTC (rev 42194)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml 2012-06-25 14:09:33 UTC (rev 42195)
@@ -12,8 +12,8 @@
<packaging>eclipse-test-plugin</packaging>
<properties>
- <jbosstools.test.jbossesb.home>${requirement.build.root}/jbossesb-4.11</jbosstools.test.jbossesb.home>
- <jbosstools.test.jbosssoa.home>${requirement.build.root}/jboss-soa-p-5.3/jboss-soa-p-5/jboss-as</jbosstools.test.jbosssoa.home>
+ <jbosstools.test.jbossesb.home>${requirementsDirectory}/jbossesb-4.11</jbosstools.test.jbossesb.home>
+ <jbosstools.test.jbosssoa.home>${requirementsDirectory}/jboss-soa-p-5.3/jboss-soa-p-5/jboss-as</jbosstools.test.jbosssoa.home>
<swtbot.test.properties.file>./org.jboss.tools.esb.ui.bot.test.properties</swtbot.test.properties.file>
<systemProperties>-Djbosstools.test.jbossesb.home=${jbosstools.test.jbossesb.home} -Djbosstools.test.jbosssoa.home=${jbosstools.test.jbosssoa.home} -Dswtbot.test.properties.file=${swtbot.test.properties.file}
</systemProperties>
@@ -22,6 +22,36 @@
<build>
<plugins>
<plugin>
+ <groupId>com.googlecode.maven-download-plugin</groupId>
+ <artifactId>maven-download-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>install-soa-platform</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+ <url>http://jawa05.englab.brq.redhat.com/candidate/soa-5.3.0.ER2/soa-p-5.3.0.E...</url>
+ <md5>1f70c15b26a0d812ba2a39a96c6a8c57</md5>
+ <unpack>true</unpack>
+ </configuration>
+ </execution>
+ <execution>
+ <id>install-esb</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>wget</goal>
+ </goals>
+ <configuration>
+ <url>http://download.jboss.org/jbossesb/4.11/binary/jbossesb-4.11.zip</url>
+ <md5>506bb7f42777cf0e524ccc37336aa137</md5>
+ <unpack>true</unpack>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
Deleted: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/requirements.properties
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/requirements.properties 2012-06-24 23:51:14 UTC (rev 42194)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/requirements.properties 2012-06-25 14:09:33 UTC (rev 42195)
@@ -1 +0,0 @@
-requirements=jbossesb-4.11,soap
12 years, 6 months
JBoss Tools SVN: r42194 - branches/jbosstools-3.3.x/maven/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-06-24 19:51:14 -0400 (Sun, 24 Jun 2012)
New Revision: 42194
Modified:
branches/jbosstools-3.3.x/maven/docs/reference/en-US/Book_Info.xml
branches/jbosstools-3.3.x/maven/docs/reference/en-US/creating_a_maven_module.xml
branches/jbosstools-3.3.x/maven/docs/reference/en-US/creating_a_maven_project.xml
Log:
updated from trunk
Modified: branches/jbosstools-3.3.x/maven/docs/reference/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.3.x/maven/docs/reference/en-US/Book_Info.xml 2012-06-24 23:50:45 UTC (rev 42193)
+++ branches/jbosstools-3.3.x/maven/docs/reference/en-US/Book_Info.xml 2012-06-24 23:51:14 UTC (rev 42194)
@@ -13,7 +13,7 @@
<edition>5.0.0</edition>
- <pubsnumber>4</pubsnumber>
+ <pubsnumber>5</pubsnumber>
<abstract>
<para>
Modified: branches/jbosstools-3.3.x/maven/docs/reference/en-US/creating_a_maven_module.xml
===================================================================
--- branches/jbosstools-3.3.x/maven/docs/reference/en-US/creating_a_maven_module.xml 2012-06-24 23:50:45 UTC (rev 42193)
+++ branches/jbosstools-3.3.x/maven/docs/reference/en-US/creating_a_maven_module.xml 2012-06-24 23:51:14 UTC (rev 42194)
@@ -4,7 +4,7 @@
A Maven module is a sub-project. To create a Maven module you will need to already have a Maven project available.
</para>
<para>
- The parent project must have its <guilabel>Packaging</guilabel> option be pre-configured to <guimenuitem>pom</guimenuitem>, for a module to be created and associated with it. To ensure your parent project has this option set correctly before proceeding, double-click on the <filename>pom.xml</filename> file of your parent project in the <guilabel>Project Explorer</guilabel>.
+ The parent project must have its <guilabel>Packaging</guilabel> option pre-configured to <guimenuitem>pom</guimenuitem>, for a module to be created and associated with it. To ensure your parent project has this option set correctly before proceeding, double-click on the <filename>pom.xml</filename> file of your parent project in the <guilabel>Project Explorer</guilabel>.
</para>
<para>
In the <guilabel>Overview</guilabel> settings page that is now displayed in your workbench, confirm that the option <guibutton>Packaging</guibutton> is set to <guimenuitem>pom</guimenuitem>. If it is not, select <guimenuitem>pom</guimenuitem> from the list menu and save the changes to your <filename>pom.xml</filename> file.
Modified: branches/jbosstools-3.3.x/maven/docs/reference/en-US/creating_a_maven_project.xml
===================================================================
--- branches/jbosstools-3.3.x/maven/docs/reference/en-US/creating_a_maven_project.xml 2012-06-24 23:50:45 UTC (rev 42193)
+++ branches/jbosstools-3.3.x/maven/docs/reference/en-US/creating_a_maven_project.xml 2012-06-24 23:51:14 UTC (rev 42194)
@@ -17,7 +17,7 @@
</mediaobject>
</figure>
<para>
- The first screen of the wizard will ask you if you wish to create a simple project (selecting this will skip the ability to select an arhetype), to select a location for the project and if any projects should be added to the working set.
+ The first screen of the wizard will ask you if you wish to create a simple project (selecting this will skip the ability to select an archetype), to select a location for the project and if any projects should be added to the working set.
</para>
<figure id="application_creation_02">
<title>Maven project location and basic settings</title>
12 years, 6 months
JBoss Tools SVN: r42193 - in trunk/maven/docs/reference: en-US and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-06-24 19:50:45 -0400 (Sun, 24 Jun 2012)
New Revision: 42193
Modified:
trunk/maven/docs/reference/en-US/Book_Info.xml
trunk/maven/docs/reference/en-US/creating_a_maven_module.xml
trunk/maven/docs/reference/en-US/creating_a_maven_project.xml
trunk/maven/docs/reference/pom.xml
Log:
updated based on QE review
Modified: trunk/maven/docs/reference/en-US/Book_Info.xml
===================================================================
--- trunk/maven/docs/reference/en-US/Book_Info.xml 2012-06-24 23:07:17 UTC (rev 42192)
+++ trunk/maven/docs/reference/en-US/Book_Info.xml 2012-06-24 23:50:45 UTC (rev 42193)
@@ -13,7 +13,7 @@
<edition>5.0.0</edition>
- <pubsnumber>4</pubsnumber>
+ <pubsnumber>5</pubsnumber>
<abstract>
<para>
Modified: trunk/maven/docs/reference/en-US/creating_a_maven_module.xml
===================================================================
--- trunk/maven/docs/reference/en-US/creating_a_maven_module.xml 2012-06-24 23:07:17 UTC (rev 42192)
+++ trunk/maven/docs/reference/en-US/creating_a_maven_module.xml 2012-06-24 23:50:45 UTC (rev 42193)
@@ -4,7 +4,7 @@
A Maven module is a sub-project. To create a Maven module you will need to already have a Maven project available.
</para>
<para>
- The parent project must have its <guilabel>Packaging</guilabel> option be pre-configured to <guimenuitem>pom</guimenuitem>, for a module to be created and associated with it. To ensure your parent project has this option set correctly before proceeding, double-click on the <filename>pom.xml</filename> file of your parent project in the <guilabel>Project Explorer</guilabel>.
+ The parent project must have its <guilabel>Packaging</guilabel> option pre-configured to <guimenuitem>pom</guimenuitem>, for a module to be created and associated with it. To ensure your parent project has this option set correctly before proceeding, double-click on the <filename>pom.xml</filename> file of your parent project in the <guilabel>Project Explorer</guilabel>.
</para>
<para>
In the <guilabel>Overview</guilabel> settings page that is now displayed in your workbench, confirm that the option <guibutton>Packaging</guibutton> is set to <guimenuitem>pom</guimenuitem>. If it is not, select <guimenuitem>pom</guimenuitem> from the list menu and save the changes to your <filename>pom.xml</filename> file.
Modified: trunk/maven/docs/reference/en-US/creating_a_maven_project.xml
===================================================================
--- trunk/maven/docs/reference/en-US/creating_a_maven_project.xml 2012-06-24 23:07:17 UTC (rev 42192)
+++ trunk/maven/docs/reference/en-US/creating_a_maven_project.xml 2012-06-24 23:50:45 UTC (rev 42193)
@@ -17,7 +17,7 @@
</mediaobject>
</figure>
<para>
- The first screen of the wizard will ask you if you wish to create a simple project (selecting this will skip the ability to select an arhetype), to select a location for the project and if any projects should be added to the working set.
+ The first screen of the wizard will ask you if you wish to create a simple project (selecting this will skip the ability to select an archetype), to select a location for the project and if any projects should be added to the working set.
</para>
<figure id="application_creation_02">
<title>Maven project location and basic settings</title>
Modified: trunk/maven/docs/reference/pom.xml
===================================================================
--- trunk/maven/docs/reference/pom.xml 2012-06-24 23:07:17 UTC (rev 42192)
+++ trunk/maven/docs/reference/pom.xml 2012-06-24 23:50:45 UTC (rev 42193)
@@ -11,7 +11,7 @@
<properties>
<translation>en-US</translation>
<docname>Maven_Tools_Reference_Guide</docname>
- <bookname>Maven_Tools_Reference_Guide</bookname>
+ <bookname>Maven Tools Reference Guide</bookname>
</properties>
<profiles>
12 years, 6 months
JBoss Tools SVN: r42192 - branches/jbosstools-3.3.x/documentation/guides/Beginners_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-06-24 19:07:17 -0400 (Sun, 24 Jun 2012)
New Revision: 42192
Modified:
branches/jbosstools-3.3.x/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
Log:
updated from trunk
Modified: branches/jbosstools-3.3.x/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
===================================================================
--- branches/jbosstools-3.3.x/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2012-06-24 23:06:14 UTC (rev 42191)
+++ branches/jbosstools-3.3.x/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2012-06-24 23:07:17 UTC (rev 42192)
@@ -9,7 +9,7 @@
<productname>JBoss Developer Studio</productname>
- <productnumber>5.0.Beta</productnumber>
+ <productnumber>5.0</productnumber>
<edition>5.0.0</edition>
12 years, 6 months
JBoss Tools SVN: r42191 - trunk/documentation/guides/Beginners_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-06-24 19:06:14 -0400 (Sun, 24 Jun 2012)
New Revision: 42191
Modified:
trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
Log:
updated to be for GA and not Beta
Modified: trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
===================================================================
--- trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2012-06-24 23:01:37 UTC (rev 42190)
+++ trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2012-06-24 23:06:14 UTC (rev 42191)
@@ -9,7 +9,7 @@
<productname>JBoss Developer Studio</productname>
- <productnumber>5.0.Beta</productnumber>
+ <productnumber>5.0</productnumber>
<edition>5.0.0</edition>
12 years, 6 months
JBoss Tools SVN: r42190 - branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-06-24 19:01:37 -0400 (Sun, 24 Jun 2012)
New Revision: 42190
Modified:
branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml
branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
Log:
updated with files from trunk
Modified: branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
===================================================================
--- branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2012-06-24 23:01:09 UTC (rev 42189)
+++ branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2012-06-24 23:01:37 UTC (rev 42190)
@@ -8,7 +8,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>5.0</productnumber>
<edition>5.0.0</edition>
- <pubsnumber>15</pubsnumber>
+ <pubsnumber>16</pubsnumber>
<abstract>
<para>
These release notes contain important information related to the JBoss Developer Studio. New features, known issues, resources, and other current issues are addressed here.
Modified: branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml
===================================================================
--- branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml 2012-06-24 23:01:09 UTC (rev 42189)
+++ branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml 2012-06-24 23:01:37 UTC (rev 42190)
@@ -39,7 +39,7 @@
</term>
<listitem>
<para>
- When delpoying a project as an exploded archive the publishing process can be slow. It is recommended that users deploy projects as compressed archives. This can be enbled by double-clicking the server in the Servers view, navigating to the Deployment page and clicking the checkbox beside the option to Deploy projects as compressed archives.
+ When deploying a project as an exploded archive to a remote server, the publishing process can be slow. It is recommended that users deploy projects as compressed archives to remote servers. This can be enbled by double-clicking the server in the Servers view, navigating to the Deployment page and clicking the checkbox beside the option to Deploy projects as compressed archives.
</para>
</listitem>
</varlistentry>
Modified: branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
===================================================================
--- branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2012-06-24 23:01:09 UTC (rev 42189)
+++ branches/jbosstools-3.3.x/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2012-06-24 23:01:37 UTC (rev 42190)
@@ -2,7 +2,7 @@
<section id="Overview">
<title>Overview</title>
<para>
- JBoss Developer Studio 5.0 is a major release of the Eclipse based IDE developed and supported by Red Hat (the visual tooling components are supported for 3 years, and the runtime platform for 5 years). The IDE, which is available for Windows, Linux and OS X, provides tooling that allows for rapid Web 2.0 application development on the JBoss Enterprise Application Platform. This release also improves support for SOA application development with the JBoss Enterprise SOA Platform.
+ JBoss Developer Studio 5.0 is a major release of the Eclipse based IDE developed and supported by Red Hat (the visual tooling components are supported for 3 years, and the runtime platform for 5 years). The IDE, which is available for Windows, Linux and OS X, provides tooling that allows for rapid Web 2.0 application development on the JBoss Enterprise Application Platform. <!-- This release also improves support for SOA application development with the JBoss Enterprise SOA Platform.-->
</para>
<para>
JBoss Developer Studio 5.0 contains many new features, including:
12 years, 6 months
JBoss Tools SVN: r42189 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-06-24 19:01:09 -0400 (Sun, 24 Jun 2012)
New Revision: 42189
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
Log:
updated to fixed known issue text and remove SOA wording
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2012-06-24 22:24:30 UTC (rev 42188)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2012-06-24 23:01:09 UTC (rev 42189)
@@ -8,7 +8,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>5.0</productnumber>
<edition>5.0.0</edition>
- <pubsnumber>15</pubsnumber>
+ <pubsnumber>16</pubsnumber>
<abstract>
<para>
These release notes contain important information related to the JBoss Developer Studio. New features, known issues, resources, and other current issues are addressed here.
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml 2012-06-24 22:24:30 UTC (rev 42188)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Known_Issues.xml 2012-06-24 23:01:09 UTC (rev 42189)
@@ -39,7 +39,7 @@
</term>
<listitem>
<para>
- When delpoying a project as an exploded archive the publishing process can be slow. It is recommended that users deploy projects as compressed archives. This can be enbled by double-clicking the server in the Servers view, navigating to the Deployment page and clicking the checkbox beside the option to Deploy projects as compressed archives.
+ When deploying a project as an exploded archive to a remote server, the publishing process can be slow. It is recommended that users deploy projects as compressed archives to remote servers. This can be enbled by double-clicking the server in the Servers view, navigating to the Deployment page and clicking the checkbox beside the option to Deploy projects as compressed archives.
</para>
</listitem>
</varlistentry>
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2012-06-24 22:24:30 UTC (rev 42188)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2012-06-24 23:01:09 UTC (rev 42189)
@@ -2,7 +2,7 @@
<section id="Overview">
<title>Overview</title>
<para>
- JBoss Developer Studio 5.0 is a major release of the Eclipse based IDE developed and supported by Red Hat (the visual tooling components are supported for 3 years, and the runtime platform for 5 years). The IDE, which is available for Windows, Linux and OS X, provides tooling that allows for rapid Web 2.0 application development on the JBoss Enterprise Application Platform. This release also improves support for SOA application development with the JBoss Enterprise SOA Platform.
+ JBoss Developer Studio 5.0 is a major release of the Eclipse based IDE developed and supported by Red Hat (the visual tooling components are supported for 3 years, and the runtime platform for 5 years). The IDE, which is available for Windows, Linux and OS X, provides tooling that allows for rapid Web 2.0 application development on the JBoss Enterprise Application Platform. <!-- This release also improves support for SOA application development with the JBoss Enterprise SOA Platform.-->
</para>
<para>
JBoss Developer Studio 5.0 contains many new features, including:
12 years, 6 months
JBoss Tools SVN: r42188 - trunk/documentation/guides/Beginners_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-06-24 18:24:30 -0400 (Sun, 24 Jun 2012)
New Revision: 42188
Modified:
trunk/documentation/guides/Beginners_Guide/en-US/Beginners_Guide.xml
trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
trunk/documentation/guides/Beginners_Guide/en-US/Workshops.xml
Log:
updated to remove SOA references
Modified: trunk/documentation/guides/Beginners_Guide/en-US/Beginners_Guide.xml
===================================================================
--- trunk/documentation/guides/Beginners_Guide/en-US/Beginners_Guide.xml 2012-06-24 22:24:13 UTC (rev 42187)
+++ trunk/documentation/guides/Beginners_Guide/en-US/Beginners_Guide.xml 2012-06-24 22:24:30 UTC (rev 42188)
@@ -7,7 +7,7 @@
<xi:include href="Introduction.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="The_interface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Java_Web_(EE)_and_Standard_Edition_(SE).xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
- <xi:include href="Service-Oriented_Architecture_Development.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
+ <!-- <xi:include href="Service-Oriented_Architecture_Development.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> -->
<xi:include href="Workshops.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Where_to_go_from_here.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
Modified: trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
===================================================================
--- trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2012-06-24 22:24:13 UTC (rev 42187)
+++ trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2012-06-24 22:24:30 UTC (rev 42188)
@@ -13,7 +13,7 @@
<edition>5.0.0</edition>
- <pubsnumber>1</pubsnumber>
+ <pubsnumber>2</pubsnumber>
<abstract>
<para>
Modified: trunk/documentation/guides/Beginners_Guide/en-US/Workshops.xml
===================================================================
--- trunk/documentation/guides/Beginners_Guide/en-US/Workshops.xml 2012-06-24 22:24:13 UTC (rev 42187)
+++ trunk/documentation/guides/Beginners_Guide/en-US/Workshops.xml 2012-06-24 22:24:30 UTC (rev 42188)
@@ -17,12 +17,12 @@
<itemizedlist>
<listitem>
<para>
- <application>JBoss Developer Studio 4.0</application>
+ <application>JBoss Developer Studio 5.0</application>
</para>
</listitem>
<listitem>
<para>
- <application>JBoss Enterprise Application Platform 5</application> or <application>JBoss Service Orientated Architecture Platform 5</application>
+ <application>JBoss Enterprise Application Platform 6</application> or <application>JBoss Service Orientated Architecture Platform 6</application>
</para>
</listitem>
<listitem>
@@ -376,7 +376,7 @@
<section id="sect-Beginners_Guide-Workshops-Seam">
<title>Seam</title>
<para>
- The <application>JBoss Enterprise Application Platform </application> book titled the <emphasis>Seam Reference Guide</emphasis> contains an example of how to setup Seam for use with <application>JBoss Developer Studio</application>. This workshop can be found here: <ulink url="http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/5...">Getting Started with Seam, using JBoss Tools</ulink>.
+ The <application>JBoss Enterprise Application Platform </application> book titled the <emphasis>Seam Reference Guide</emphasis> contains an example of how to setup Seam for use with <application>JBoss Developer Studio</application>. <!--This workshop can be found here: <ulink url="http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/5...">Getting Started with Seam, using JBoss Tools</ulink>. -->
</para>
</section>
</chapter>
12 years, 6 months