JBoss Tools SVN: r42507 - branches/jbosstools-3.3.x/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-07-11 09:07:36 -0400 (Wed, 11 Jul 2012)
New Revision: 42507
Modified:
branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AbstractOpenShiftWizardPage.java
branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java
Log:
[JBIDE-11310] moved logic from #onPageWillGetActivated to #onPageActivated since #onPageWillGetActivated is not called when the first wizard page is shown for the first time (which is the case when launching the wizard from OpenShift Explorer)
Modified: branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AbstractOpenShiftWizardPage.java
===================================================================
--- branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AbstractOpenShiftWizardPage.java 2012-07-11 12:12:46 UTC (rev 42506)
+++ branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AbstractOpenShiftWizardPage.java 2012-07-11 13:07:36 UTC (rev 42507)
@@ -113,6 +113,15 @@
protected void onPageDeactivated(DataBindingContext dbc) {
}
+ /**
+ * Callback that gets called before the page changes.
+ * <p>
+ * Attention: this is not called when the very first wizard page gets shown for the first time.
+ *
+ * @param direction
+ * @param event
+ * @param dbc
+ */
protected void onPageWillGetActivated(Direction direction, PageChangingEvent event, DataBindingContext dbc) {
}
Modified: branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java
===================================================================
--- branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java 2012-07-11 12:12:46 UTC (rev 42506)
+++ branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java 2012-07-11 13:07:36 UTC (rev 42507)
@@ -34,7 +34,6 @@
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.dialogs.IDialogConstants;
-import org.eclipse.jface.dialogs.PageChangingEvent;
import org.eclipse.jface.fieldassist.AutoCompleteField;
import org.eclipse.jface.fieldassist.ControlDecoration;
import org.eclipse.jface.fieldassist.FieldDecoration;
@@ -658,26 +657,17 @@
@Override
protected void onPageActivated(final DataBindingContext dbc) {
-
if (ensureHasDomain()) {
- enableApplicationWidgets(pageModel.isUseExistingApplication());
- createExistingAppNameContentAssist();
- // this is needed because of weird issues with UI
- // not reacting to model changes while wizard
- // runnable is run. We force another update
- //dbc.updateModels();
- this.newAppNameText.setFocus();
- }
- }
-
- @Override
- protected void onPageWillGetActivated(Direction direction, PageChangingEvent event, DataBindingContext dbc) {
- if(direction == Direction.FORWARDS) {
try {
- pageModel.reset(); // needs to be done before loading resources, otherwise: dbc.updateModels() will be called and old data could be restored
+ pageModel.reset();
+ // needs to be done before loading resources, otherwise:
+ // dbc.updateModels() will be called and old data could be
+ // restored
loadOpenshiftResources(dbc);
dbc.updateTargets();
- setPageComplete(false);
+ enableApplicationWidgets(pageModel.isUseExistingApplication());
+ createExistingAppNameContentAssist();
+ this.newAppNameText.setFocus();
} catch (OpenShiftException e) {
Logger.error("Failed to reset page fields", e);
}
@@ -713,13 +703,6 @@
return true;
}
- /**
- *
- * @return private boolean ensureHasSshKey() {
- *
- * }
- */
-
protected void loadOpenshiftResources(final DataBindingContext dbc) {
try {
WizardUtils.runInWizard(new Job("Loading data...") {
13 years, 9 months
JBoss Tools SVN: r42506 - /.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2012-07-11 08:12:46 -0400 (Wed, 11 Jul 2012)
New Revision: 42506
Removed:
forge/
Log:
13 years, 9 months
JBoss Tools SVN: r42505 - /.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2012-07-11 07:31:35 -0400 (Wed, 11 Jul 2012)
New Revision: 42505
Added:
forge/
Log:
13 years, 9 months
JBoss Tools SVN: r42504 - trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/publishing/v2.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2012-07-11 04:59:00 -0400 (Wed, 11 Jul 2012)
New Revision: 42504
Added:
trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/publishing/v2/JSTModuleDeployFoldersTest.java
Log:
missing file
Added: trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/publishing/v2/JSTModuleDeployFoldersTest.java
===================================================================
--- trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/publishing/v2/JSTModuleDeployFoldersTest.java (rev 0)
+++ trunk/as/tests/org.jboss.ide.eclipse.as.test/src/org/jboss/ide/eclipse/as/test/publishing/v2/JSTModuleDeployFoldersTest.java 2012-07-11 08:59:00 UTC (rev 42504)
@@ -0,0 +1,135 @@
+/*******************************************************************************
+ * Copyright (c) 2010 - 2011 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.ide.eclipse.as.test.publishing.v2;
+
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.IOException;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IPath;
+import org.eclipse.core.runtime.NullProgressMonitor;
+import org.eclipse.core.runtime.Path;
+import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
+import org.eclipse.wst.server.core.IModule;
+import org.eclipse.wst.server.core.IServerWorkingCopy;
+import org.eclipse.wst.server.core.ServerUtil;
+import org.jboss.ide.eclipse.as.core.publishers.LocalPublishMethod;
+import org.jboss.ide.eclipse.as.core.util.DeploymentPreferenceLoader;
+import org.jboss.ide.eclipse.as.core.util.IJBossToolingConstants;
+import org.jboss.ide.eclipse.as.core.util.DeploymentPreferenceLoader.DeploymentModulePrefs;
+import org.jboss.ide.eclipse.as.core.util.DeploymentPreferenceLoader.DeploymentPreferences;
+import org.jboss.ide.eclipse.as.test.publishing.AbstractDeploymentTest;
+import org.jboss.ide.eclipse.as.test.util.ServerRuntimeUtils;
+import org.jboss.ide.eclipse.as.test.util.wtp.JavaEEFacetConstants;
+import org.jboss.ide.eclipse.as.test.util.wtp.OperationTestCase;
+import org.jboss.ide.eclipse.as.test.util.wtp.ProjectCreationUtil;
+
+public class JSTModuleDeployFoldersTest extends AbstractJSTDeploymentTester {
+ protected String getModuleName() {
+ return super.getModuleName() + "JSTModuleDeployFoldersTest";
+ }
+ public void tearDown() throws Exception {
+ super.tearDown();
+ MockPublishMethod.reset();
+ }
+
+ @Override
+ protected IProject createProject() throws Exception {
+ IDataModel dm = ProjectCreationUtil.getWebDataModel(getModuleName(), null, null, null, null, JavaEEFacetConstants.WEB_24, false);
+ OperationTestCase.runAndVerify(dm);
+ IProject p = ResourcesPlugin.getWorkspace().getRoot().getProject(getModuleName());
+ assertTrue(p.exists());
+ File srcFile = AbstractDeploymentTest.getFileLocation("projectPieces/EJB3NoDescriptor.jar");
+ String proj = p.getLocation().toOSString();
+ p.getFolder("WebContent").getFolder("WEB-INF")
+ .getFolder("lib").getFile("test.jar").create(
+ new FileInputStream(srcFile), true, new NullProgressMonitor());
+ p.refreshLocal(0, new NullProgressMonitor());
+ return p;
+ }
+
+
+ public void testStandardDeployAndTempFolders() throws CoreException, IOException {
+ server = ServerRuntimeUtils.createMockJBoss7Server();
+ server = ServerRuntimeUtils.useMockPublishMethod(server);
+ MockPublishMethod.reset();
+
+ IModule mod = ServerUtil.getModule(project);
+ IModule[] module = new IModule[] { mod };
+ server = ServerRuntimeUtils.addModule(server, mod);
+ ServerRuntimeUtils.publish(server);
+ assertEquals(9,MockPublishMethod.getChanged().length);
+
+ IPath[] temps = MockPublishMethod.getTempPaths();
+ assertEquals(4, temps.length);
+ for( int i = 0; i < temps.length; i++ ) {
+ if( temps[i].lastSegment().equals("MANIFEST.MF"))
+ assertTrue(temps[i].segment(0).equals("mockTempRoot"));
+ if( temps[i].lastSegment().equals("web.xml"))
+ assertTrue(temps[i].segment(0).equals("mockTempRoot"));
+ if( temps[i].lastSegment().equals("test.jar"))
+ assertTrue(temps[i].segment(0).equals("mockTempRoot"));
+
+ // Markers don't need to be copied over in this way via a temp folder
+ if( temps[i].lastSegment().endsWith(".dodeploy"))
+ assertTrue(temps[i].segment(0).equals("mockRoot"));
+ }
+ MockPublishMethod.reset();
+ }
+
+
+ public void testPerModuleDeployAndTempFolders() throws CoreException, IOException {
+ server = ServerRuntimeUtils.createMockJBoss7Server();
+ server = ServerRuntimeUtils.useMockPublishMethod(server);
+ MockPublishMethod.reset();
+
+ // THIS NEEDS A REAL API. THIS IS HORRIBLE
+ IModule mod = ServerUtil.getModule(project);
+ DeploymentPreferences prefs = DeploymentPreferenceLoader.loadPreferencesFromServer(server);
+ DeploymentModulePrefs p = prefs.getOrCreatePreferences(LocalPublishMethod.LOCAL_PUBLISH_METHOD)
+ .getOrCreateModulePrefs(mod);
+ p.setProperty(IJBossToolingConstants.LOCAL_DEPLOYMENT_LOC, "/newRoot");
+ p.setProperty(IJBossToolingConstants.LOCAL_DEPLOYMENT_TEMP_LOC, "/newTempRoot");
+ IServerWorkingCopy wc = server.createWorkingCopy();
+ DeploymentPreferenceLoader.savePreferencesToServerWorkingCopy(wc, prefs);
+ server = wc.save(true, null);
+
+
+ MockPublishMethod.reset();
+ MockPublishMethod.setExpectedRoot("/newRoot");
+ MockPublishMethod.setExpectedTempRoot("/newTempRoot");
+
+ IModule[] module = new IModule[] { mod };
+ server = ServerRuntimeUtils.addModule(server, mod);
+ ServerRuntimeUtils.publish(server);
+ assertEquals(9,MockPublishMethod.getChanged().length);
+
+ IPath[] temps = MockPublishMethod.getTempPaths();
+ assertEquals(4, temps.length);
+ for( int i = 0; i < temps.length; i++ ) {
+ if( temps[i].lastSegment().equals("MANIFEST.MF"))
+ assertTrue(temps[i].segment(0).equals("newTempRoot"));
+ if( temps[i].lastSegment().equals("web.xml"))
+ assertTrue(temps[i].segment(0).equals("newTempRoot"));
+ if( temps[i].lastSegment().equals("test.jar"))
+ assertTrue(temps[i].segment(0).equals("newTempRoot"));
+
+ // Markers don't need to be copied over in this way via a temp folder
+ if( temps[i].lastSegment().endsWith(".dodeploy"))
+ assertTrue(temps[i].segment(0).equals("newRoot"));
+ }
+ MockPublishMethod.reset();
+ }
+
+}
13 years, 9 months
JBoss Tools SVN: r42503 - trunk/build/tycho-plugins/repository-utils.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-07-11 03:28:42 -0400 (Wed, 11 Jul 2012)
New Revision: 42503
Modified:
trunk/build/tycho-plugins/repository-utils/pom.xml
Log:
JBIDE-11065: Reference from plugin pom to JBoss Nexus to resolve its parent
Modified: trunk/build/tycho-plugins/repository-utils/pom.xml
===================================================================
--- trunk/build/tycho-plugins/repository-utils/pom.xml 2012-07-11 06:32:43 UTC (rev 42502)
+++ trunk/build/tycho-plugins/repository-utils/pom.xml 2012-07-11 07:28:42 UTC (rev 42503)
@@ -47,5 +47,18 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <repositories>
+ <repository>
+ <id>jboss-snapshots-repository</id>
+ <name>JBoss Snapshots Repository</name>
+ <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
+ </repository>
+ <repository>
+ <id>jboss-staging-repository</id>
+ <name>JBoss Staging Repository</name>
+ <url>https://repository.jboss.org/nexus/content/groups/staging/</url>
+ </repository>
+ </repositories>
</project>
13 years, 9 months
JBoss Tools SVN: r42502 - trunk/cdi/tests/org.jboss.tools.cdi.bot.test.
by jbosstools-commits@lists.jboss.org
Author: jjankovi
Date: 2012-07-11 02:32:43 -0400 (Wed, 11 Jul 2012)
New Revision: 42502
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.bot.test/pom.xml
Log:
added configuration to run on every platform
Modified: trunk/cdi/tests/org.jboss.tools.cdi.bot.test/pom.xml
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.bot.test/pom.xml 2012-07-11 04:42:39 UTC (rev 42501)
+++ trunk/cdi/tests/org.jboss.tools.cdi.bot.test/pom.xml 2012-07-11 06:32:43 UTC (rev 42502)
@@ -71,6 +71,47 @@
</dependencies>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tychoVersion}</version>
+ <configuration>
+ <resolver>p2</resolver>
+ <ignoreTychoRepositories>true</ignoreTychoRepositories>
+ <environments>
+ <environment>
+ <os>macosx</os>
+ <ws>cocoa</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>macosx</os>
+ <ws>cocoa</ws>
+ <arch>x86_64</arch>
+ </environment>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>win32</os>
+ <ws>win32</ws>
+ <arch>x86_64</arch>
+ </environment>
+ <environment>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>x86</arch>
+ </environment>
+ <environment>
+ <os>linux</os>
+ <ws>gtk</ws>
+ <arch>x86_64</arch>
+ </environment>
+ </environments>
+ </configuration>
+ </plugin>
</plugins>
</build>
13 years, 9 months
JBoss Tools SVN: r42501 - in trunk/jsf/docs/userguide/en-US: images/preferences and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-07-11 00:42:39 -0400 (Wed, 11 Jul 2012)
New Revision: 42501
Modified:
trunk/jsf/docs/userguide/en-US/Book_Info.xml
trunk/jsf/docs/userguide/en-US/images/preferences/preferences_7.png
trunk/jsf/docs/userguide/en-US/images/visual_page/visual_page_9.png
trunk/jsf/docs/userguide/en-US/preferences.xml
Log:
updated for JBDS-2195
Modified: trunk/jsf/docs/userguide/en-US/Book_Info.xml
===================================================================
--- trunk/jsf/docs/userguide/en-US/Book_Info.xml 2012-07-11 04:10:57 UTC (rev 42500)
+++ trunk/jsf/docs/userguide/en-US/Book_Info.xml 2012-07-11 04:42:39 UTC (rev 42501)
@@ -6,8 +6,8 @@
<subtitle>Provides information relating to the Visual Web Tools module.</subtitle>
<productname>JBoss Developer Studio</productname>
<productnumber>5.0</productnumber>
-<edition>5.0.0</edition>
-<pubsnumber>13</pubsnumber>
+<edition>5.0.1</edition>
+<pubsnumber>14</pubsnumber>
<abstract>
<para>The Visual Web Tools Reference Guide explains extensive collection of specialized wizards, editors and views that can be used in various scenarios while developing Web applications.</para>
</abstract>
Modified: trunk/jsf/docs/userguide/en-US/images/preferences/preferences_7.png
===================================================================
(Binary files differ)
Modified: trunk/jsf/docs/userguide/en-US/images/visual_page/visual_page_9.png
===================================================================
(Binary files differ)
Modified: trunk/jsf/docs/userguide/en-US/preferences.xml
===================================================================
--- trunk/jsf/docs/userguide/en-US/preferences.xml 2012-07-11 04:10:57 UTC (rev 42500)
+++ trunk/jsf/docs/userguide/en-US/preferences.xml 2012-07-11 04:42:39 UTC (rev 42501)
@@ -139,11 +139,11 @@
</para>
</listitem>
- <listitem>
+ <!-- <listitem>
<para>
<xref linkend="Verification"/>
</para>
- </listitem>
+ </listitem> -->
</itemizedlist>
<para>
@@ -1364,7 +1364,7 @@
</figure>
</section>
- <section id="Verification">
+<!-- <section id="Verification">
<?dbhtml filename="Verification.html"?>
<title>Verification</title>
<para>
@@ -1396,7 +1396,7 @@
</imageobject>
</mediaobject>
</figure>
- </section>
+</section> -->
<section id="JBossServerPreferences">
<?dbhtml filename="View.html"?>
13 years, 9 months
JBoss Tools SVN: r42500 - in trunk/documentation/guides/Beginners_Guide/en-US: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-07-11 00:10:57 -0400 (Wed, 11 Jul 2012)
New Revision: 42500
Modified:
trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
trunk/documentation/guides/Beginners_Guide/en-US/images/jboss_central_01.png
Log:
updated jboss central screenshot
Modified: trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
===================================================================
--- trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2012-07-11 01:57:13 UTC (rev 42499)
+++ trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2012-07-11 04:10:57 UTC (rev 42500)
@@ -13,7 +13,7 @@
<edition>5.0.1</edition>
- <pubsnumber>4</pubsnumber>
+ <pubsnumber>5</pubsnumber>
<abstract>
<para>
Modified: trunk/documentation/guides/Beginners_Guide/en-US/images/jboss_central_01.png
===================================================================
(Binary files differ)
13 years, 9 months
JBoss Tools SVN: r42499 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-07-10 21:57:13 -0400 (Tue, 10 Jul 2012)
New Revision: 42499
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
Log:
updated with new fixed issues for JBDs 5.0.1
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2012-07-10 22:23:52 UTC (rev 42498)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2012-07-11 01:57:13 UTC (rev 42499)
@@ -8,7 +8,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>5.0</productnumber>
<edition>5.0.1</edition>
- <pubsnumber>3</pubsnumber>
+ <pubsnumber>4</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/Fixed_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2012-07-10 22:23:52 UTC (rev 42498)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2012-07-11 01:57:13 UTC (rev 42499)
@@ -3,43 +3,73 @@
<title>
Enhancements and fixed issues in version 5.0.1
</title>
-<variablelist>
- <!-- JBIDE-12177 -->
- <varlistentry>
- <term><ulink url="https://issues.jboss.org/jira/browse/JBIDE-12177">JBIDE-12177</ulink></term>
- <listitem>
- <para>
- The feature to auto-complete code tags was broken in the Visual Editor. When attempting to auto-complete a code tag, invalid code would be generated. This has been corrected by modifying the content assist file XmlTagCompletionProposalComputer.java to ensure partner code tags are generated correctly when using auto-completion.
- </para>
- </listitem>
- </varlistentry>
+ <variablelist>
+ <!-- JBIDE-12177 -->
+ <varlistentry>
+ <term>
+ <ulink url="https://issues.jboss.org/jira/browse/JBIDE-12177">JBIDE-12177</ulink>
+ </term>
+ <listitem>
+ <para>
+ The feature to auto-complete code tags was broken in the Visual Editor. When attempting to auto-complete a code tag, invalid code would be generated. This has been corrected by modifying the content assist file XmlTagCompletionProposalComputer.java to ensure partner code tags are generated correctly when using auto-completion.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <!-- JBIDE-12158 -->
+ <varlistentry>
+ <term>
+ <ulink url="https://issues.jboss.org/jira/browse/JBIDE-12158">JBIDE-12158</ulink>
+ </term>
+ <listitem>
+ <para>
+ An issue existed when creating a Dynamic Web Project and modifying the project to include the JBoss Core Portlet facet to the project. The portlet-api library was not detected in the target runtime, forcing the user to manually specify it via the user library. This has been corrected by adding the option, Portlet Target Runtime Provider, to the combo-box on the JBoss Portlet Capabilities wizard page.
+ </para>
+ </listitem>
+</varlistentry>
- <!-- JBIDE-12158 -->
+ <!-- JBIDE-12111 -->
<varlistentry>
- <term><ulink url="https://issues.jboss.org/jira/browse/JBIDE-12158">JBIDE-12158</ulink></term>
- <listitem>
- <para>
- An issue existed when creating a Dynamic Web Project and modifying the project to include the JBoss Core Portlet facet to the project. The portlet-api library was not detected in the target runtime, forcing the user to manually specify it via the user library. This has been corrected by adding the option, Portlet Target Runtime Provider, to the combo-box on the JBoss Portlet Capabilities wizard page.
- </para>
- </listitem>
+ <term>
+ <ulink url="https://issues.jboss.org/jira/browse/JBIDE-12111">JBIDE-12111</ulink>
+ </term>
+ <listitem>
+ <para>
+ The version of Java to be used was hard coded in the pom.xml file of Maven projects. This caused errors when adding Maven configuration to a Seam 2.3 project since Maven projects were created to use Java 1.5, however Seam 2.3 requires Java 1.6. Maven tooling has been updated to allow the maven-compiler-plugin settings that are in the parent project to be dynamically inferred from the converted web project's original settings. This ensures the correct Java version is retained when Maven integration is added to an existing project.
+ </para>
+ </listitem>
</varlistentry>
-
+
<!-- JBIDE-12071 -->
<varlistentry>
- <term><ulink url="https://issues.jboss.org/jira/browse/JBIDE-12071">JBIDE-12071</ulink></term>
- <listitem>
- <para>
- Previously, when a user performed a drag-and-drop action to publish a project it was ignored. This occurred because the code to publish a project only accepted direct user-initiated actions and not those considered to be a shell action. The ExpressPublishMethod.java and ExpressBehaviour.java files have been updated to handle shell actions correctly. As a result, incremental publishes initiated by the user are now also handled correctly.
- </para>
- </listitem>
+ <term>
+ <ulink url="https://issues.jboss.org/jira/browse/JBIDE-12071">JBIDE-12071</ulink>
+ </term>
+ <listitem>
+ <para>
+ Previously, when a user performed a drag-and-drop action to publish a project it was ignored. This occurred because the code to publish a project only accepted direct user-initiated actions and not those considered to be a shell action. The ExpressPublishMethod.java and ExpressBehaviour.java files have been updated to handle shell actions correctly. As a result, incremental publishes initiated by the user are now also handled correctly.
+ </para>
+ </listitem>
</varlistentry>
-
+
<!-- JBIDE-12046 -->
<varlistentry>
- <term><ulink url="https://issues.jboss.org/jira/browse/JBIDE-12046">JBIDE-12046</ulink></term>
+ <term>
+ <ulink url="https://issues.jboss.org/jira/browse/JBIDE-12046">JBIDE-12046</ulink>
+ </term>
+ <listitem>
+ <para>
+ When a user tried to start or deploy to a remote server that was no longer reachable, various errors would be returned, however no adequate description of the issue was communicated. This issue has been resolved by returning a descriptive error when the remote server is unreachable and checking for file system responsiveness before attempting to publish.
+ </para>
+ </listitem>
+ </varlistentry>
+
+ <!-- JBIDE-11310 -->
+ <varlistentry>
+ <term><ulink url="https://issues.jboss.org/jira/browse/JBIDE-11310">JBIDE-11310</ulink></term>
<listitem>
<para>
- When a user tried to start or deploy to a remote server that was no longer reachable, various errors would be returned, however no adequate description of the issue was communicated. This issue has been resolved by returning a descriptive error when the remote server is unreachable and checking for file system responsiveness before attempting to publish.
+ An issue in the OpenShift tooling meant that if a user logged into OpenShift and created an application, then went back to the login screen and signed in as a different user, the previous application parameters would still be available. This meant the second user was not able to create an application with the same parameters, and was also able to view what the previous user had created, causing a potential security issue. OpenShift tooling has been updated to reset when a new user connects, triggering a refresh of the targets and parameters.
</para>
</listitem>
</varlistentry>
@@ -47,4 +77,5 @@
</variablelist>
+
</section>
13 years, 9 months
JBoss Tools SVN: r42498 - branches/jbosstools-3.3.x/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-07-10 18:23:52 -0400 (Tue, 10 Jul 2012)
New Revision: 42498
Modified:
branches/jbosstools-3.3.x/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF/MANIFEST.MF
Log:
JBIDE-12273 - The Source Lookup plugin is not compatible with m2e 1.1 (m2e Juno)
Modified: branches/jbosstools-3.3.x/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF/MANIFEST.MF 2012-07-10 22:21:29 UTC (rev 42497)
+++ branches/jbosstools-3.3.x/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF/MANIFEST.MF 2012-07-10 22:23:52 UTC (rev 42498)
@@ -10,9 +10,9 @@
org.jboss.ide.eclipse.as.core;visibility:=reexport,
org.eclipse.wst.server.core;bundle-version="1.1.302";visibility:=reexport,
org.eclipse.jdt.launching;bundle-version="3.6.0",
- org.eclipse.m2e.jdt;bundle-version="[1.0.0,1.1.0)";visibility:=reexport,
- org.eclipse.m2e.core;bundle-version="[1.0.0,1.1.0)";visibility:=reexport,
- org.eclipse.m2e.maven.runtime;bundle-version="[1.0.0,1.1.0)";visibility:=reexport,
+ org.eclipse.m2e.jdt;bundle-version="[1.0.0,1.2.0)";visibility:=reexport,
+ org.eclipse.m2e.core;bundle-version="[1.0.0,1.2.0)";visibility:=reexport,
+ org.eclipse.m2e.maven.runtime;bundle-version="[1.0.0,1.2.0)";visibility:=reexport,
org.apache.commons.codec;bundle-version="1.3.0",
org.eclipse.ui;bundle-version="3.7.0"
Bundle-ActivationPolicy: lazy
13 years, 9 months