JBoss Tools SVN: r42578 - in trunk: cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/validation/java and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2012-07-13 16:41:30 -0400 (Fri, 13 Jul 2012)
New Revision: 42578
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CDIUIAllTests.java
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/validation/java/CDIAsYouTypeInJavaValidationTest.java
trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java/JavaDirtyRegionProcessor.java
trunk/common/tests/org.jboss.tools.common.base.test/src/org/jboss/tools/common/base/test/validation/AbstractAsYouTypeValidationTest.java
trunk/common/tests/org.jboss.tools.common.base.test/src/org/jboss/tools/common/base/test/validation/java/BaseAsYouTypeInJavaValidationTest.java
Log:
JBIDE-10611
As-you-type CDI validation
Improved detection if CDI Validation is needed
JUnit Test Is added for CDI As-You-Type Validation
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CDIUIAllTests.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CDIUIAllTests.java 2012-07-13 18:33:50 UTC (rev 42577)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/CDIUIAllTests.java 2012-07-13 20:41:30 UTC (rev 42578)
@@ -65,13 +65,8 @@
suite.addTestSuite(ELReferencesQueryParticipantTest.class);
suite.addTestSuite(CATest.class);
suite.addTestSuite(OpenCDINamedBeanDialogTest.class);
+ suite.addTestSuite(CDIAsYouTypeInJavaValidationTest.class);
- /*
- * The following test is reserved for CDI As-You-Type Validation:
- *
- * suite.addTestSuite(CDIAsYouTypeInJavaValidationTest.class);
- */
-
suiteAll.addTest(new CDICoreTestSetup(suite));
suiteAll.addTestSuite(AddQualifiersToBeanWizardTest.class);
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/validation/java/CDIAsYouTypeInJavaValidationTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/validation/java/CDIAsYouTypeInJavaValidationTest.java 2012-07-13 18:33:50 UTC (rev 42577)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/validation/java/CDIAsYouTypeInJavaValidationTest.java 2012-07-13 20:41:30 UTC (rev 42578)
@@ -11,14 +11,12 @@
package org.jboss.tools.cdi.ui.test.validation.java;
import org.eclipse.core.resources.IProject;
-import org.eclipse.jdt.core.JavaModelException;
-import org.eclipse.jface.preference.IPreferenceStore;
+import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.text.BadLocationException;
+import org.eclipse.jface.text.source.Annotation;
import org.jboss.tools.cdi.core.test.tck.TCKTest;
+import org.jboss.tools.common.base.test.validation.AbstractAsYouTypeValidationTest;
import org.jboss.tools.common.base.test.validation.java.BaseAsYouTypeInJavaValidationTest;
-import org.jboss.tools.common.preferences.SeverityPreferences;
-import org.jboss.tools.jst.web.kb.WebKbPlugin;
-import org.jboss.tools.jst.web.kb.preferences.ELSeverityPreferences;
/**
*
@@ -26,47 +24,123 @@
*
*/
public class CDIAsYouTypeInJavaValidationTest extends TCKTest {
- private static final String PAGE_NAME = "JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/el/TestBean.java";
-
+ private static final String PAGE_NAME = "JavaSource/org/jboss/jsr299/tck/tests/jbt/validation/NPEValidation.java";
+ private static final String RESOURCE_MARKER_TYPE = "org.jboss.tools.cdi.core.cdiproblem";
+
private BaseAsYouTypeInJavaValidationTest baseTest = null;
protected IProject project;
- private static final String [][] EL2VALIDATE =
+ private static final String [][] ANNOTATIONS2VALIDATE =
{
- {"#{namedBean.foos}", "\"foos\" cannot be resolved"},
- {"#{snamedBean.foo}", "\"snamedBean\" cannot be resolved"},
- {"#{['}", "EL syntax error: Expecting expression."}
+ {"@Inject", "Multiple beans are eligible for injection to the injection point [JSR-299 §5.2.1]"},
+ {"@Produces", "Producer cannot be declared in a decorator [JSR-299 §3.3.2]"}
};
public void setUp() throws Exception {
project = TCKTest.findTestProject();
if (baseTest == null) {
- baseTest = new BaseAsYouTypeInJavaValidationTest(project);
+ baseTest = new BaseAsYouTypeInJavaValidationTest(project, RESOURCE_MARKER_TYPE);
}
}
- public void testAsYouTypeInJavaValidation() throws JavaModelException, BadLocationException {
-/*
- * Reserved for a future test
- *
+
+ public void testAsYouTypeInJavaValidation() throws BadLocationException, CoreException {
assertNotNull("Test project '" + TCKTest.MAIN_PROJECT_NAME + "' is not prepared", project);
- baseTest.openEditor(PAGE_NAME);
- IPreferenceStore store = WebKbPlugin.getDefault().getPreferenceStore();
- String defaultValidateUnresolvedEL = SeverityPreferences.ENABLE;
- String defaultUnknownELVariableName = SeverityPreferences.IGNORE;
- try {
- defaultValidateUnresolvedEL = store.getString(ELSeverityPreferences.RE_VALIDATE_UNRESOLVED_EL);
- defaultUnknownELVariableName = store.getString(ELSeverityPreferences.UNKNOWN_EL_VARIABLE_NAME);
- store.setValue(ELSeverityPreferences.RE_VALIDATE_UNRESOLVED_EL, SeverityPreferences.ENABLE);
- store.setValue(ELSeverityPreferences.UNKNOWN_EL_VARIABLE_NAME, SeverityPreferences.ERROR);
- for (int i = 0; i < EL2VALIDATE.length; i++) {
- baseTest.doAsYouTipeInJavaValidationTest(EL2VALIDATE[i][0], EL2VALIDATE[i][1]);
+ for (int i = 0; i < ANNOTATIONS2VALIDATE.length; i++) {
+ baseTest.openEditor(PAGE_NAME);
+ try {
+ doAsYouTypeValidationMarkerAnnotationsRemovalTest(ANNOTATIONS2VALIDATE[i][0], ANNOTATIONS2VALIDATE[i][1]);
+ } finally {
+ baseTest.closeEditor();
+ }
}
- } finally {
- store.setValue(ELSeverityPreferences.RE_VALIDATE_UNRESOLVED_EL, defaultValidateUnresolvedEL);
- store.setValue(ELSeverityPreferences.UNKNOWN_EL_VARIABLE_NAME, defaultUnknownELVariableName);
- baseTest.closeEditor();
+ }
+
+
+ /**
+ * The test procedure steps:
+ * - Find EL by a given number
+ * - Set up a broken EL and save the document => see problem marker appearance on that EL
+ * - Set up a another broken EL => see annotation appearance on that EL instead of a problem marker
+ * (an old problem marker has to disappear)
+ * - Set up a good EL again => see annotation to disappear on that EL
+ *
+ * @param goodEL
+ * @param elToValidate
+ * @param errorMessage
+ * @param numberOfRegionToTest
+ * @throws BadLocationException
+ * @throws CoreException
+ */
+ public void doAsYouTypeValidationMarkerAnnotationsRemovalTest(String annotation, String errorMessage) throws BadLocationException, CoreException {
+
+ //============================
+ // The test procedure steps:
+ // - Find wrong annotation
+ //============================
+
+ String documentContent = baseTest.getDocument().get();
+
+ int start = (documentContent == null ? -1 : documentContent
+ .indexOf(annotation, 0));
+ assertFalse("No annotation " + annotation + " found in document", (start == -1));
+ int length = annotation.length();
+
+ // do check marker and marker annotation appeared here
+ int line = baseTest.getDocument().getLineOfOffset(start);
+ baseTest.assertResourceMarkerIsCreated(baseTest.getFile(), toRegex(errorMessage), line + 1);
+
+ Annotation problemAnnotation = baseTest.waitForAnnotation(
+ start, start + length, errorMessage, AbstractAsYouTypeValidationTest.MAX_SECONDS_TO_WAIT, true, true);
+ assertNotNull("Problem Marker Annotation for " + annotation + " not found!", problemAnnotation);
+
+ String message = problemAnnotation.getText();
+ assertEquals(
+ "Not expected error message found in ProblemAnnotation. Expected: ["
+ + errorMessage + "], Found: [" + message + "]",
+ errorMessage, message);
+
+ //=================================================================================================
+ // - Remove broken Annotation => see error annotation to disappear
+ // (an old problem marker annotation has to disappear)
+ //=================================================================================================
+
+ baseTest.getDocument().replace(start, length, "");
+
+ problemAnnotation = baseTest.waitForAnnotation(
+ start, start + length, null, AbstractAsYouTypeValidationTest.MAX_SECONDS_TO_WAIT, true, false); // Still use the same length (Just to have a place to look in)
+ assertNull("Problem Annotation has not disappeared!", problemAnnotation);
+
+ //=================================================================================================
+ // - Restore broken Annotation => see error annotation appearance
+ //=================================================================================================
+
+ baseTest.getDocument().replace(start, 0, annotation);
+
+ problemAnnotation = baseTest.waitForAnnotation(
+ start, start + length, errorMessage, AbstractAsYouTypeValidationTest.MAX_SECONDS_TO_WAIT, false, true);
+
+ message = problemAnnotation.getText();
+ assertEquals(
+ "Not expected error message found in ProblemAnnotation. Expected: ["
+ + errorMessage + "], Found: [" + message + "]",
+ errorMessage, message);
+
+ assertNotNull("No Problem Annotation found for wrong annotation " + annotation + "!", problemAnnotation);
+ }
+
+ private String toRegex(String text) {
+ StringBuilder result = new StringBuilder(text);
+
+ int i = -1;
+ while ((i = result.indexOf("[", i+1)) != -1) {
+ result.insert(i++, '\\');
}
- */
+ i = -1;
+ while ((i = result.indexOf("]", i+1)) != -1) {
+ result.insert(i++, '\\');
+ }
+
+ return result.toString();
}
}
Modified: trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java/JavaDirtyRegionProcessor.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java/JavaDirtyRegionProcessor.java 2012-07-13 18:33:50 UTC (rev 42577)
+++ trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java/JavaDirtyRegionProcessor.java 2012-07-13 20:41:30 UTC (rev 42578)
@@ -17,6 +17,8 @@
import org.eclipse.core.resources.IFile;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IJavaElement;
+import org.eclipse.jdt.core.IMember;
+import org.eclipse.jdt.core.ISourceRange;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.ui.text.IJavaPartitions;
import org.eclipse.jface.text.BadLocationException;
@@ -163,9 +165,7 @@
/**
* This method removes from annotation model each annotation stored
* in JavaELProblemReporter.fAnnotations(Annotation, Position) that
- * 1) either has position inside [start,end] region;
- * 2) or exists in fAlwaysRemoveAnnotations
- * that indicates it should be removed without regard to its actual position.
+ * has position inside [start,end] region;
*/
public void clearAnnotations(int start, int end) {
if (fAnnotations.isEmpty()) {
@@ -174,18 +174,37 @@
Annotation[] annotations = fAnnotations.toArray(new Annotation[0]);
for (Annotation annotation : annotations) {
Position position = getAnnotationModel().getPosition(annotation);
- if (fAlwaysRemoveAnnotations.contains(annotation) || ( position != null && position.getOffset() >= start &&
+ if (!fAlwaysRemoveAnnotations.contains(annotation) && (position != null && position.getOffset() >= start &&
position.getOffset() <= end)) {
// remove annotation from managed annotations map as well as from the model
fAnnotations.remove(annotation);
- if (fAlwaysRemoveAnnotations.contains(annotation))
- fAlwaysRemoveAnnotations.remove(annotation);
getAnnotationModel().removeAnnotation(annotation);
}
}
}
/**
+ * This method removes from annotation model each annotation stored
+ * in JavaELProblemReporter.fAnnotations(Annotation, Position) that
+ * or exists in fAlwaysRemoveAnnotations
+ * that indicates it should be removed without regard to its actual position.
+ */
+ public void clearAlwaysRemoveAnnotations() {
+ if (fAnnotations.isEmpty()) {
+ return;
+ }
+ Annotation[] annotations = fAnnotations.toArray(new Annotation[0]);
+ for (Annotation annotation : annotations) {
+ if (fAlwaysRemoveAnnotations.contains(annotation)) {
+ // remove annotation from managed annotations map as well as from the model
+ fAnnotations.remove(annotation);
+ fAlwaysRemoveAnnotations.remove(annotation);
+ getAnnotationModel().removeAnnotation(annotation);
+ }
+ }
+ }
+
+ /**
* Adds annotation to the annotation model, and stores it in fAnnotations (when cleanAllAnnotations = true, that indicates that
* the annotation should be removed without regard to the modified region, the annotation is stored in fAlwaysRemoveAnnotations as well).
*
@@ -417,6 +436,7 @@
// } catch (BadLocationException e) {
// e.printStackTrace();
// }
+ fReporter.clearAlwaysRemoveAnnotations();
fValidatorManager.validateJavaElement(new Region(fStartRegionToProcess, fEndRegionToProcess - fStartRegionToProcess), fHelper, fReporter);
}
}
@@ -456,14 +476,28 @@
continue;
}
- element = unit.getElementAt(position++);
+ element = unit.getElementAt(position);
if (element == null)
continue;
atLeastOneElementIsProcessed = true;
- if (element.getElementType() != IJavaElement.METHOD) {
+ boolean doSkipThisElement = false;
+ if (element instanceof IMember && element.getElementType() == IJavaElement.METHOD) {
+ ISourceRange range = ((IMember)element).getSourceRange();
+ if (position >= range.getOffset()) {
+ try {
+ String text = fDocument.get(range.getOffset(), position - range.getOffset() + 1);
+ if (text.indexOf('{') != -1 && !text.endsWith("}")) {
+ doSkipThisElement = true;
+ position = range.getOffset() + range.getLength();
+ }
+ } catch (BadLocationException e) {
+ // Ignore it and do not skip validation
+ }
+ position++;
+ }
+ } else {
IJavaElement parent = element.getParent();
- boolean doSkipThisElement = false;
while (parent != null && parent.getElementType() != IJavaElement.COMPILATION_UNIT) {
if (parent.getElementType() == IJavaElement.METHOD) {
doSkipThisElement = true;
@@ -471,10 +505,11 @@
}
parent = parent.getParent();
}
+ position++;
+ }
- if (!doSkipThisElement)
- return true;
- }
+ if (!doSkipThisElement)
+ return true;
}
} catch (JavaModelException e) {
LogHelper.logError(CommonValidationPlugin.getDefault(), e);
Modified: trunk/common/tests/org.jboss.tools.common.base.test/src/org/jboss/tools/common/base/test/validation/AbstractAsYouTypeValidationTest.java
===================================================================
--- trunk/common/tests/org.jboss.tools.common.base.test/src/org/jboss/tools/common/base/test/validation/AbstractAsYouTypeValidationTest.java 2012-07-13 18:33:50 UTC (rev 42577)
+++ trunk/common/tests/org.jboss.tools.common.base.test/src/org/jboss/tools/common/base/test/validation/AbstractAsYouTypeValidationTest.java 2012-07-13 20:41:30 UTC (rev 42578)
@@ -45,7 +45,7 @@
*/
@SuppressWarnings("restriction")
public abstract class AbstractAsYouTypeValidationTest extends TestCase {
- private static final int MAX_SECONDS_TO_WAIT = 10;
+ public static final int MAX_SECONDS_TO_WAIT = 5;
protected String fileName;
protected IProject project = null;
@@ -104,6 +104,13 @@
return documentProvider.getAnnotationModel(textEditor.getEditorInput());
}
+ public IDocument getDocument() {
+ return document;
+ }
+ public IFile getFile() {
+ return file;
+ }
+
protected abstract ISourceViewer getTextViewer();
/**
@@ -316,7 +323,7 @@
return true;
}
- private Annotation waitForAnnotation(final int start, final int end, final String errorMessage, final int seconds, final boolean markerAnnotation, final boolean waitForAppearance) {
+ public Annotation waitForAnnotation(final int start, final int end, final String errorMessage, final int seconds, final boolean markerAnnotation, final boolean waitForAppearance) {
final Annotation[] result = new Annotation[] { null };
Display.getDefault().syncExec(new Runnable() {
Modified: trunk/common/tests/org.jboss.tools.common.base.test/src/org/jboss/tools/common/base/test/validation/java/BaseAsYouTypeInJavaValidationTest.java
===================================================================
--- trunk/common/tests/org.jboss.tools.common.base.test/src/org/jboss/tools/common/base/test/validation/java/BaseAsYouTypeInJavaValidationTest.java 2012-07-13 18:33:50 UTC (rev 42577)
+++ trunk/common/tests/org.jboss.tools.common.base.test/src/org/jboss/tools/common/base/test/validation/java/BaseAsYouTypeInJavaValidationTest.java 2012-07-13 20:41:30 UTC (rev 42578)
@@ -34,11 +34,14 @@
public class BaseAsYouTypeInJavaValidationTest extends AbstractAsYouTypeValidationTest {
public static final String MARKER_TYPE = "org.jboss.tools.common.validation.temp"; //$NON-NLS-1$
public static final String RESOURCE_MARKER_TYPE = "org.jboss.tools.jst.web.kb.elproblem"; //$NON-NLS-1$
+ private String fResourceMarkerType = null;
- public BaseAsYouTypeInJavaValidationTest(IProject project) {
+ public BaseAsYouTypeInJavaValidationTest(IProject project, String resourceMarkerType) {
this.project = project;
+ this.fResourceMarkerType = resourceMarkerType;
}
public BaseAsYouTypeInJavaValidationTest() {
+ this.fResourceMarkerType = RESOURCE_MARKER_TYPE;
}
@Override
@@ -87,20 +90,20 @@
String type;
try {
type = marker.getType();
- return RESOURCE_MARKER_TYPE.equals(type);
+ return fResourceMarkerType.equals(type);
} catch (CoreException e) {
e.printStackTrace();
}
return false;
}
@Override
- protected void assertResourceMarkerIsCreated(IFile file,
+ public void assertResourceMarkerIsCreated(IFile file,
String errorMessage, int line) throws CoreException {
IMarker[] markers = AbstractResourceMarkerTest.findMarkers(
- file, RESOURCE_MARKER_TYPE, errorMessage, true);
+ file, fResourceMarkerType, errorMessage, true);
- assertNotNull("Resource Marker not found for type: " + RESOURCE_MARKER_TYPE + ", message: [" + errorMessage + "] at line: " + line, markers);
- assertFalse("Resource Marker not found for type: " + RESOURCE_MARKER_TYPE + ", message: [" + errorMessage + "] at line: " + line, markers.length == 0);
+ assertNotNull("Resource Marker not found for type: " + fResourceMarkerType + ", message: [" + errorMessage + "] at line: " + line, markers);
+ assertFalse("Resource Marker not found for type: " + fResourceMarkerType + ", message: [" + errorMessage + "] at line: " + line, markers.length == 0);
for (IMarker m : markers) {
Integer l = m.getAttribute(IMarker.LINE_NUMBER, -1);
@@ -109,6 +112,6 @@
}
}
- fail("Resource Marker not found for type: " + RESOURCE_MARKER_TYPE + ", message: [" + errorMessage + "] at line: " + line);
+ fail("Resource Marker not found for type: " + fResourceMarkerType + ", message: [" + errorMessage + "] at line: " + line);
}
}
13 years, 9 months
JBoss Tools SVN: r42576 - trunk/download.jboss.org/jbosstools/updates/development/juno.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-07-13 14:31:51 -0400 (Fri, 13 Jul 2012)
New Revision: 42576
Modified:
trunk/download.jboss.org/jbosstools/updates/development/juno/compositeArt...
trunk/download.jboss.org/jbosstools/updates/development/juno/compositeCon...
trunk/download.jboss.org/jbosstools/updates/development/juno/index.html
trunk/download.jboss.org/jbosstools/updates/development/juno/jbosstools-d...
Log:
replace pointer to JBT 3.3.0.Beta3 with latest nightly 3.4 build (which will stop working after the next respin -- really, we need to publish a nightly to a more stable location until we have our first M1, or this won't work
Modified: trunk/download.jboss.org/jbosstools/updates/development/juno/compositeArt...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/compositeArt... 2012-07-13 15:05:16 UTC (rev 42575)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/compositeArt... 2012-07-13 18:31:51 UTC (rev 42576)
@@ -7,9 +7,9 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1337366506000'/>
+<property name='p2.timestamp' value='1342204060000'/>
</properties>
<children size='1'>
-<child location='http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/'/>
+<child location='http://download.jboss.org/jbosstools/updates/nightly/core/trunk/'/>
</children>
</repository>
Modified: trunk/download.jboss.org/jbosstools/updates/development/juno/compositeCon...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/compositeCon... 2012-07-13 15:05:16 UTC (rev 42575)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/compositeCon... 2012-07-13 18:31:51 UTC (rev 42576)
@@ -7,9 +7,9 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1337366506000'/>
+<property name='p2.timestamp' value='1342204064000'/>
</properties>
<children size='1'>
-<child location='http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/'/>
+<child location='http://download.jboss.org/jbosstools/updates/nightly/core/trunk/'/>
</children>
</repository>
Modified: trunk/download.jboss.org/jbosstools/updates/development/juno/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/index.html 2012-07-13 15:05:16 UTC (rev 42575)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/index.html 2012-07-13 18:31:51 UTC (rev 42576)
@@ -1,6 +1,6 @@
<html>
<head>
-<title>JBoss Tools - Core - Development Milestone Update Site: 3.3.0.v20120514-1409-H155-Beta3</title>
+<title>JBoss Tools - Core - Nightly Build Update Site: 3.4.0.v20120713-1256-H5190-M1</title>
<style>
@import url("http://download.jboss.org/jbosstools/updates/web/site.css");
</style>
@@ -21,21 +21,21 @@
<tr>
<td>      </td>
<td>
- <h2 class="title">JBoss Tools - Core - Development Milestone Update Site</h2>
+ <h2 class="title">JBoss Tools - Core - Nightly Build Update Site</h2>
<table width="100%">
<tr class="header">
- <td class="sub-header" width="100%"><span>Latest Build: 3.3.0.v20120514-1409-H155-Beta3</span></td>
+ <td class="sub-header" width="100%"><span>Latest Build: 3.4.0.v20120713-1256-H5190-M1</span></td>
</tr>
<tr class="light-row" style="height: 30px">
<td class="bodyText">
- <p class="bodyText">This is the <b>Development Milestone</b>
+ <p class="bodyText">This is the <b>Nightly Build</b>
Update Site for JBoss Tools - Core.
<blockquote style="border: 1px dashed #1778be; padding: 2px">
<ol>
<li>To <a class="link"
- href="http://www.jboss.org/tools/download/installation/update_3_3">install</a>
- from this site, start up Eclipse 3.7, then do:
+ href="http://www.jboss.org/tools/download/installation/update_3_4">install</a>
+ from this site, start up Eclipse 4.2 (Juno), then do:
<ul>
<code><strong>Help > Install New Software... ></strong></code>
</ul>
@@ -54,7 +54,7 @@
offline installation. See <a class="link"
href="http://www.jboss.org/tools/download">JBoss Tools
Downloads</a>.<br /> If you downloaded this site as a zip, see
- <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">Installation README</a>.
+ <a href="README.installation.txt">Installation README</a>.
See also <a
href="http://www.jboss.org/tools/download/installation">Installation
methods</a>.
@@ -82,10 +82,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.ide.eclipse.archives.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.ide.eclipse.archives.feature_3.4.0.v20120713-1433-H968-M1.jar">org.jboss.ide.eclipse.archives.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.2.1.v20120504-0235-H64-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1433-H968-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -100,10 +100,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.ide.eclipse.archives.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.ide.eclipse.archives.feature.source_3.4.0.v20120713-1433-H968-M1.jar">org.jboss.ide.eclipse.archives.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.2.1.v20120504-0235-H64-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1433-H968-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -115,10 +115,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.ide.eclipse.as.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.ide.eclipse.as.feature_2.4.0.v20120713-1521-H1383-M1.jar">org.jboss.ide.eclipse.as.feature</a>
</td>
<td>
-<span style="font-size:x-small">2.3.0.v20120504-2054-H105-Beta3</span>
+<span style="font-size:x-small">2.4.0.v20120713-1521-H1383-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -133,10 +133,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.ide.eclipse.as.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.ide.eclipse.as.feature.source_2.4.0.v20120713-1521-H1383-M1.jar">org.jboss.ide.eclipse.as.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">2.3.0.v20120504-2054-H105-Beta3</span>
+<span style="font-size:x-small">2.4.0.v20120713-1521-H1383-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -148,10 +148,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.ide.eclipse.freemarker.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.ide.eclipse.freemarker.feature_1.3.0.v20120713-1433-H990-M1.jar">org.jboss.ide.eclipse.freemarker.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-2043-H69-Beta3</span>
+<span style="font-size:x-small">1.3.0.v20120713-1433-H990-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -166,10 +166,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.ide.eclipse.freemarker.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.ide.eclipse.freemarker.feature.source_1.3.0.v20120713-1433-H990-M1.jar">org.jboss.ide.eclipse.freemarker.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-2043-H69-Beta3</span>
+<span style="font-size:x-small">1.3.0.v20120713-1433-H990-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -181,10 +181,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.birt.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.birt.feature_1.4.0.v20120713-1503-H986-M1.jar">org.jboss.tools.birt.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120504-0657-H76-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-1503-H986-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -196,10 +196,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.birt.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.birt.feature.source_1.4.0.v20120713-1503-H986-M1.jar">org.jboss.tools.birt.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120504-0657-H76-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-1503-H986-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -211,10 +211,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.cdi.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.cdi.deltaspike.feature_1.3.0.v20120713-1524-H1195-M1.jar">org.jboss.tools.cdi.deltaspike.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-0314-H63-Beta3</span>
+<span style="font-size:x-small">1.3.0.v20120713-1524-H1195-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -232,10 +232,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.cdi.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.cdi.deltaspike.feature.source_1.3.0.v20120713-1524-H1195-M1.jar">org.jboss.tools.cdi.deltaspike.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-0314-H63-Beta3</span>
+<span style="font-size:x-small">1.3.0.v20120713-1524-H1195-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -247,10 +247,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.cdi.seam.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.cdi.feature_1.3.0.v20120713-1524-H1195-M1.jar">org.jboss.tools.cdi.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-0314-H63-Beta3</span>
+<span style="font-size:x-small">1.3.0.v20120713-1524-H1195-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -268,10 +268,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.cdi.seam.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.cdi.feature.source_1.3.0.v20120713-1524-H1195-M1.jar">org.jboss.tools.cdi.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-0314-H63-Beta3</span>
+<span style="font-size:x-small">1.3.0.v20120713-1524-H1195-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -283,21 +283,57 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.central.discovery.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.cdi.seam.feature_1.3.0.v20120713-1524-H1195-M1.jar">org.jboss.tools.cdi.seam.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.0.0.v20120514-1749-H82-Beta3</span>
+<span style="font-size:x-small">1.3.0.v20120713-1524-H1195-M1</span>
</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="features/org.jboss.tools.cdi.seam.feature.source_1.3.0.v20120713-1524-H1195-M1.jar">org.jboss.tools.cdi.seam.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120713-1524-H1195-M1</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="features/org.jboss.tools.central.discovery.feature_1.1.0.v20120713-0817-H524-M1.jar">org.jboss.tools.central.discovery.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.1.0.v20120713-0817-H524-M1</span>
+</td>
<td/>
</tr>
<tr style="background-color:
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.central.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.central.discovery.feature.source_1.1.0.v20120713-0817-H524-M1.jar">org.jboss.tools.central.discovery.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.0.0.v20120514-1749-H82-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120713-0817-H524-M1</span>
</td>
<td/>
</tr>
@@ -305,10 +341,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.core.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.central.feature_1.1.0.v20120713-0817-H524-M1.jar">org.jboss.tools.central.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120713-0817-H524-M1</span>
</td>
<td/>
</tr>
@@ -316,12 +352,34 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.core.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.central.feature.source_1.1.0.v20120713-0817-H524-M1.jar">org.jboss.tools.central.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120713-0817-H524-M1</span>
</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="features/org.jboss.tools.common.core.feature_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.core.feature</a>
+</td>
<td>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="features/org.jboss.tools.common.core.feature.source_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.core.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
+</td>
+<td>
<span style="font-size:x-small">
|
AllSources</span>
@@ -331,10 +389,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.feature_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td/>
</tr>
@@ -342,10 +400,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.feature.source_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -357,10 +415,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.jdt.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.jdt.feature_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.jdt.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -375,10 +433,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.jdt.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.jdt.feature.source_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.jdt.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -390,14 +448,17 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.mylyn.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.mylyn.feature_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.mylyn.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td>
<span style="font-size:x-small">
|
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
GeneralTools</span>
</td>
</tr>
@@ -405,10 +466,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.mylyn.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.mylyn.feature.source_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.mylyn.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -420,10 +481,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.text.ext.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.text.ext.feature_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.text.ext.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td/>
</tr>
@@ -431,10 +492,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.text.ext.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.text.ext.feature.source_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.text.ext.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -446,10 +507,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.ui.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.ui.feature_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.ui.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td/>
</tr>
@@ -457,10 +518,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.ui.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.ui.feature.source_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.ui.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -472,10 +533,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.verification.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.verification.feature_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.verification.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td/>
</tr>
@@ -483,10 +544,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.common.verification.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.common.verification.feature.source_3.4.0.v20120713-1411-H976-M1.jar">org.jboss.tools.common.verification.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120510-2001-H58-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1411-H976-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -498,10 +559,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.community.central.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.community.central.feature_1.1.0.v20120713-0817-H524-M1.jar">org.jboss.tools.community.central.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.0.0.v20120514-1749-H82-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120713-0817-H524-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -516,14 +577,29 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.community.project.examples.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.community.central.feature.source_1.1.0.v20120713-0817-H524-M1.jar">org.jboss.tools.community.central.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.1.v20120504-1659-H91-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120713-0817-H524-M1</span>
</td>
<td>
<span style="font-size:x-small">
|
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="features/org.jboss.tools.community.project.examples.feature_1.4.0.v20120713-0747-H694-M1.jar">org.jboss.tools.community.project.examples.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.4.0.v20120713-0747-H694-M1</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
AbridgedTools</span>
<span style="font-size:x-small">
|
@@ -531,13 +607,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.community.project.examples.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.community.project.examples.feature.source_1.4.0.v20120713-0747-H694-M1.jar">org.jboss.tools.community.project.examples.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.1.v20120504-1659-H91-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0747-H694-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -546,13 +622,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.forge.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.forge.feature_1.1.0.v20120713-1433-H782-M1.jar">org.jboss.tools.forge.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.0.0.v20120504-2048-H71-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120713-1433-H782-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -564,13 +640,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.forge.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.forge.feature.source_1.1.0.v20120713-1433-H782-M1.jar">org.jboss.tools.forge.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.0.0.v20120504-2048-H71-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120713-1433-H782-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -579,13 +655,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.gwt.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.gwt.feature_1.1.0.v20120706-0605-H704-M1.jar">org.jboss.tools.gwt.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.0.2.v20120504-2045-H56-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120706-0605-H704-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -594,13 +670,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.gwt.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.gwt.feature.source_1.1.0.v20120706-0605-H704-M1.jar">org.jboss.tools.gwt.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.0.2.v20120504-2045-H56-Beta3</span>
+<span style="font-size:x-small">1.1.0.v20120706-0605-H704-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -609,13 +685,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.jmx.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.jmx.feature_1.4.0.v20120713-1516-H879-M1.jar">org.jboss.tools.jmx.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-0232-H50-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-1516-H879-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -627,13 +703,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.jmx.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.jmx.feature.source_1.4.0.v20120713-1516-H879-M1.jar">org.jboss.tools.jmx.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-0232-H50-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-1516-H879-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -642,13 +718,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.jsf.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.jsf.feature_3.4.0.v20120713-1521-H1026-M1.jar">org.jboss.tools.jsf.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-0520-H88-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1521-H1026-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -660,13 +736,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.jsf.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.jsf.feature.source_3.4.0.v20120713-1521-H1026-M1.jar">org.jboss.tools.jsf.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-0520-H88-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1521-H1026-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -675,13 +751,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.jst.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.jst.feature_3.4.0.v20120713-1447-H1127-M1.jar">org.jboss.tools.jst.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2056-H66-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1447-H1127-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -693,13 +769,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.jst.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.jst.feature.source_3.4.0.v20120713-1447-H1127-M1.jar">org.jboss.tools.jst.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2056-H66-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1447-H1127-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -708,13 +784,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.cdi.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.cdi.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.cdi.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -726,13 +802,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.cdi.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.cdi.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.cdi.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -741,13 +817,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -759,13 +835,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -774,13 +850,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.gwt.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.gwt.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.gwt.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -789,13 +865,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.gwt.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.gwt.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.gwt.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -804,13 +880,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.hibernate.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.hibernate.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.hibernate.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -822,13 +898,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.hibernate.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.hibernate.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.hibernate.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -837,13 +913,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.jaxrs.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jaxrs.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jaxrs.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -855,13 +931,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.jaxrs.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jaxrs.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jaxrs.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -870,28 +946,31 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.jbosspackaging.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jbosspackaging.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jbosspackaging.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
|
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
MavenTools</span>
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.jbosspackaging.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jbosspackaging.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jbosspackaging.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -900,13 +979,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.jpa.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jdt.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jdt.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -918,13 +997,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.jpa.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jdt.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jdt.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -933,13 +1012,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.jsf.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jpa.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jpa.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -951,13 +1030,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.jsf.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jpa.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jpa.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -966,13 +1045,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.portlet.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jsf.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jsf.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -984,13 +1063,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.portlet.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.jsf.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.jsf.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -999,13 +1078,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.profiles.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.portlet.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.portlet.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1017,13 +1096,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.profiles.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.portlet.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.portlet.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1032,13 +1111,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.project.examples.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.profiles.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.profiles.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1050,13 +1129,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.project.examples.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.profiles.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.profiles.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1065,13 +1144,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.seam.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.project.examples.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.project.examples.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1083,13 +1162,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.seam.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.project.examples.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.project.examples.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1098,13 +1177,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.sourcelookup.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.seam.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.seam.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1116,13 +1195,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.maven.sourcelookup.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.seam.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.seam.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120514-1625-H96-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1131,17 +1210,50 @@
</td>
</tr>
<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.sourcelookup.feature_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.sourcelookup.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.openshift.egit.integration.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.maven.sourcelookup.feature.source_1.4.0.v20120713-0756-H674-M1.jar">org.jboss.tools.maven.sourcelookup.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">2.3.0.v20120510-2034-H93-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0756-H674-M1</span>
</td>
<td>
<span style="font-size:x-small">
|
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="features/org.jboss.tools.openshift.egit.integration.feature_2.4.0.v20120713-1608-H511-M1.jar">org.jboss.tools.openshift.egit.integration.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">2.4.0.v20120713-1608-H511-M1</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
AbridgedTools</span>
<span style="font-size:x-small">
|
@@ -1149,13 +1261,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.openshift.egit.integration.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.openshift.egit.integration.feature.source_2.4.0.v20120713-1608-H511-M1.jar">org.jboss.tools.openshift.egit.integration.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">2.3.0.v20120510-2034-H93-Beta3</span>
+<span style="font-size:x-small">2.4.0.v20120713-1608-H511-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1164,13 +1276,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.openshift.express.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.openshift.express.feature_2.4.0.v20120713-1608-H511-M1.jar">org.jboss.tools.openshift.express.feature</a>
</td>
<td>
-<span style="font-size:x-small">2.3.0.v20120510-2034-H93-Beta3</span>
+<span style="font-size:x-small">2.4.0.v20120713-1608-H511-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1182,13 +1294,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.openshift.express.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.openshift.express.feature.source_2.4.0.v20120713-1608-H511-M1.jar">org.jboss.tools.openshift.express.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">2.3.0.v20120510-2034-H93-Beta3</span>
+<span style="font-size:x-small">2.4.0.v20120713-1608-H511-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1197,13 +1309,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.portlet.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.portlet.feature_1.4.0.v20120713-0735-H615-M1.jar">org.jboss.tools.portlet.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-1015-H74-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0735-H615-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1215,13 +1327,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.portlet.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.portlet.feature.source_1.4.0.v20120713-0735-H615-M1.jar">org.jboss.tools.portlet.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.0.v20120504-1015-H74-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0735-H615-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1230,13 +1342,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.project.examples.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.project.examples.feature_1.4.0.v20120713-0747-H694-M1.jar">org.jboss.tools.project.examples.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.2.1.v20120504-1659-H91-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0747-H694-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1248,13 +1360,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.project.examples.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.project.examples.feature.source_1.4.0.v20120713-0747-H694-M1.jar">org.jboss.tools.project.examples.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.1.v20120504-1659-H91-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0747-H694-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1263,13 +1375,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.richfaces.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.richfaces.feature_3.4.0.v20120713-1521-H1026-M1.jar">org.jboss.tools.richfaces.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-0520-H88-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1521-H1026-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1281,13 +1393,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.richfaces.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.richfaces.feature.source_3.4.0.v20120713-1521-H1026-M1.jar">org.jboss.tools.richfaces.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-0520-H88-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1521-H1026-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1296,13 +1408,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.runtime.as.detector.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.runtime.as.detector.feature_1.4.0.v20120713-0734-H756-M1.jar">org.jboss.tools.runtime.as.detector.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120504-1621-H89-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0734-H756-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1314,13 +1426,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.runtime.as.detector.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.runtime.as.detector.feature.source_1.4.0.v20120713-0734-H756-M1.jar">org.jboss.tools.runtime.as.detector.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120504-1621-H89-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0734-H756-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1329,13 +1441,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.runtime.core.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.runtime.core.feature_1.4.0.v20120713-0734-H756-M1.jar">org.jboss.tools.runtime.core.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120504-1621-H89-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0734-H756-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1344,13 +1456,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.runtime.core.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.runtime.core.feature.source_1.4.0.v20120713-0734-H756-M1.jar">org.jboss.tools.runtime.core.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120504-1621-H89-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0734-H756-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1359,13 +1471,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.runtime.seam.detector.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.runtime.seam.detector.feature_1.4.0.v20120713-0734-H756-M1.jar">org.jboss.tools.runtime.seam.detector.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120504-1621-H89-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0734-H756-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1377,13 +1489,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.runtime.seam.detector.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.runtime.seam.detector.feature.source_1.4.0.v20120713-0734-H756-M1.jar">org.jboss.tools.runtime.seam.detector.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.3.0.v20120504-1621-H89-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-0734-H756-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1392,13 +1504,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.seam.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.seam.feature_3.4.0.v20120713-1256-H1063-M1.jar">org.jboss.tools.seam.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-1032-H101-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1256-H1063-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1410,13 +1522,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.seam.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.seam.feature.source_3.4.0.v20120713-1256-H1063-M1.jar">org.jboss.tools.seam.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-1032-H101-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1256-H1063-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1425,13 +1537,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.struts.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.struts.feature_3.4.0.v20120713-1518-H902-M1.jar">org.jboss.tools.struts.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2011-H83-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1518-H902-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1440,13 +1552,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.struts.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.struts.feature.source_3.4.0.v20120713-1518-H902-M1.jar">org.jboss.tools.struts.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2011-H83-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1518-H902-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1455,13 +1567,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.usage.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.usage.feature_1.2.0.v20120713-1428-H777-M1.jar">org.jboss.tools.usage.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.1.0.v20120504-2022-H52-Beta3</span>
+<span style="font-size:x-small">1.2.0.v20120713-1428-H777-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1473,13 +1585,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.usage.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.usage.feature.source_1.2.0.v20120713-1428-H777-M1.jar">org.jboss.tools.usage.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.1.0.v20120504-2022-H52-Beta3</span>
+<span style="font-size:x-small">1.2.0.v20120713-1428-H777-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1488,13 +1600,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.vpe.browsersim.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.vpe.browsersim.feature_3.4.0.v20120713-1501-H1136-M1.jar">org.jboss.tools.vpe.browsersim.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2124-H75-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1501-H1136-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1506,13 +1618,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.vpe.browsersim.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.vpe.browsersim.feature.source_3.4.0.v20120713-1501-H1136-M1.jar">org.jboss.tools.vpe.browsersim.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2124-H75-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1501-H1136-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1521,13 +1633,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.vpe.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.vpe.feature_3.4.0.v20120713-1501-H1136-M1.jar">org.jboss.tools.vpe.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2124-H75-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1501-H1136-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1539,13 +1651,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.vpe.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.vpe.feature.source_3.4.0.v20120713-1501-H1136-M1.jar">org.jboss.tools.vpe.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2124-H75-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1501-H1136-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1554,13 +1666,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.ws.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.ws.feature_1.4.0.v20120713-1610-H1021-M1.jar">org.jboss.tools.ws.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.2.2.v20120514-1752-H106-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-1610-H1021-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1572,13 +1684,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.ws.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.ws.feature.source_1.4.0.v20120713-1610-H1021-M1.jar">org.jboss.tools.ws.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.2.v20120514-1752-H106-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-1610-H1021-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1587,13 +1699,13 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.ws.jaxrs.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.ws.jaxrs.feature_1.4.0.v20120713-1610-H1021-M1.jar">org.jboss.tools.ws.jaxrs.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.2.2.v20120514-1752-H106-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-1610-H1021-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1605,13 +1717,13 @@
</td>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.ws.jaxrs.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.ws.jaxrs.feature.source_1.4.0.v20120713-1610-H1021-M1.jar">org.jboss.tools.ws.jaxrs.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.2.2.v20120514-1752-H106-Beta3</span>
+<span style="font-size:x-small">1.4.0.v20120713-1610-H1021-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1620,24 +1732,24 @@
</td>
</tr>
<tr style="background-color:
- #FFFFFF
+ #EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.xulrunner.feature</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.xulrunner.feature_3.4.0.v20120713-1501-H1136-M1.jar">org.jboss.tools.xulrunner.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2124-H75-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1501-H1136-M1</span>
</td>
<td/>
</tr>
<tr style="background-color:
- #EEEEEE
+ #FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.jboss.tools.xulrunner.feature.source</a>
+<a style="font-size:x-small" href="features/org.jboss.tools.xulrunner.feature.source_3.4.0.v20120713-1501-H1136-M1.jar">org.jboss.tools.xulrunner.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.3.0.v20120504-2124-H75-Beta3</span>
+<span style="font-size:x-small">3.4.0.v20120713-1501-H1136-M1</span>
</td>
<td/>
</tr>
@@ -1652,10 +1764,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.hibernate.eclipse.feature</a>
+<a style="font-size:x-small" href="features/org.hibernate.eclipse.feature_3.6.0.v20120713-1438-H1028-M1.jar">org.hibernate.eclipse.feature</a>
</td>
<td>
-<span style="font-size:x-small">3.4.0.v20120504-2121-H72-Beta3</span>
+<span style="font-size:x-small">3.6.0.v20120713-1438-H1028-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1676,10 +1788,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.hibernate.eclipse.feature.source</a>
+<a style="font-size:x-small" href="features/org.hibernate.eclipse.feature.source_3.6.0.v20120713-1438-H1028-M1.jar">org.hibernate.eclipse.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">3.4.0.v20120504-2121-H72-Beta3</span>
+<span style="font-size:x-small">3.6.0.v20120713-1438-H1028-M1</span>
</td>
<td>
<span style="font-size:x-small">
@@ -1691,10 +1803,10 @@
#EEEEEE
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.mozilla.xulrunner.feature</a>
+<a style="font-size:x-small" href="features/org.mozilla.xulrunner.feature_1.9.218.v20120611-1712-H151-Final.jar">org.mozilla.xulrunner.feature</a>
</td>
<td>
-<span style="font-size:x-small">1.9.218.v20120426-1730-H146-Beta3</span>
+<span style="font-size:x-small">1.9.218.v20120611-1712-H151-Final</span>
</td>
<td/>
</tr>
@@ -1702,10 +1814,10 @@
#FFFFFF
">
<td class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">org.mozilla.xulrunner.feature.source</a>
+<a style="font-size:x-small" href="features/org.mozilla.xulrunner.feature.source_1.9.218.v20120611-1712-H151-Final.jar">org.mozilla.xulrunner.feature.source</a>
</td>
<td>
-<span style="font-size:x-small">1.9.218.v20120426-1730-H146-Beta3</span>
+<span style="font-size:x-small">1.9.218.v20120611-1712-H151-Final</span>
</td>
<td/>
</tr>
@@ -1716,21 +1828,21 @@
</tr>
<tr style="background-color:#EEEEEE">
<td colspan="1" class="rowLine">
-<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">site.xml</a>
+<a style="font-size:x-small" href="site.xml">site.xml</a>
::
- <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">artifacts.jar</a>
+ <a style="font-size:x-small" href="artifacts.jar">artifacts.jar</a>
::
- <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">content.jar</a>
+ <a style="font-size:x-small" href="content.jar">content.jar</a>
</td>
<td colspan="1" class="rowLine">
::
- <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">plugins</a>
+ <a style="font-size:x-small" href="plugins/">plugins</a>
::
- <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/...">features</a>
+ <a style="font-size:x-small" href="features/">features</a>
</td>
<td colspan="1" class="rowLine">
- :: <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/..." style="font-size:x-small">jbosstools-directory.xml</a>
- :: <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/..." style="font-size:x-small">site.properties</a>
+ :: <a href="jbosstools-directory.xml" style="font-size:x-small">jbosstools-directory.xml</a>
+ :: <a href="site.properties" style="font-size:x-small">site.properties</a>
</td>
</tr>
</table><br xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan"/>
Modified: trunk/download.jboss.org/jbosstools/updates/development/juno/jbosstools-d...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/juno/jbosstools-d... 2012-07-13 15:05:16 UTC (rev 42575)
+++ trunk/download.jboss.org/jbosstools/updates/development/juno/jbosstools-d... 2012-07-13 18:31:51 UTC (rev 42576)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
<directory xmlns="http://www.eclipse.org/mylyn/discovery/directory/">
-<entry url="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Beta3.core/..." permitCategories="true"/>
+<entry url="http://download.jboss.org/jbosstools/updates/nightly/core/trunk/plugins/o..." permitCategories="true"/>
</directory>
13 years, 9 months
JBoss Tools SVN: r42575 - 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-07-13 11:05:16 -0400 (Fri, 13 Jul 2012)
New Revision: 42575
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AbstractOpenShiftWizardPage.java
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java
Log:
[JBIDE-12306] resetting wizard models when user switches openshift user in the application wizard
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AbstractOpenShiftWizardPage.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AbstractOpenShiftWizardPage.java 2012-07-13 14:59:11 UTC (rev 42574)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/AbstractOpenShiftWizardPage.java 2012-07-13 15:05:16 UTC (rev 42575)
@@ -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: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java 2012-07-13 14:59:11 UTC (rev 42574)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPage.java 2012-07-13 15:05:16 UTC (rev 42575)
@@ -18,8 +18,6 @@
import org.eclipse.core.databinding.UpdateListStrategy;
import org.eclipse.core.databinding.beans.BeanProperties;
import org.eclipse.core.databinding.conversion.Converter;
-import org.eclipse.core.databinding.observable.list.IObservableList;
-import org.eclipse.core.databinding.observable.list.WritableList;
import org.eclipse.core.databinding.observable.value.IObservableValue;
import org.eclipse.core.databinding.observable.value.IValueChangeListener;
import org.eclipse.core.databinding.observable.value.ValueChangeEvent;
@@ -36,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;
@@ -661,27 +658,16 @@
@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);
}
13 years, 9 months
JBoss Tools SVN: r42574 - trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2012-07-13 10:59:11 -0400 (Fri, 13 Jul 2012)
New Revision: 42574
Modified:
trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide/SelectionLosingByPropertySheet_JBIDE4791.java
Log:
https://issues.jboss.org/browse/JBIDE-12258 : SelectionLosingByPropertySheet_JBIDE4791 test failure
- rewrote test
Modified: trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide/SelectionLosingByPropertySheet_JBIDE4791.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide/SelectionLosingByPropertySheet_JBIDE4791.java 2012-07-13 14:33:33 UTC (rev 42573)
+++ trunk/jst/tests/org.jboss.tools.jst.css.test/src/org/jboss/tools/jst/css/test/jbide/SelectionLosingByPropertySheet_JBIDE4791.java 2012-07-13 14:59:11 UTC (rev 42574)
@@ -14,7 +14,11 @@
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.IStructuredSelection;
+import org.eclipse.swt.widgets.TrayItem;
+import org.eclipse.swt.widgets.Tree;
+import org.eclipse.swt.widgets.TreeItem;
import org.eclipse.ui.views.properties.PropertySheet;
+import org.eclipse.ui.views.properties.PropertySheetEntry;
import org.eclipse.wst.css.core.internal.document.CSSStructuredDocumentRegionContainer;
import org.eclipse.wst.css.core.internal.provisional.document.ICSSModel;
import org.eclipse.wst.css.core.internal.provisional.document.ICSSStyleSheet;
@@ -33,6 +37,10 @@
public class SelectionLosingByPropertySheet_JBIDE4791 extends
AbstractCSSViewTest {
+ private static final String FIRST_CSS_PROPERTY_VALUE = "red";
+
+ private static final String FIRST_CSS_PROPERTY_NAME = "color";
+
public static final String TEST_PAGE_NAME = "JBIDE/4791/propertyViewTest.css"; //$NON-NLS-1$
public static final String PROPERTY_SHEET_VIEW_ID = "org.eclipse.ui.views.PropertySheet"; //$NON-NLS-1$
@@ -65,34 +73,39 @@
assertNotNull(document);
CSSRule cssRule = document.getCssRules().item(0);
-
assertNotNull(cssRule);
- int offset = ((CSSStructuredDocumentRegionContainer) cssRule)
- .getStartOffset();
-
- setSelection(editor, offset, 0);
-
- ISelection selection = (ISelection) getFieldValue(propertySheet,
- SELECTION_FIELD_NAME);
-
- assertTrue(selection instanceof IStructuredSelection);
-
- assertEquals(cssRule, ((IStructuredSelection) selection)
- .getFirstElement());
-
+ int cssRuleOffset = ((CSSStructuredDocumentRegionContainer) cssRule).getStartOffset();
+ setSelection(editor, cssRuleOffset, 0);
+
+ Tree propertySheetTree = (Tree) propertySheet.getCurrentPage().getControl();
+ String colorValue = getPropertyValue(propertySheetTree.getItems(), FIRST_CSS_PROPERTY_NAME);
+ assertEquals(FIRST_CSS_PROPERTY_VALUE, colorValue);
+
CSSEditorView view = (CSSEditorView) openView(CSS_EDITOR_VIEW);
-
JobUtils.delay(1000);
- selection = (ISelection) getFieldValue(propertySheet,
- SELECTION_FIELD_NAME);
-
- assertTrue(selection instanceof IStructuredSelection);
-
- assertEquals(cssRule, ((IStructuredSelection) selection)
- .getFirstElement());
-
+ propertySheetTree = (Tree) propertySheet.getCurrentPage().getControl();
+ colorValue = getPropertyValue(propertySheetTree.getItems(), FIRST_CSS_PROPERTY_NAME);
+ assertEquals(FIRST_CSS_PROPERTY_VALUE, colorValue);
}
+
+ private String getPropertyValue(TreeItem[] treeItems, String propertyName) {
+ for (TreeItem treeItem : treeItems) {
+ Object data = treeItem.getData();
+ if (data instanceof PropertySheetEntry) {
+ PropertySheetEntry propertySheetEntry = (PropertySheetEntry) data;
+ if (propertyName.equals(propertySheetEntry.getDisplayName())) {
+ return propertySheetEntry.getValueAsString();
+ }
+ }
+ String descendantsValue = getPropertyValue(treeItem.getItems(), propertyName);
+ if (descendantsValue != null) {
+ return descendantsValue;
+ }
+ }
+
+ return null;
+ }
}
13 years, 9 months
JBoss Tools SVN: r42573 - in trunk/openshift/plugins: org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-07-13 10:33:33 -0400 (Fri, 13 Jul 2012)
New Revision: 42573
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.client/openshift-java-client-2.0.0-SNAPSHOT.jar
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationSelectionDialog.java
Log:
[JBIDE-12242] added refresh to "select existing application" dialog.
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.client/openshift-java-client-2.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationSelectionDialog.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationSelectionDialog.java 2012-07-13 14:24:56 UTC (rev 42572)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationSelectionDialog.java 2012-07-13 14:33:33 UTC (rev 42573)
@@ -149,12 +149,12 @@
}
});
- /*Button refreshButton = new Button(dialogArea, SWT.PUSH);
+ Button refreshButton = new Button(dialogArea, SWT.PUSH);
refreshButton.setText("R&efresh");
- GridDataFactory.fillDefaults().align(SWT.RIGHT, SWT.TOP).grab(false, false).hint(80, SWT.DEFAULT)
- .applyTo(refreshButton);
+ GridDataFactory.fillDefaults()
+ .align(SWT.RIGHT, SWT.TOP).grab(false, false).hint(80, SWT.DEFAULT).applyTo(refreshButton);
refreshButton.addSelectionListener(onRefresh(dbc));
- */
+
Button detailsButton = new Button(dialogArea, SWT.PUSH);
detailsButton.setText("De&tails...");
GridDataFactory.fillDefaults().align(SWT.RIGHT, SWT.TOP).grab(false, true).hint(80, SWT.DEFAULT)
13 years, 9 months
JBoss Tools SVN: r42572 - in branches/jbosstools-3.3.x/openshift/plugins: org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-07-13 10:24:56 -0400 (Fri, 13 Jul 2012)
New Revision: 42572
Modified:
branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.client/openshift-java-client-2.0.0-SNAPSHOT.jar
branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationSelectionDialog.java
Log:
[JBIDE-12242] added refresh to "select existing application" dialog.
Modified: branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.client/openshift-java-client-2.0.0-SNAPSHOT.jar
===================================================================
(Binary files differ)
Modified: branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationSelectionDialog.java
===================================================================
--- branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationSelectionDialog.java 2012-07-13 11:30:26 UTC (rev 42571)
+++ branches/jbosstools-3.3.x/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationSelectionDialog.java 2012-07-13 14:24:56 UTC (rev 42572)
@@ -149,12 +149,12 @@
}
});
- /*Button refreshButton = new Button(dialogArea, SWT.PUSH);
+ Button refreshButton = new Button(dialogArea, SWT.PUSH);
refreshButton.setText("R&efresh");
- GridDataFactory.fillDefaults().align(SWT.RIGHT, SWT.TOP).grab(false, false).hint(80, SWT.DEFAULT)
- .applyTo(refreshButton);
+ GridDataFactory.fillDefaults()
+ .align(SWT.RIGHT, SWT.TOP).grab(false, false).hint(80, SWT.DEFAULT).applyTo(refreshButton);
refreshButton.addSelectionListener(onRefresh(dbc));
- */
+
Button detailsButton = new Button(dialogArea, SWT.PUSH);
detailsButton.setText("De&tails...");
GridDataFactory.fillDefaults().align(SWT.RIGHT, SWT.TOP).grab(false, true).hint(80, SWT.DEFAULT)
13 years, 9 months
JBoss Tools SVN: r42571 - trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2012-07-13 07:30:26 -0400 (Fri, 13 Jul 2012)
New Revision: 42571
Modified:
trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java/JavaDirtyRegionProcessor.java
Log:
JBIDE-10738
As-you-type EL validation
NPE is fixed
JBIDE-12319
As you type does not restore marker state when editor is returned to unmodified stade by Undo/Redo actions
Issue is fixed
Modified: trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java/JavaDirtyRegionProcessor.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java/JavaDirtyRegionProcessor.java 2012-07-13 10:27:41 UTC (rev 42570)
+++ trunk/common/plugins/org.jboss.tools.common.validation/src/org/jboss/tools/common/validation/java/JavaDirtyRegionProcessor.java 2012-07-13 11:30:26 UTC (rev 42571)
@@ -65,6 +65,7 @@
private JavaELProblemReporter fReporter;
private AsYouTypeValidatorManager fValidatorManager;
+ private boolean fDocumentJustSetup = false;
private boolean fIsCanceled = false;
private boolean fInRewriteSession = false;
private IDocumentRewriteSessionListener fDocumentRewriteSessionListener = new DocumentRewriteSessionListener();
@@ -301,6 +302,7 @@
fReporter.update();
}
}
+ fDocumentJustSetup = true;
}
@Override
@@ -328,9 +330,17 @@
fEndPartitionsToProcess = -1;
}
+ private boolean isEditorDirty() {
+ if (fDocumentJustSetup && fEditor.isDirty()) {
+ fDocumentJustSetup = false;
+ }
+
+ return !fDocumentJustSetup;
+ }
+
protected void process(DirtyRegion dirtyRegion) {
IDocument doc = getDocument();
- if (!fEditor.isDirty() || !isInstalled() || isInRewrite() || dirtyRegion == null || doc == null || fIsCanceled) {
+ if (!isEditorDirty() || !isInstalled() || isInRewrite() || dirtyRegion == null || doc == null || fIsCanceled) {
return;
}
@@ -419,20 +429,7 @@
boolean result = false;
boolean atLeastOneElementIsProcessed = false;
- int start = fStartRegionToProcess;
- int end = fEndRegionToProcess;
-
- ITypedRegion[] partitions = computePartitioning(fStartPartitionsToProcess, fEndPartitionsToProcess - fStartPartitionsToProcess);
-
- ITypedRegion startPartition = findPartitionByOffset(partitions, start);
- ITypedRegion endPartition = (startPartition != null && end >= startPartition.getOffset() && end < startPartition.getOffset() + startPartition.getLength()) ?
- startPartition : findPartitionByOffset(partitions, end);
-
- if (startPartition != null && startPartition.equals(endPartition) && !isProcessingRequiredForPartition(startPartition)) {
- return false;
- }
-
- int position = start;
+ int position = fStartRegionToProcess;
try {
IJavaElement element = null;
while (position >= 0 && (element = unit.getElementAt(position--)) == null)
@@ -441,7 +438,18 @@
if (position < 0)
position = 0;
- while (position < end) {
+ ITypedRegion[] partitions = computePartitioning(position, fEndPartitionsToProcess - position);
+
+ ITypedRegion startPartition = findPartitionByOffset(partitions, position);
+ ITypedRegion endPartition = (startPartition != null && fEndRegionToProcess >= startPartition.getOffset() &&
+ fEndRegionToProcess < startPartition.getOffset() + startPartition.getLength()) ?
+ startPartition : findPartitionByOffset(partitions, fEndRegionToProcess);
+
+ if (startPartition != null && startPartition.equals(endPartition) && !isProcessingRequiredForPartition(startPartition)) {
+ return false;
+ }
+
+ while (position <= fEndRegionToProcess) {
ITypedRegion partition = findPartitionByOffset(partitions, position);
if(!isProcessingRequiredForPartition(partition)) {
position = partition.getOffset() + partition.getLength();
@@ -488,6 +496,9 @@
}
private boolean isProcessingRequiredForPartition(ITypedRegion partition) {
+ if (partition == null)
+ return false;
+
String type = partition.getType();
return !(IJavaPartitions.JAVA_STRING.equals(type) || IJavaPartitions.JAVA_CHARACTER.equals(type) ||
IJavaPartitions.JAVA_SINGLE_LINE_COMMENT.equals(type) ||
13 years, 9 months
JBoss Tools SVN: r42570 - trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2012-07-13 06:27:41 -0400 (Fri, 13 Jul 2012)
New Revision: 42570
Modified:
trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console/ForgeTextViewer.java
Log:
JBIDE-12223: Forge should use the console font + listen to font changes
-> remove listener when console is destroyed
Modified: trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console/ForgeTextViewer.java
===================================================================
--- trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console/ForgeTextViewer.java 2012-07-13 10:25:33 UTC (rev 42569)
+++ trunk/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console/ForgeTextViewer.java 2012-07-13 10:27:41 UTC (rev 42570)
@@ -58,6 +58,14 @@
}
private DocumentListener documentListener = new DocumentListener();
+ private IPropertyChangeListener fontListener = new IPropertyChangeListener() {
+ @Override
+ public void propertyChange(PropertyChangeEvent event) {
+ if (FORGE_CONSOLE_FONT.equals(event.getProperty())) {
+ getTextWidget().setFont(JFaceResources.getFont(FORGE_CONSOLE_FONT));
+ }
+ }
+ };
public ForgeTextViewer(Composite parent) {
super(parent, SWT.WRAP | SWT.V_SCROLL | SWT.H_SCROLL);
@@ -71,14 +79,7 @@
}
private void initFontListener() {
- JFaceResources.getFontRegistry().addListener(new IPropertyChangeListener() {
- @Override
- public void propertyChange(PropertyChangeEvent event) {
- if (FORGE_CONSOLE_FONT.equals(event.getProperty())) {
- getTextWidget().setFont(JFaceResources.getFont(FORGE_CONSOLE_FONT));
- }
- }
- });
+ JFaceResources.getFontRegistry().addListener(fontListener);
}
private void initDocument() {
@@ -107,6 +108,7 @@
protected void handleDispose() {
ForgeDocument.INSTANCE.removeCursorListener(documentListener);
ForgeDocument.INSTANCE.removeDocumentListener(documentListener);
+ JFaceResources.getFontRegistry().removeListener(fontListener);
super.handleDispose();
}
13 years, 9 months
JBoss Tools SVN: r42569 - branches/jbosstools-3.3.x/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2012-07-13 06:25:33 -0400 (Fri, 13 Jul 2012)
New Revision: 42569
Modified:
branches/jbosstools-3.3.x/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console/ForgeTextViewer.java
Log:
JBIDE-12223: Forge should use the console font + listen to font changes
-> remove the listener when the console is disposed
Modified: branches/jbosstools-3.3.x/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console/ForgeTextViewer.java
===================================================================
--- branches/jbosstools-3.3.x/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console/ForgeTextViewer.java 2012-07-13 10:10:51 UTC (rev 42568)
+++ branches/jbosstools-3.3.x/forge/plugins/org.jboss.tools.forge.ui/src/org/jboss/tools/forge/ui/console/ForgeTextViewer.java 2012-07-13 10:25:33 UTC (rev 42569)
@@ -58,6 +58,14 @@
}
private DocumentListener documentListener = new DocumentListener();
+ private IPropertyChangeListener fontListener = new IPropertyChangeListener() {
+ @Override
+ public void propertyChange(PropertyChangeEvent event) {
+ if (FORGE_CONSOLE_FONT.equals(event.getProperty())) {
+ getTextWidget().setFont(JFaceResources.getFont(FORGE_CONSOLE_FONT));
+ }
+ }
+ };
public ForgeTextViewer(Composite parent) {
super(parent, SWT.WRAP | SWT.V_SCROLL | SWT.H_SCROLL);
@@ -71,14 +79,7 @@
}
private void initFontListener() {
- JFaceResources.getFontRegistry().addListener(new IPropertyChangeListener() {
- @Override
- public void propertyChange(PropertyChangeEvent event) {
- if (FORGE_CONSOLE_FONT.equals(event.getProperty())) {
- getTextWidget().setFont(JFaceResources.getFont(FORGE_CONSOLE_FONT));
- }
- }
- });
+ JFaceResources.getFontRegistry().addListener(fontListener);
}
private void initDocument() {
@@ -107,6 +108,7 @@
protected void handleDispose() {
ForgeDocument.INSTANCE.removeCursorListener(documentListener);
ForgeDocument.INSTANCE.removeDocumentListener(documentListener);
+ JFaceResources.getFontRegistry().removeListener(fontListener);
super.handleDispose();
}
13 years, 9 months
JBoss Tools SVN: r42568 - trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/selection/bar.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2012-07-13 06:10:51 -0400 (Fri, 13 Jul 2012)
New Revision: 42568
Modified:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/selection/bar/SelectionBarHandler.java
Log:
https://issues.jboss.org/browse/JBIDE-12330 - Explicitly change the selection bar visibility
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/selection/bar/SelectionBarHandler.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/selection/bar/SelectionBarHandler.java 2012-07-13 09:55:30 UTC (rev 42567)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/selection/bar/SelectionBarHandler.java 2012-07-13 10:10:51 UTC (rev 42568)
@@ -18,6 +18,7 @@
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.commands.HandlerEvent;
import org.eclipse.core.expressions.IEvaluationContext;
+import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.ISources;
import org.eclipse.ui.commands.IElementUpdater;
import org.eclipse.ui.handlers.HandlerUtil;
@@ -72,9 +73,19 @@
/*
* Change command state and save it to PreferenceStore
*/
+ boolean visible = !HandlerUtil.toggleCommandState(event.getCommand());
JspEditorPlugin.getDefault().getPreferenceStore().setValue(
IVpePreferencesPage.SHOW_SELECTION_TAG_BAR,
- !HandlerUtil.toggleCommandState(event.getCommand()));
+ visible);
+ /*
+ * https://issues.jboss.org/browse/JBIDE-12330
+ * Explicitly change the selection bar visibility,
+ * because listeners do not catch this event in eclipse 4.2.
+ */
+ IEditorPart activeEditor = HandlerUtil.getActiveEditorChecked(event);
+ if(activeEditor instanceof JSPMultiPageEditor) {
+ ((JSPMultiPageEditor) activeEditor).getSelectionBar().setVisible(visible);
+ }
return null;
}
13 years, 9 months