JBoss Tools SVN: r43998 - trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-09-25 10:33:58 -0400 (Tue, 25 Sep 2012)
New Revision: 43998
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java
Log:
corrected missing space btw. <username> and "via SSH key management"
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java 2012-09-25 14:33:47 UTC (rev 43997)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java 2012-09-25 14:33:58 UTC (rev 43998)
@@ -287,10 +287,10 @@
if (wizardModel.hasUser()) {
sshLink.setText("Make sure that you have SSH keys added to your OpenShift account "
+ wizardModel.getUser().getUsername()
- + "via <a>SSH Keys wizard</a> and that the private keys are listed in <a>SSH2 Preferences</a>");
+ + " via <a>SSH Keys wizard</a> and that the private keys are listed in <a>SSH2 Preferences</a>");
} else {
- sshLink.setText("Make sure that you have SSH keys added to your OpenShift account "
- + "via <a>SSH Keys wizard</a> and that the private keys are listed in <a>SSH2 Preferences</a>");
+ sshLink.setText("Make sure that you have SSH keys added to your OpenShift account"
+ + " via <a>SSH Keys wizard</a> and that the private keys are listed in <a>SSH2 Preferences</a>");
}
sshLink.getParent().layout(true, true);
}
13 years, 6 months
JBoss Tools SVN: r43997 - branches/jbosstools-4.0.0.Alpha2/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-09-25 10:33:47 -0400 (Tue, 25 Sep 2012)
New Revision: 43997
Modified:
branches/jbosstools-4.0.0.Alpha2/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java
Log:
corrected missing space btw. <username> and "via SSH key management"
Modified: branches/jbosstools-4.0.0.Alpha2/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java
===================================================================
--- branches/jbosstools-4.0.0.Alpha2/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java 2012-09-25 14:04:59 UTC (rev 43996)
+++ branches/jbosstools-4.0.0.Alpha2/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java 2012-09-25 14:33:47 UTC (rev 43997)
@@ -287,10 +287,10 @@
if (wizardModel.hasUser()) {
sshLink.setText("Make sure that you have SSH keys added to your OpenShift account "
+ wizardModel.getUser().getUsername()
- + "via <a>SSH Keys wizard</a> and that the private keys are listed in <a>SSH2 Preferences</a>");
+ + " via <a>SSH Keys wizard</a> and that the private keys are listed in <a>SSH2 Preferences</a>");
} else {
- sshLink.setText("Make sure that you have SSH keys added to your OpenShift account "
- + "via <a>SSH Keys wizard</a> and that the private keys are listed in <a>SSH2 Preferences</a>");
+ sshLink.setText("Make sure that you have SSH keys added to your OpenShift account"
+ + " via <a>SSH Keys wizard</a> and that the private keys are listed in <a>SSH2 Preferences</a>");
}
sshLink.getParent().layout(true, true);
}
13 years, 6 months
JBoss Tools SVN: r43996 - trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-09-25 10:04:59 -0400 (Tue, 25 Sep 2012)
New Revision: 43996
Modified:
trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/JBossCentralActivator.java
Log:
JBIDE-12598 - Central does not open when the Welcome page is active
Modified: trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/JBossCentralActivator.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/JBossCentralActivator.java 2012-09-25 14:03:04 UTC (rev 43995)
+++ trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/JBossCentralActivator.java 2012-09-25 14:04:59 UTC (rev 43996)
@@ -25,21 +25,18 @@
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.resource.ImageRegistry;
-import org.eclipse.jface.util.IPropertyChangeListener;
-import org.eclipse.jface.util.PropertyChangeEvent;
import org.eclipse.swt.SWT;
import org.eclipse.swt.browser.Browser;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorPart;
-import org.eclipse.ui.IViewReference;
import org.eclipse.ui.IWorkbenchPage;
+import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.browser.IWebBrowser;
import org.eclipse.ui.browser.IWorkbenchBrowserSupport;
-import org.eclipse.ui.internal.WorkbenchWindow;
import org.eclipse.ui.internal.browser.WebBrowserPreference;
import org.eclipse.ui.internal.browser.WorkbenchBrowserSupport;
import org.eclipse.ui.menus.CommandContributionItem;
@@ -281,7 +278,7 @@
}
public static JBossCentralEditor getJBossCentralEditor() {
- final WorkbenchWindow window = (WorkbenchWindow) PlatformUI
+ final IWorkbenchWindow window = PlatformUI
.getWorkbench().getActiveWorkbenchWindow();
final IWorkbenchPage page = window.getActivePage();
// if (page.findView(ORG_ECLIPSE_UI_INTERNAL_INTROVIEW) != null
13 years, 6 months
JBoss Tools SVN: r43995 - trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-09-25 10:03:04 -0400 (Tue, 25 Sep 2012)
New Revision: 43995
Modified:
trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/JBossCentralActivator.java
Log:
JBIDE-12598 - Central does not open when the Welcome page is active
Modified: trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/JBossCentralActivator.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/JBossCentralActivator.java 2012-09-25 13:51:52 UTC (rev 43994)
+++ trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/JBossCentralActivator.java 2012-09-25 14:03:04 UTC (rev 43995)
@@ -284,37 +284,37 @@
final WorkbenchWindow window = (WorkbenchWindow) PlatformUI
.getWorkbench().getActiveWorkbenchWindow();
final IWorkbenchPage page = window.getActivePage();
- if (page.findView(ORG_ECLIPSE_UI_INTERNAL_INTROVIEW) != null
- && !window.getCoolBarVisible()
- && !window.getPerspectiveBarVisible()) {
- IViewReference viewRef = page
- .findViewReference(ORG_ECLIPSE_UI_INTERNAL_INTROVIEW);
- if (page.getPartState(viewRef) == IWorkbenchPage.STATE_MAXIMIZED) {
- window.addPropertyChangeListener(new IPropertyChangeListener() {
-
- @Override
- public void propertyChange(PropertyChangeEvent event) {
- String property = event.getProperty();
- if (WorkbenchWindow.PROP_COOLBAR_VISIBLE
- .equals(property)
- || WorkbenchWindow.PROP_COOLBAR_VISIBLE
- .equals(property)) {
- Object newValue = event.getNewValue();
- if (newValue instanceof Boolean
- && ((Boolean) newValue).booleanValue()) {
- openJBossCentralEditor(page);
- window.removePropertyChangeListener(this);
- }
- }
- }
- });
- } else {
- return openJBossCentralEditor(page);
- }
- } else {
- return openJBossCentralEditor(page);
- }
- return null;
+// if (page.findView(ORG_ECLIPSE_UI_INTERNAL_INTROVIEW) != null
+// && !window.getCoolBarVisible()
+// && !window.getPerspectiveBarVisible()) {
+// IViewReference viewRef = page
+// .findViewReference(ORG_ECLIPSE_UI_INTERNAL_INTROVIEW);
+// if (page.getPartState(viewRef) == IWorkbenchPage.STATE_MAXIMIZED) {
+// window.addPropertyChangeListener(new IPropertyChangeListener() {
+//
+// @Override
+// public void propertyChange(PropertyChangeEvent event) {
+// String property = event.getProperty();
+// if (WorkbenchWindow.PROP_COOLBAR_VISIBLE
+// .equals(property)
+// || WorkbenchWindow.PROP_COOLBAR_VISIBLE
+// .equals(property)) {
+// Object newValue = event.getNewValue();
+// if (newValue instanceof Boolean
+// && ((Boolean) newValue).booleanValue()) {
+// openJBossCentralEditor(page);
+// window.removePropertyChangeListener(this);
+// }
+// }
+// }
+// });
+// } else {
+// return openJBossCentralEditor(page);
+// }
+// } else {
+// return openJBossCentralEditor(page);
+// }
+ return openJBossCentralEditor(page);
}
protected static JBossCentralEditor openJBossCentralEditor(
13 years, 6 months
JBoss Tools SVN: r43994 - trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test.
by jbosstools-commits@lists.jboss.org
Author: ljelinko
Date: 2012-09-25 09:51:52 -0400 (Tue, 25 Sep 2012)
New Revision: 43994
Modified:
trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java
Log:
Added additional tests to stable suite
Modified: trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java 2012-09-25 13:37:29 UTC (rev 43993)
+++ trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java 2012-09-25 13:51:52 UTC (rev 43994)
@@ -6,6 +6,12 @@
import org.jboss.tools.portlet.ui.bot.test.core.HotJavaPortletDeploymentGatein;
import org.jboss.tools.portlet.ui.bot.test.core.LoadJavaPortletInBrowserJBPortal;
import org.jboss.tools.portlet.ui.bot.test.core.RunJavaPortletOnServer;
+import org.jboss.tools.portlet.ui.bot.test.jsf.CreateJSFPortletGatein;
+import org.jboss.tools.portlet.ui.bot.test.jsf.CreateJSFPortletJBPortal;
+import org.jboss.tools.portlet.ui.bot.test.jsf.CreateJSFPortletProject;
+import org.jboss.tools.portlet.ui.bot.test.jsf.HotJSFPortletDeploymentGatein;
+import org.jboss.tools.portlet.ui.bot.test.jsf.LoadJSFPortletInBrowserJBPortal;
+import org.jboss.tools.portlet.ui.bot.test.jsf.RunJSFPortletOnServer;
import org.jboss.tools.ui.bot.ext.RequirementAwareSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@@ -17,7 +23,13 @@
CreateJavaPortletGatein.class,
RunJavaPortletOnServer.class,
LoadJavaPortletInBrowserJBPortal.class,
- HotJavaPortletDeploymentGatein.class
+ HotJavaPortletDeploymentGatein.class,
+ CreateJSFPortletProject.class,
+ CreateJSFPortletJBPortal.class,
+ CreateJSFPortletGatein.class,
+ RunJSFPortletOnServer.class,
+ LoadJSFPortletInBrowserJBPortal.class,
+ HotJSFPortletDeploymentGatein.class
})
public class StableTestsSuite {
13 years, 6 months
JBoss Tools SVN: r43993 - trunk/central/plugins/org.jboss.tools.central.themes.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-09-25 09:37:29 -0400 (Tue, 25 Sep 2012)
New Revision: 43993
Modified:
trunk/central/plugins/org.jboss.tools.central.themes/plugin.xml
Log:
Fix theme labels
Modified: trunk/central/plugins/org.jboss.tools.central.themes/plugin.xml
===================================================================
--- trunk/central/plugins/org.jboss.tools.central.themes/plugin.xml 2012-09-25 13:15:35 UTC (rev 43992)
+++ trunk/central/plugins/org.jboss.tools.central.themes/plugin.xml 2012-09-25 13:37:29 UTC (rev 43993)
@@ -6,13 +6,13 @@
<theme
basestylesheeturi="css/jbt.css"
id="org.jboss.tools.central.themes.jbds"
- label="JBoss Tools & Developer Studio">
+ label="JBoss Tools - Red">
</theme>
<theme
basestylesheeturi="css/jboss.css"
id="org.jboss.tools.central.themes.community"
- label="JBoss Community Theme">
+ label="JBoss Tools - Blue">
</theme>
</extension>
-</plugin>
\ No newline at end of file
+</plugin>
13 years, 6 months
JBoss Tools SVN: r43992 - trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences.
by jbosstools-commits@lists.jboss.org
Author: ljelinko
Date: 2012-09-25 09:15:35 -0400 (Tue, 25 Sep 2012)
New Revision: 43992
Modified:
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/PreferencesDialog.java
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/RuntimeDetectionPreferencesDialog.java
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SearchingForRuntimesDialog.java
Log:
Fixed issues with Preferences not closing
Modified: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/PreferencesDialog.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/PreferencesDialog.java 2012-09-25 13:13:22 UTC (rev 43991)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/PreferencesDialog.java 2012-09-25 13:15:35 UTC (rev 43992)
@@ -1,8 +1,10 @@
package org.jboss.tools.runtime.as.ui.bot.test.dialog.preferences;
import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
import org.jboss.tools.ui.bot.ext.SWTBotExt;
import org.jboss.tools.ui.bot.ext.SWTBotFactory;
+import org.jboss.tools.ui.bot.ext.condition.NonSystemJobRunsCondition;
import org.jboss.tools.ui.bot.ext.gen.ActionItem.Preference;
import org.jboss.tools.ui.bot.ext.gen.IPreference;
@@ -21,6 +23,9 @@
}
public void ok(){
+ SWTBotShell preferencesShell = SWTBotFactory.getBot().shell("Preferences");
+ preferencesShell.activate();
+ SWTBotFactory.getBot().waitWhile(new NonSystemJobRunsCondition());
SWTBotFactory.getBot().button("OK").click();
}
}
Modified: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/RuntimeDetectionPreferencesDialog.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/RuntimeDetectionPreferencesDialog.java 2012-09-25 13:13:22 UTC (rev 43991)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/RuntimeDetectionPreferencesDialog.java 2012-09-25 13:15:35 UTC (rev 43992)
@@ -1,9 +1,9 @@
package org.jboss.tools.runtime.as.ui.bot.test.dialog.preferences;
+import static org.eclipse.swtbot.swt.finder.waits.Conditions.tableHasRows;
+
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
-import org.eclipse.swtbot.swt.finder.finders.UIThreadRunnable;
-import org.eclipse.swtbot.swt.finder.results.VoidResult;
import org.eclipse.swtbot.swt.finder.waits.ICondition;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTable;
import org.jboss.tools.runtime.core.model.RuntimePath;
@@ -39,6 +39,7 @@
table.click(0, 0);
bot.button("Remove").click();
}
+ bot.waitUntil(tableHasRows(table, 0), TaskDuration.NORMAL.getTimeout());
}
public SearchingForRuntimesDialog search(){
Modified: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SearchingForRuntimesDialog.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SearchingForRuntimesDialog.java 2012-09-25 13:13:22 UTC (rev 43991)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SearchingForRuntimesDialog.java 2012-09-25 13:15:35 UTC (rev 43992)
@@ -1,8 +1,11 @@
package org.jboss.tools.runtime.as.ui.bot.test.dialog.preferences;
+import static org.eclipse.swtbot.swt.finder.waits.Conditions.shellCloses;
+
import java.util.ArrayList;
import java.util.List;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotShell;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree;
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
import org.jboss.tools.runtime.as.ui.bot.test.entity.Runtime;
@@ -26,7 +29,9 @@
}
public void ok(){
+ SWTBotShell shell = SWTBotFactory.getBot().activeShell();
SWTBotFactory.getBot().button("OK").click();
+ SWTBotFactory.getBot().waitUntil(shellCloses(shell));
}
public void cancel(){
13 years, 6 months
JBoss Tools SVN: r43991 - in trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test: src/org/jboss/tools/portlet/ui/bot/test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: ljelinko
Date: 2012-09-25 09:13:22 -0400 (Tue, 25 Sep 2012)
New Revision: 43991
Added:
trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/launchers/StableTestsSuite.launch
trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java
Log:
Created stable test suite
Added: trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/launchers/StableTestsSuite.launch
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/launchers/StableTestsSuite.launch (rev 0)
+++ trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/launchers/StableTestsSuite.launch 2012-09-25 13:13:22 UTC (rev 43991)
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.eclipse.swtbot.eclipse.ui.launcher.JunitLaunchConfig">
+<booleanAttribute key="append.args" value="true"/>
+<booleanAttribute key="askclear" value="false"/>
+<booleanAttribute key="automaticAdd" value="true"/>
+<booleanAttribute key="automaticValidate" value="false"/>
+<stringAttribute key="bootstrap" value=""/>
+<stringAttribute key="checked" value="[NONE]"/>
+<booleanAttribute key="clearConfig" value="true"/>
+<booleanAttribute key="clearws" value="true"/>
+<booleanAttribute key="clearwslog" value="false"/>
+<stringAttribute key="configLocation" value="${workspace_loc}/.metadata/.plugins/org.eclipse.pde.core/pde-junit"/>
+<booleanAttribute key="default" value="true"/>
+<booleanAttribute key="includeOptional" value="true"/>
+<stringAttribute key="location" value="${workspace_loc}/../junit-workspace"/>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
+<listEntry value="/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java"/>
+</listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="1"/>
+</listAttribute>
+<mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DISPLAY" value=":${string_prompt:display number:0}"/>
+</mapAttribute>
+<stringAttribute key="org.eclipse.jdt.junit.CONTAINER" value=""/>
+<booleanAttribute key="org.eclipse.jdt.junit.KEEPRUNNING_ATTR" value="false"/>
+<stringAttribute key="org.eclipse.jdt.junit.TESTNAME" value=""/>
+<stringAttribute key="org.eclipse.jdt.junit.TEST_KIND" value="org.eclipse.jdt.junit.loader.junit4"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.jboss.tools.portlet.ui.bot.test.StableTestsSuite"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl} -consoleLog"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="org.jboss.tools.portlet.ui.bot.test"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.pde.ui.workbenchClasspathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Dswtbot.test.properties.file=${file_prompt:"Please choose a SWTBot configuration file":${workspace_loc}/org.jboss.tools.portlet.ui.bot.test/resources/generated_config_files} -Xmx1024m -XX:MaxPermSize=256m"/>
+<stringAttribute key="pde.version" value="3.3"/>
+<stringAttribute key="product" value="org.eclipse.platform.ide"/>
+<booleanAttribute key="show_selected_only" value="false"/>
+<booleanAttribute key="tracing" value="false"/>
+<booleanAttribute key="useCustomFeatures" value="false"/>
+<booleanAttribute key="useDefaultConfig" value="true"/>
+<booleanAttribute key="useDefaultConfigArea" value="false"/>
+<booleanAttribute key="useProduct" value="true"/>
+</launchConfiguration>
Added: trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java (rev 0)
+++ trunk/portlet/tests/org.jboss.tools.portlet.ui.bot.test/src/org/jboss/tools/portlet/ui/bot/test/StableTestsSuite.java 2012-09-25 13:13:22 UTC (rev 43991)
@@ -0,0 +1,24 @@
+package org.jboss.tools.portlet.ui.bot.test;
+
+import org.jboss.tools.portlet.ui.bot.test.core.CreateJavaPortletGatein;
+import org.jboss.tools.portlet.ui.bot.test.core.CreateJavaPortletJBPortal;
+import org.jboss.tools.portlet.ui.bot.test.core.CreateJavaPortletProject;
+import org.jboss.tools.portlet.ui.bot.test.core.HotJavaPortletDeploymentGatein;
+import org.jboss.tools.portlet.ui.bot.test.core.LoadJavaPortletInBrowserJBPortal;
+import org.jboss.tools.portlet.ui.bot.test.core.RunJavaPortletOnServer;
+import org.jboss.tools.ui.bot.ext.RequirementAwareSuite;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+(a)RunWith(RequirementAwareSuite.class)
+(a)Suite.SuiteClasses({
+ CreateJavaPortletProject.class,
+ CreateJavaPortletJBPortal.class,
+ CreateJavaPortletGatein.class,
+ RunJavaPortletOnServer.class,
+ LoadJavaPortletInBrowserJBPortal.class,
+ HotJavaPortletDeploymentGatein.class
+ })
+public class StableTestsSuite {
+
+}
13 years, 6 months
JBoss Tools SVN: r43990 - in workspace/snjeza/org.jboss.tools.arquillian.updatesite: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-09-25 08:58:05 -0400 (Tue, 25 Sep 2012)
New Revision: 43990
Added:
workspace/snjeza/org.jboss.tools.arquillian.updatesite/features/org.jboss.tools.arquillian.feature_1.0.2.201209251457.jar
workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.core_1.0.2.201209251457.jar
workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.ui_1.0.2.201209251457.jar
Removed:
workspace/snjeza/org.jboss.tools.arquillian.updatesite/features/org.jboss.tools.arquillian.feature_1.0.2.201209241718.jar
workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.core_1.0.2.201209241718.jar
workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.ui_1.0.2.201209241718.jar
Modified:
workspace/snjeza/org.jboss.tools.arquillian.updatesite/artifacts.jar
workspace/snjeza/org.jboss.tools.arquillian.updatesite/content.jar
Log:
JBIDE-6338 - Ability to click through to resources specified as part of Shrinkwrap definition
Modified: workspace/snjeza/org.jboss.tools.arquillian.updatesite/artifacts.jar
===================================================================
(Binary files differ)
Modified: workspace/snjeza/org.jboss.tools.arquillian.updatesite/content.jar
===================================================================
(Binary files differ)
Deleted: workspace/snjeza/org.jboss.tools.arquillian.updatesite/features/org.jboss.tools.arquillian.feature_1.0.2.201209241718.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/org.jboss.tools.arquillian.updatesite/features/org.jboss.tools.arquillian.feature_1.0.2.201209251457.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.arquillian.updatesite/features/org.jboss.tools.arquillian.feature_1.0.2.201209251457.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.core_1.0.2.201209241718.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.core_1.0.2.201209251457.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.core_1.0.2.201209251457.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.ui_1.0.2.201209241718.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.ui_1.0.2.201209251457.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.jboss.tools.arquillian.updatesite/plugins/org.jboss.tools.arquillian.ui_1.0.2.201209251457.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
13 years, 6 months
JBoss Tools SVN: r43989 - trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-09-25 08:38:34 -0400 (Tue, 25 Sep 2012)
New Revision: 43989
Modified:
trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java
Log:
JBIDE-12703 - Adding the runtime detection path manually
Modified: trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java
===================================================================
--- trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java 2012-09-25 11:25:12 UTC (rev 43988)
+++ trunk/runtime/plugins/org.jboss.tools.runtime.ui/src/org/jboss/tools/runtime/ui/preferences/RuntimePreferencePage.java 2012-09-25 12:38:34 UTC (rev 43989)
@@ -54,7 +54,6 @@
import org.eclipse.swt.custom.TableEditor;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;
-import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
@@ -79,6 +78,7 @@
import org.jboss.tools.runtime.core.model.RuntimePath;
import org.jboss.tools.runtime.ui.RuntimeSharedImages;
import org.jboss.tools.runtime.ui.RuntimeUIActivator;
+import org.jboss.tools.runtime.ui.RuntimeWorkbenchUtils;
import org.jboss.tools.runtime.ui.dialogs.AutoResizeTableLayout;
import org.jboss.tools.runtime.ui.dialogs.EditRuntimePathDialog;
import org.jboss.tools.runtime.ui.dialogs.RuntimePathEditingSupport;
@@ -260,6 +260,7 @@
public void run() {
if (runtimePathChangeListener != null) {
viewer.setInput(RuntimeUIActivator.getRuntimePaths());
+ viewer.refresh();
}
}
});
@@ -452,10 +453,10 @@
}
}
}
- // IS THIS NEEDED?!?!
-// if (!getControl().isDisposed()) {
-// RuntimeWorkbenchUtils.refreshPreferencePageUIThread(getShell());
-// }
+
+ if (!getControl().isDisposed()) {
+ RuntimeWorkbenchUtils.refreshPreferencePageUIThread(getShell());
+ }
}
@@ -595,7 +596,9 @@
@Override
protected void performApply() {
+ RuntimeUIActivator.getDefault().getModel().setRuntimePaths(runtimePaths);
RuntimeUIActivator.getDefault().saveRuntimePreferences();
+ super.performApply();
}
@Override
13 years, 6 months