JBoss Tools SVN: r36025 - branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-10-26 17:50:07 -0400 (Wed, 26 Oct 2011)
New Revision: 36025
Modified:
branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/AbstractJBossCentralPage.java
branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java
branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/RefreshIndicator.java
branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/SoftwarePage.java
Log:
JBIDE-10028 JBoss Central Editor Maximize/Restore actions freeze UI and loads CPU
Modified: branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/AbstractJBossCentralPage.java
===================================================================
--- branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/AbstractJBossCentralPage.java 2011-10-26 21:08:54 UTC (rev 36024)
+++ branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/AbstractJBossCentralPage.java 2011-10-26 21:50:07 UTC (rev 36025)
@@ -19,6 +19,7 @@
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.forms.editor.FormEditor;
import org.eclipse.ui.forms.editor.FormPage;
@@ -98,4 +99,14 @@
formText.setText(text, true, false);
return composite;
}
+
+ protected void setBusyIndicator(Composite composite, boolean busy) {
+ Control[] children = composite.getChildren();
+ for (Control child:children) {
+ if (child instanceof RefreshIndicator) {
+ RefreshIndicator indicator = (RefreshIndicator) child;
+ indicator.setBusy(busy);
+ }
+ }
+ }
}
Modified: branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java
===================================================================
--- branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java 2011-10-26 21:08:54 UTC (rev 36024)
+++ branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/GettingStartedPage.java 2011-10-26 21:50:07 UTC (rev 36025)
@@ -150,6 +150,7 @@
private RefreshNewsJobChangeListener refreshNewsJobChangeListener;
private Section settingsSection;
private Composite settingsComposite;
+ private Point oldSize;
public GettingStartedPage(FormEditor editor) {
super(editor, ID, "Getting Started");
@@ -715,12 +716,12 @@
@Override
public void run() {
pageBook.showPage(composite);
+ setBusyIndicator(composite, true);
form.reflow(true);
form.redraw();
recomputeScrollComposite(scrolledComposite, pageBook);
}
});
-
return true;
}
@@ -1009,6 +1010,10 @@
} else {
size = form.getBody().getSize();
}
+ if (size.equals(oldSize)) {
+ return;
+ }
+ oldSize = size;
GridData gd;
Point computedSize;
int widthHint = size.x/2 - 40;
@@ -1109,6 +1114,7 @@
@Override
public void run() {
+ setBusyIndicator(blogsLoadingComposite, false);
refreshBlogs();
}
});
@@ -1151,6 +1157,7 @@
@Override
public void run() {
+ setBusyIndicator(tutorialsLoadingComposite, false);
refreshTutorials();
}
});
@@ -1193,6 +1200,7 @@
@Override
public void run() {
+ setBusyIndicator(newsLoadingComposite, false);
refreshNews();
}
});
Modified: branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/RefreshIndicator.java
===================================================================
--- branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/RefreshIndicator.java 2011-10-26 21:08:54 UTC (rev 36024)
+++ branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/RefreshIndicator.java 2011-10-26 21:50:07 UTC (rev 36025)
@@ -108,6 +108,9 @@
while (!stop) {
Display.getDefault().syncExec(new Runnable() {
public void run() {
+ if (!getParent().isVisible()) {
+ return;
+ }
if (!stop) {
if (count < maxCount)
setImage(images[count]);
Modified: branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/SoftwarePage.java
===================================================================
--- branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/SoftwarePage.java 2011-10-26 21:08:54 UTC (rev 36024)
+++ branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/editors/SoftwarePage.java 2011-10-26 21:50:07 UTC (rev 36025)
@@ -252,11 +252,11 @@
@Override
public void run() {
pageBook.showPage(loadingComposite);
+ setBusyIndicator(loadingComposite, true);
form.reflow(true);
form.redraw();
}
});
-
return true;
}
@@ -309,6 +309,7 @@
@Override
public void run() {
+ setBusyIndicator(loadingComposite, false);
refresh();
}
});
13 years, 4 months
JBoss Tools SVN: r36024 - branches/jbosstools-3.3.0.M4/build/aggregate/soa-site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-26 17:08:54 -0400 (Wed, 26 Oct 2011)
New Revision: 36024
Modified:
branches/jbosstools-3.3.0.M4/build/aggregate/soa-site/site.xml
Log:
JBIDE-10062 REMOVE BPEL for M4
Modified: branches/jbosstools-3.3.0.M4/build/aggregate/soa-site/site.xml
===================================================================
--- branches/jbosstools-3.3.0.M4/build/aggregate/soa-site/site.xml 2011-10-26 20:27:19 UTC (rev 36023)
+++ branches/jbosstools-3.3.0.M4/build/aggregate/soa-site/site.xml 2011-10-26 21:08:54 UTC (rev 36024)
@@ -19,9 +19,9 @@
<category name="AbridgedTools" />
<category name="SOATools" />
</feature>
- <feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
+ <!-- JBIDE-10062 REMOVE BPEL for M4 <feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
<category name="SOATools" />
- </feature>
+ </feature> -->
<!-- jBPM Tools & Flow features -->
<feature url="features/org.jboss.tools.jbpm.convert.feature_0.0.0.jar" id="org.jboss.tools.jbpm.convert.feature" version="0.0.0">
13 years, 4 months
JBoss Tools SVN: r36023 - branches/jbosstools-3.3.0.M4/as/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: 2011-10-26 16:27:19 -0400 (Wed, 26 Oct 2011)
New Revision: 36023
Modified:
branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java
branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPageModel.java
Log:
[JNIDE-10049] now creating a single key file only (libra_id_rsa) and pre-initializing it in the UI if the file exists
Modified: branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java
===================================================================
--- branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java 2011-10-26 20:16:28 UTC (rev 36022)
+++ branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java 2011-10-26 20:27:19 UTC (rev 36023)
@@ -26,6 +26,7 @@
import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.ErrorDialog;
import org.eclipse.jface.dialogs.InputDialog;
+import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.jface.layout.GridLayoutFactory;
import org.eclipse.jface.wizard.IWizard;
@@ -93,6 +94,16 @@
"You have to select a ssh public key")),
new UpdateValueStrategy().setAfterGetValidator(new SSHKeyValidator()));
ControlDecorationSupport.create(sshKeyTextBinding, SWT.TOP | SWT.LEFT);
+ try {
+ model.initSshKey();
+ } catch (OpenShiftException ex) {
+ IStatus status = new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID,
+ "Could check your ssh keys", ex);
+ OpenShiftUIActivator.log(status);
+ ErrorDialog.openError(getShell(),
+ "Error checking your ssh keys",
+ "Could not check your ssh keys", status);
+ }
Button browseButton = new Button(container, SWT.PUSH);
browseButton.setText("Browse");
@@ -113,7 +124,6 @@
GridDataFactory.fillDefaults()
.span(3, 1).align(SWT.FILL, SWT.CENTER).applyTo(sshPrefsLink);
sshPrefsLink.addSelectionListener(onSshPrefs());
-
}
private SelectionListener onNew() {
@@ -122,26 +132,35 @@
@Override
public void widgetSelected(SelectionEvent e) {
- InputDialog dialog = new PassphraseDialog(getShell());
- if (Dialog.OK == dialog.open()) {
- try {
- String passPhrase = dialog.getValue();
- model.createSShKeyPair(passPhrase);
- } catch (FileNotFoundException ex) {
- IStatus status = new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID,
- "Could not read the ssh key folder", ex);
- OpenShiftUIActivator.log(status);
- ErrorDialog.openError(getShell(),
- "Error creating a new ssh key pair",
- "Could not create a new ssh key pair", status);
- } catch (OpenShiftException ex) {
- IStatus status = new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID,
- "Could not create an ssh key pair", ex);
- OpenShiftUIActivator.log(status);
- ErrorDialog.openError(getShell(),
- "Error creating a new ssh key pair",
- "Could not create a new ssh key pair", status);
+ try {
+ if (model.libraPublicKeyExists()) {
+ MessageDialog.openInformation(getShell(),
+ "Libra Key already present",
+ "You already have a key at \"" + model.getLibraPublicKey() + "\". Please move it or use it.");
+ return;
+ }
+
+ InputDialog dialog = new PassphraseDialog(getShell());
+ if (Dialog.OK == dialog.open()) {
+ try {
+ String passPhrase = dialog.getValue();
+ model.createLibraKeyPair(passPhrase);
+ } catch (FileNotFoundException ex) {
+ IStatus status = new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID,
+ "Could not read the ssh key folder", ex);
+ OpenShiftUIActivator.log(status);
+ ErrorDialog.openError(getShell(),
+ "Error creating a new ssh key pair",
+ "Could not create a new ssh key pair", status);
+ }
}
+ } catch (OpenShiftException ex) {
+ IStatus status = new Status(IStatus.ERROR, OpenShiftUIActivator.PLUGIN_ID,
+ "Could not create an ssh key pair", ex);
+ OpenShiftUIActivator.log(status);
+ ErrorDialog.openError(getShell(),
+ "Error creating a new ssh key pair",
+ "Could not create a new ssh key pair", status);
}
}
};
Modified: branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPageModel.java
===================================================================
--- branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPageModel.java 2011-10-26 20:16:28 UTC (rev 36022)
+++ branches/jbosstools-3.3.0.M4/as/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPageModel.java 2011-10-26 20:27:19 UTC (rev 36023)
@@ -18,7 +18,6 @@
import org.eclipse.jsch.internal.core.IConstants;
import org.eclipse.jsch.internal.core.JSchCorePlugin;
import org.jboss.tools.common.ui.databinding.ObservableUIPojo;
-import org.jboss.tools.common.ui.ssh.SshPrivateKeysPreferences;
import org.jboss.tools.openshift.express.client.IDomain;
import org.jboss.tools.openshift.express.client.ISSHPublicKey;
import org.jboss.tools.openshift.express.client.IUser;
@@ -32,7 +31,7 @@
*/
public class NewDomainWizardPageModel extends ObservableUIPojo {
- private static final String OPENSHIFT_KEY_PREFIX = "openshift_id_rsa_";
+ public static final String LIBRA_KEY = "libra_id_rsa";
private static final String PUBLIC_KEY_SUFFIX = ".pub";
public static final String PROPERTY_NAMESPACE = "namespace";
@@ -49,6 +48,40 @@
this.user = user;
}
+ public void initSshKey() throws OpenShiftException {
+ if (!libraPublicKeyExists()) {
+ return;
+ }
+ File libraPublicKey = getLibraPublicKey();
+ setSshKey(libraPublicKey.getAbsolutePath());
+ }
+
+ /**
+ * Returns the file of the libra public key. It is not checking if the file exists.
+ *
+ * @return the libra public key
+ * @throws OpenShiftException
+ */
+ public File getLibraPublicKey() throws OpenShiftException {
+ File libraPrivateKey = getLibraPrivateKey();
+ return new File(libraPrivateKey.getParent(), getPublicKeyPath(libraPrivateKey.getName()));
+ }
+
+ private String getPublicKeyPath(String privateKeyPath) {
+ return privateKeyPath + PUBLIC_KEY_SUFFIX;
+ }
+
+ public File getLibraPrivateKey() throws OpenShiftException {
+ Preferences preferences = JSchCorePlugin.getPlugin().getPluginPreferences();
+ String ssh2Home = preferences.getString(IConstants.KEY_SSH2HOME);
+ if (ssh2Home == null
+ || ssh2Home.trim().length() == 0) {
+ throw new OpenShiftException("Could not determine your ssh2 home directory");
+ }
+
+ return new File(ssh2Home, LIBRA_KEY);
+ }
+
public String getNamespace() {
return this.namespace;
}
@@ -61,10 +94,19 @@
public String getSshKey() {
return sshKey;
}
+
+ public boolean libraPublicKeyExists() throws OpenShiftException {
+ return FileUtils.canRead(getLibraPublicKey());
+ }
- public void createSShKeyPair(String passPhrase) throws FileNotFoundException, OpenShiftException {
- String sshKeysDirectory = SshPrivateKeysPreferences.getSshKeyDirectory();
- SSHKeyPair keyPair = createSshKeyPair(passPhrase, sshKeysDirectory);
+ public void createLibraKeyPair(String passPhrase) throws FileNotFoundException, OpenShiftException {
+ File libraPublicKey = getLibraPublicKey();
+ if (libraPublicKey.canRead()) {
+ // key already exists
+ return;
+ }
+ File libraPrivateKey = getLibraPrivateKey();
+ SSHKeyPair keyPair = SSHKeyPair.create(passPhrase, libraPrivateKey.getAbsolutePath(), libraPublicKey.getAbsolutePath());
addToPrivateKeysPreferences(keyPair);
setSshKey(keyPair.getPublicKeyPath());
}
@@ -79,31 +121,10 @@
privateKeys = keyPair.getPrivateKeyPath();
}
preferences.setValue(IConstants.KEY_PRIVATEKEY, privateKeys);
- JSchCorePlugin.getPlugin().setNeedToLoadKnownHosts(true);
JSchCorePlugin.getPlugin().setNeedToLoadKeys(true);
JSchCorePlugin.getPlugin().savePluginPreferences();
}
-
- private SSHKeyPair createSshKeyPair(String passPhrase, String sshKeysDirectory) throws OpenShiftException {
- String privateKeyPath = getKeyPairFileName(sshKeysDirectory);
- String publicKeyPath = getPublicKeyPath(privateKeyPath);
- return SSHKeyPair.create(passPhrase, privateKeyPath, publicKeyPath);
- }
-
- private String getKeyPairFileName(String sshKeysDirectory) {
- int i = 0;
- File privateKey = null;
- while (FileUtils.canRead(privateKey = new File(sshKeysDirectory, OPENSHIFT_KEY_PREFIX + i))
- || FileUtils.canRead(new File(sshKeysDirectory, getPublicKeyPath(privateKey.getName())))) {
- i++;
- }
- return privateKey.getAbsolutePath();
- }
-
- private String getPublicKeyPath(String privateKeyPath) {
- return privateKeyPath + PUBLIC_KEY_SUFFIX;
- }
-
+
public void setSshKey(String sshKey) {
firePropertyChange(PROPERTY_SSHKEY, this.sshKey, this.sshKey = sshKey);
}
13 years, 4 months
JBoss Tools SVN: r36022 - trunk/jsf/tests/org.jboss.tools.jsf.ui.test/src/org/jboss/tools/jsf/jsp/ca/test.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-10-26 16:16:28 -0400 (Wed, 26 Oct 2011)
New Revision: 36022
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.ui.test/src/org/jboss/tools/jsf/jsp/ca/test/CAJsfMessagesProposalsTest.java
Log:
JBIDE-10021
https://issues.jboss.org/browse/JBIDE-10021
Cosmetic changes in the test.
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.test/src/org/jboss/tools/jsf/jsp/ca/test/CAJsfMessagesProposalsTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.test/src/org/jboss/tools/jsf/jsp/ca/test/CAJsfMessagesProposalsTest.java 2011-10-26 19:59:22 UTC (rev 36021)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.test/src/org/jboss/tools/jsf/jsp/ca/test/CAJsfMessagesProposalsTest.java 2011-10-26 20:16:28 UTC (rev 36022)
@@ -25,9 +25,9 @@
import org.jboss.tools.test.util.ProjectImportTestSetup;
/**
- * The JUnit test cases for https://issues.jboss.org/browse/JBIDE-9414 issue
+ * The JUnit test cases for https://issues.jboss.org/browse/JBIDE-10021 issue
*
- * @author Victor V. Rubezhny
+ * @author Viacheslav Kabanovich
*
*/
public class CAJsfMessagesProposalsTest extends ContentAssistantTestCase {
@@ -47,7 +47,7 @@
return new TestSuite(CAJsfMessagesProposalsTest.class);
}
- private void doTestLongResourceBundlePropertyNames(String tagName, String prefix, String proposalToApply, String compareString) {
+ private void doMessagesInLocalizedBundles(String tagName, String prefix, String proposalToApply, String compareString) {
String documentContent = document.get();
int start = (documentContent == null ? -1 : documentContent.indexOf(tagName));
assertFalse("Required node '" + tagName + "' not found in document", (start == -1));
@@ -77,12 +77,12 @@
}
- public void testJstJspLongResourceBundlePropertyNamesInTagAttributeValue() {
+ public void testMessagesInLocalizedBundles() {
assertNotNull("Test project '" + PROJECT_NAME + "' is not prepared", project);
openEditor(PAGE_NAME);
try {
- doTestLongResourceBundlePropertyNames(TAG_STRING, PREFIX_STRING, PROPOSAL_TO_APPLY_STRING, COMPARE_STRING);
+ doMessagesInLocalizedBundles(TAG_STRING, PREFIX_STRING, PROPOSAL_TO_APPLY_STRING, COMPARE_STRING);
} finally {
closeEditor();
}
13 years, 4 months
JBoss Tools SVN: r36021 - in trunk/documentation/whatsnew/as: images and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-10-26 15:59:22 -0400 (Wed, 26 Oct 2011)
New Revision: 36021
Added:
trunk/documentation/whatsnew/as/images/runtimedownload1.png
trunk/documentation/whatsnew/as/images/runtimedownload2.png
trunk/documentation/whatsnew/as/images/runtimedownload3.png
Modified:
trunk/documentation/whatsnew/as/as-news-3.3.0.M4.html
Log:
JBIDE-9962 CLONE - CLONE - CLONE - CLONE - AS Component N&N
Modified: trunk/documentation/whatsnew/as/as-news-3.3.0.M4.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.3.0.M4.html 2011-10-26 19:35:31 UTC (rev 36020)
+++ trunk/documentation/whatsnew/as/as-news-3.3.0.M4.html 2011-10-26 19:59:22 UTC (rev 36021)
@@ -97,7 +97,45 @@
<p><small><a href="https://issues.jboss.org/browse/JBIDE-10030">Related Jira</a></small></p>
</td>
</tr>
+ <tr><td colspan="2"><hr /></td></tr>
+ <tr>
+ <td valign="top" align="right">
+ <p><b>ESB Runtime detection</b></p>
+ </td>
+ <td valign="top" width="90%">
+ <p>The JBoss Runtime Detection now recognizes a ESB Runtime from a SOA-P product</p>
+ <p><small><a href="https://issues.jboss.org/browse/JBIDE-9941">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr><td colspan="2"><hr /></td></tr>
+ <tr>
+ <td valign="top" align="right">
+ <p><b>Download and Install JBoss Runtimes</b></p>
+ </td>
+ <td valign="top" width="90%">
+ <p> The JBoss Runtime Detection can download and install a JBoss Runtime.
+ <br/>
+ There is the <b>Download</b> button on the JBoss Tools Runtime Detection preferences page.
+ <p><img src="images/runtimedownload1.png" alt="JBoss Tools Runtime Detection" /></p>
+ When clicking it, you will get a dialog showing runtimes available for download.
+ <p><img src="images/runtimedownload2.png" alt="Runtimes" /></p>
+ </p>
+ If you select a runtime you want to download and click the OK button, the following dialog will show up:
+ <p><img src="images/runtimedownload3.png" alt="Download Runtime" /></p>
+ Select:
+ <p>
+ <ul>
+ <li>Install folder - the folder where the runtime will be installed to</li>
+ <li>Download folder - the folder where the archive will be downloaded to</li>
+ <li>Delete archive after installing - uncheck this checkbox if you want to save the archive to the download folder. </li>
+ </ul>
+ </p>
+ Click the OK button and the Runtime Detection engine will download and setup the JBoss Runtime.
+ <p><small><a href="https://issues.jboss.org/browse/JBIDE-6369">Related Jira</a></small></p>
+ </td>
+ </tr>
+
</table>
</body>
Added: trunk/documentation/whatsnew/as/images/runtimedownload1.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/as/images/runtimedownload1.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/as/images/runtimedownload2.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/as/images/runtimedownload2.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/as/images/runtimedownload3.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/as/images/runtimedownload3.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
13 years, 4 months
JBoss Tools SVN: r36020 - trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-10-26 15:35:31 -0400 (Wed, 26 Oct 2011)
New Revision: 36020
Modified:
trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/FilePathHelper.java
Log:
JBIDE-10021
https://issues.jboss.org/browse/JBIDE-10021
FilePathHelper.isCaseSensitive() is fixed.
Modified: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/FilePathHelper.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/FilePathHelper.java 2011-10-26 18:54:37 UTC (rev 36019)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/filesystems/FilePathHelper.java 2011-10-26 19:35:31 UTC (rev 36020)
@@ -11,11 +11,9 @@
package org.jboss.tools.common.model.filesystems;
import java.io.File;
+import java.io.IOException;
-import org.eclipse.core.runtime.Platform;
import org.jboss.tools.common.model.plugin.ModelPlugin;
-import org.jboss.tools.common.model.util.EclipseResourceUtil;
-import org.osgi.framework.Bundle;
/**
* @author Viacheslav Kabanovich
@@ -25,6 +23,11 @@
public static boolean isCaseSensitive() {
if(check == null) check = new Check();
+ /*
+ * This code would be nicer to use: EFS.getLocalFileSystem().isCaseSensitive();
+ * However, it is not clear if it will return same result for MACOSX.
+ * If it is not so, it can cause failures in code that uses this method.
+ */
return check.isCaseSensitive;
}
@@ -35,10 +38,18 @@
private static class Check {
boolean isCaseSensitive = false;
public Check() {
- Bundle b = Platform.getBundle(ModelPlugin.PLUGIN_ID);
- String path = EclipseResourceUtil.getInstallPath(b);
- if(path == null) return;
+ String path = ModelPlugin.getDefault().getStateLocation().toString();
String file = path + "/images/default.gif"; //$NON-NLS-1$
+ File f = new File(file);
+ if(!f.isFile()) {
+ try {
+ f.getParentFile().mkdirs();
+ f.createNewFile();
+ } catch (IOException e) {
+ ModelPlugin.getPluginLog().logWarning("Cannot create file " + file);
+ return;
+ }
+ }
if(!new File(file).isFile()) {
ModelPlugin.getPluginLog().logWarning("Cannot find file " + file); //$NON-NLS-1$
return;
13 years, 4 months
JBoss Tools SVN: r36019 - trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-10-26 14:54:37 -0400 (Wed, 26 Oct 2011)
New Revision: 36019
Modified:
trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs/ProjectExamplesDialog.java
Log:
JBIDE-10046 TestNG installation does not work, no message is reported to user
Modified: trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs/ProjectExamplesDialog.java
===================================================================
--- trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs/ProjectExamplesDialog.java 2011-10-26 18:51:54 UTC (rev 36018)
+++ trunk/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs/ProjectExamplesDialog.java 2011-10-26 18:54:37 UTC (rev 36019)
@@ -346,7 +346,7 @@
public void run(boolean fork, boolean cancelable,
IRunnableWithProgress runnable) throws InvocationTargetException,
InterruptedException {
- ModalContext.run(runnable, fork, monitor, getDisplay());
+ ModalContext.run(runnable, false, monitor, getDisplay());
}
protected Display getDisplay() {
13 years, 4 months
JBoss Tools SVN: r36018 - branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-10-26 14:51:54 -0400 (Wed, 26 Oct 2011)
New Revision: 36018
Modified:
branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs/ProjectExamplesDialog.java
Log:
JBIDE-10046 TestNG installation does not work, no message is reported to user
Modified: branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs/ProjectExamplesDialog.java
===================================================================
--- branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs/ProjectExamplesDialog.java 2011-10-26 17:47:30 UTC (rev 36017)
+++ branches/jbosstools-3.3.0.M4/central/plugins/org.jboss.tools.central/src/org/jboss/tools/central/dialogs/ProjectExamplesDialog.java 2011-10-26 18:51:54 UTC (rev 36018)
@@ -346,7 +346,7 @@
public void run(boolean fork, boolean cancelable,
IRunnableWithProgress runnable) throws InvocationTargetException,
InterruptedException {
- ModalContext.run(runnable, fork, monitor, getDisplay());
+ ModalContext.run(runnable, false, monitor, getDisplay());
}
protected Display getDisplay() {
13 years, 4 months
JBoss Tools SVN: r36017 - in trunk/build/aggregate: soa-site and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-26 13:47:30 -0400 (Wed, 26 Oct 2011)
New Revision: 36017
Modified:
trunk/build/aggregate/site/site.xml
trunk/build/aggregate/soa-site/site.xml
Log:
JBIDE-10029 rename All to Abridged for 2 JBT sites
Modified: trunk/build/aggregate/site/site.xml
===================================================================
--- trunk/build/aggregate/site/site.xml 2011-10-26 17:44:59 UTC (rev 36016)
+++ trunk/build/aggregate/site/site.xml 2011-10-26 17:47:30 UTC (rev 36017)
@@ -4,30 +4,30 @@
<!-- only in JBDS
<feature url="features/com.jboss.jbds.product.feature_0.0.0.jar" id="com.jboss.jbds.product.feature" version="0.0.0" patch="false">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
-->
<!-- only in JBT for now (JBIDE-9784), eventually in JBDS (JBDS-1867) -->
<feature url="features/org.jboss.tools.central.feature_0.0.0.jar" id="org.jboss.tools.central.feature" version="0.0.0">
- <category name="AllTools"/>
+ <category name="AbridgedTools"/>
</feature>
<feature url="features/org.jboss.tools.central.discovery.feature_0.0.0.jar" id="org.jboss.tools.central.discovery.feature" version="0.0.0">
</feature>
<feature url="features/org.jboss.tools.richfaces.feature_0.0.0.jar" id="org.jboss.tools.richfaces.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<!-- include and categorize in JBT -->
<feature url="features/org.jboss.tools.jst.feature_0.0.0.jar" id="org.jboss.tools.jst.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.vpe.feature_0.0.0.jar" id="org.jboss.tools.vpe.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.jsf.feature_0.0.0.jar" id="org.jboss.tools.jsf.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<!-- include but do not categorize -->
@@ -35,69 +35,69 @@
<feature url="features/org.mozilla.xulrunner.feature_0.0.0.jar" id="org.mozilla.xulrunner.feature" version="0.0.0"></feature>
<feature url="features/org.jboss.tools.seam.feature_0.0.0.jar" id="org.jboss.tools.seam.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.cdi.feature_0.0.0.jar" id="org.jboss.tools.cdi.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.cdi.seam.feature_0.0.0.jar" id="org.jboss.tools.cdi.seam.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.jmx.feature_0.0.0.jar" id="org.jboss.tools.jmx.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.ide.eclipse.as.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<!-- only in JBT -->
<feature url="features/org.jboss.tools.openshift.express.feature_0.0.0.jar" id="org.jboss.tools.openshift.express.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="CloudTools" />
</feature>
<feature url="features/org.jboss.tools.openshift.egit.integration.feature_0.0.0.jar" id="org.jboss.tools.openshift.egit.integration.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="CloudTools" />
</feature>
<feature url="features/org.jboss.ide.eclipse.archives.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.hibernate.eclipse.feature_0.0.0.jar" id="org.hibernate.eclipse.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
<category name="DataTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.ide.eclipse.freemarker.feature_0.0.0.jar" id="org.jboss.ide.eclipse.freemarker.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.struts.feature_0.0.0.jar" id="org.jboss.tools.struts.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<!-- only in JBT -->
<feature url="features/org.jboss.tools.ws.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar" id="org.jboss.tools.portlet.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.project.examples.feature_0.0.0.jar" id="org.jboss.tools.project.examples.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
@@ -106,7 +106,7 @@
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.community.project.examples.feature_0.0.0.jar" id="org.jboss.tools.community.project.examples.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.birt.feature_0.0.0.jar" id="org.jboss.tools.birt.feature" version="0.0.0">
@@ -147,7 +147,7 @@
</feature>
<feature url="features/org.jboss.tools.common.jdt.feature_0.0.0.jar" id="org.jboss.tools.common.jdt.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<!-- include but do not categorize -->
<feature url="features/org.jboss.tools.common.feature_0.0.0.jar" id="org.jboss.tools.common.feature" version="0.0.0"></feature>
@@ -157,23 +157,23 @@
<feature url="features/org.jboss.tools.common.verification.feature_0.0.0.jar" id="org.jboss.tools.common.verification.feature" version="0.0.0"></feature>
<feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.core.feature_0.0.0.jar" id="org.jboss.tools.runtime.core.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.as.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.as.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.seam.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.seam.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.usage.feature_0.0.0.jar" id="org.jboss.tools.usage.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<!-- categories - see also ../../../common/aggregateRepos.*.properties -->
@@ -184,13 +184,11 @@
</description>
</category-def>
- <category-def name="AllTools" label="All JBoss Tools 3.3">
- <description>Contains ALL the plugins that are available from
- JBoss Tools except those
- related to integration with 3rd party
- plugins. Selecting this
- category will give you all tools needed for
- both Web and Seam Development.
+ <category-def name="AbridgedTools" label="Abridged JBoss Tools 3.3">
+ <description>Contains most of the JBoss Tools features.
+ Excluded are those related to integration with 3rd party
+ plugins. Selecting this category will give you all tools
+ needed for Web and Seam Development.
</description>
</category-def>
Modified: trunk/build/aggregate/soa-site/site.xml
===================================================================
--- trunk/build/aggregate/soa-site/site.xml 2011-10-26 17:44:59 UTC (rev 36016)
+++ trunk/build/aggregate/soa-site/site.xml 2011-10-26 17:47:30 UTC (rev 36017)
@@ -5,18 +5,18 @@
</description>
<feature url="features/org.jboss.tools.esb.feature_0.0.0.jar" id="org.jboss.tools.esb.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.smooks.feature_0.0.0.jar" id="org.jboss.tools.smooks.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
<category name="DataTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.jbpm4.feature_0.0.0.jar" id="org.jboss.tools.jbpm4.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
@@ -25,50 +25,48 @@
<!-- jBPM Tools & Flow features -->
<feature url="features/org.jboss.tools.jbpm.convert.feature_0.0.0.jar" id="org.jboss.tools.jbpm.convert.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.jbpm.common.feature_0.0.0.jar" id="org.jboss.tools.jbpm.common.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.jbpm3.feature_0.0.0.jar" id="org.jboss.tools.jbpm3.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.modeshape.rest.feature_0.0.0.jar" id="org.jboss.tools.modeshape.rest.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.core.feature_0.0.0.jar" id="org.jboss.tools.runtime.core.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.drools.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.drools.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.esb.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.esb.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.jbpm.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.jbpm.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.usage.feature_0.0.0.jar" id="org.jboss.tools.usage.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
- <category-def name="AllTools" label="All JBoss Tools - SOA Tooling 3.3">
+ <category-def name="AbridgedTools" label="Abridged JBoss Tools - SOA Tooling 3.3">
<description>
- Contains ALL the plugins that are available from
- JBoss Tools - SOA Tooling - except those
- related to integration with 3rd party
- plugins. Selecting this
- category will give you all tools needed for
- SOA Development.
+ Contains most of the JBoss Tools - SOA Tooling features.
+ Excluded are those related to integration with 3rd party
+ plugins. Selecting this category will give you all tools
+ needed for SOA Development.
</description>
</category-def>
@@ -105,16 +103,16 @@
<!-- aggregated from other sources -->
<feature url="features/org.drools.eclipse.feature_0.0.0.jar" id="org.drools.eclipse.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.drools.eclipse.task.feature_0.0.0.jar" id="org.drools.eclipse.task.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.guvnor.tools.feature_0.0.0.jar" id="org.guvnor.tools.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
13 years, 4 months
JBoss Tools SVN: r36016 - in branches/jbosstools-3.3.0.M4/build/aggregate: soa-site and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-26 13:44:59 -0400 (Wed, 26 Oct 2011)
New Revision: 36016
Modified:
branches/jbosstools-3.3.0.M4/build/aggregate/site/site.xml
branches/jbosstools-3.3.0.M4/build/aggregate/soa-site/site.xml
Log:
JBIDE-10029 rename All to Abridged for 2 JBT sites
Modified: branches/jbosstools-3.3.0.M4/build/aggregate/site/site.xml
===================================================================
--- branches/jbosstools-3.3.0.M4/build/aggregate/site/site.xml 2011-10-26 16:21:25 UTC (rev 36015)
+++ branches/jbosstools-3.3.0.M4/build/aggregate/site/site.xml 2011-10-26 17:44:59 UTC (rev 36016)
@@ -4,30 +4,30 @@
<!-- only in JBDS
<feature url="features/com.jboss.jbds.product.feature_0.0.0.jar" id="com.jboss.jbds.product.feature" version="0.0.0" patch="false">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
-->
<!-- only in JBT for now (JBIDE-9784), eventually in JBDS (JBDS-1867) -->
<feature url="features/org.jboss.tools.central.feature_0.0.0.jar" id="org.jboss.tools.central.feature" version="0.0.0">
- <category name="AllTools"/>
+ <category name="AbridgedTools"/>
</feature>
<feature url="features/org.jboss.tools.central.discovery.feature_0.0.0.jar" id="org.jboss.tools.central.discovery.feature" version="0.0.0">
</feature>
<feature url="features/org.jboss.tools.richfaces.feature_0.0.0.jar" id="org.jboss.tools.richfaces.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<!-- include and categorize in JBT -->
<feature url="features/org.jboss.tools.jst.feature_0.0.0.jar" id="org.jboss.tools.jst.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.vpe.feature_0.0.0.jar" id="org.jboss.tools.vpe.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.jsf.feature_0.0.0.jar" id="org.jboss.tools.jsf.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<!-- include but do not categorize -->
@@ -35,69 +35,69 @@
<feature url="features/org.mozilla.xulrunner.feature_0.0.0.jar" id="org.mozilla.xulrunner.feature" version="0.0.0"></feature>
<feature url="features/org.jboss.tools.seam.feature_0.0.0.jar" id="org.jboss.tools.seam.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.cdi.feature_0.0.0.jar" id="org.jboss.tools.cdi.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.cdi.seam.feature_0.0.0.jar" id="org.jboss.tools.cdi.seam.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.jmx.feature_0.0.0.jar" id="org.jboss.tools.jmx.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.ide.eclipse.as.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<!-- only in JBT -->
<feature url="features/org.jboss.tools.openshift.express.feature_0.0.0.jar" id="org.jboss.tools.openshift.express.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.ide.eclipse.as.server.egit.integration.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.server.egit.integration.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.ide.eclipse.archives.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.hibernate.eclipse.feature_0.0.0.jar" id="org.hibernate.eclipse.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
<category name="DataTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.ide.eclipse.freemarker.feature_0.0.0.jar" id="org.jboss.ide.eclipse.freemarker.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.struts.feature_0.0.0.jar" id="org.jboss.tools.struts.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<!-- only in JBT -->
<feature url="features/org.jboss.tools.ws.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar" id="org.jboss.tools.portlet.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.project.examples.feature_0.0.0.jar" id="org.jboss.tools.project.examples.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
@@ -106,7 +106,7 @@
<category name="WebTools" />
</feature>
<feature url="features/org.jboss.tools.community.project.examples.feature_0.0.0.jar" id="org.jboss.tools.community.project.examples.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.birt.feature_0.0.0.jar" id="org.jboss.tools.birt.feature" version="0.0.0">
@@ -147,7 +147,7 @@
</feature>
<feature url="features/org.jboss.tools.common.jdt.feature_0.0.0.jar" id="org.jboss.tools.common.jdt.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<!-- include but do not categorize -->
<feature url="features/org.jboss.tools.common.feature_0.0.0.jar" id="org.jboss.tools.common.feature" version="0.0.0"></feature>
@@ -157,23 +157,23 @@
<feature url="features/org.jboss.tools.common.verification.feature_0.0.0.jar" id="org.jboss.tools.common.verification.feature" version="0.0.0"></feature>
<feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.core.feature_0.0.0.jar" id="org.jboss.tools.runtime.core.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.as.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.as.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.seam.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.seam.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.usage.feature_0.0.0.jar" id="org.jboss.tools.usage.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<!-- categories - see also ../../../common/aggregateRepos.*.properties -->
@@ -184,13 +184,11 @@
</description>
</category-def>
- <category-def name="AllTools" label="All JBoss Tools 3.3">
- <description>Contains ALL the plugins that are available from
- JBoss Tools except those
- related to integration with 3rd party
- plugins. Selecting this
- category will give you all tools needed for
- both Web and Seam Development.
+ <category-def name="AbridgedTools" label="Abridged JBoss Tools 3.3">
+ <description>Contains most of the JBoss Tools features.
+ Excluded are those related to integration with 3rd party
+ plugins. Selecting this category will give you all tools
+ needed for Web and Seam Development.
</description>
</category-def>
Modified: branches/jbosstools-3.3.0.M4/build/aggregate/soa-site/site.xml
===================================================================
--- branches/jbosstools-3.3.0.M4/build/aggregate/soa-site/site.xml 2011-10-26 16:21:25 UTC (rev 36015)
+++ branches/jbosstools-3.3.0.M4/build/aggregate/soa-site/site.xml 2011-10-26 17:44:59 UTC (rev 36016)
@@ -5,18 +5,18 @@
</description>
<feature url="features/org.jboss.tools.esb.feature_0.0.0.jar" id="org.jboss.tools.esb.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.smooks.feature_0.0.0.jar" id="org.jboss.tools.smooks.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
<category name="DataTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.jbpm4.feature_0.0.0.jar" id="org.jboss.tools.jbpm4.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
@@ -25,50 +25,48 @@
<!-- jBPM Tools & Flow features -->
<feature url="features/org.jboss.tools.jbpm.convert.feature_0.0.0.jar" id="org.jboss.tools.jbpm.convert.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.jbpm.common.feature_0.0.0.jar" id="org.jboss.tools.jbpm.common.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.jbpm3.feature_0.0.0.jar" id="org.jboss.tools.jbpm3.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.jboss.tools.modeshape.rest.feature_0.0.0.jar" id="org.jboss.tools.modeshape.rest.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.core.feature_0.0.0.jar" id="org.jboss.tools.runtime.core.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.drools.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.drools.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.esb.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.esb.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.runtime.jbpm.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.jbpm.detector.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
<feature url="features/org.jboss.tools.usage.feature_0.0.0.jar" id="org.jboss.tools.usage.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
</feature>
- <category-def name="AllTools" label="All JBoss Tools - SOA Tooling 3.3">
+ <category-def name="AbridgedTools" label="Abridged JBoss Tools - SOA Tooling 3.3">
<description>
- Contains ALL the plugins that are available from
- JBoss Tools - SOA Tooling - except those
- related to integration with 3rd party
- plugins. Selecting this
- category will give you all tools needed for
- SOA Development.
+ Contains most of the JBoss Tools - SOA Tooling features.
+ Excluded are those related to integration with 3rd party
+ plugins. Selecting this category will give you all tools
+ needed for SOA Development.
</description>
</category-def>
@@ -105,16 +103,16 @@
<!-- aggregated from other sources -->
<feature url="features/org.drools.eclipse.feature_0.0.0.jar" id="org.drools.eclipse.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
<category name="GeneralTools" />
</feature>
<feature url="features/org.drools.eclipse.task.feature_0.0.0.jar" id="org.drools.eclipse.task.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
<feature url="features/org.guvnor.tools.feature_0.0.0.jar" id="org.guvnor.tools.feature" version="0.0.0">
- <category name="AllTools" />
+ <category name="AbridgedTools" />
<category name="SOATools" />
</feature>
13 years, 4 months