JBoss Tools SVN: r36046 - in trunk: jst/tests/org.jboss.tools.jst.ui.bot.test/src/org/jboss/tools/ui/bot/test and 5 other directories.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2011-10-27 11:55:50 -0400 (Thu, 27 Oct 2011)
New Revision: 36046
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test/smoke/CodeCompletionTest.java
trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/src/org/jboss/tools/ui/bot/test/JBTSWTBotTestCase.java
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/ViewType.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/JspFileEditingTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/MenuItemEntity.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/VPEEditorTestCase.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/VisualEditorContextMenuTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/preferences/ChangeEditorTabForTheFirstOpenPageTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/smoke/CodeCompletionTest.java
Log:
Fixes for JBT 3.3.0.M4
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test/smoke/CodeCompletionTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test/smoke/CodeCompletionTest.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/src/org/jboss/tools/jsf/ui/bot/test/smoke/CodeCompletionTest.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -50,7 +50,7 @@
9,
0,
expectedProposals);
- // Check content assist for ${msg. prefix
+ // Check content assist for #{msg. prefix
expectedProposals.clear();
expectedProposals.add("name : String - Person");
ContentAssistHelper.checkContentAssistContent(SWTTestExt.bot,
@@ -76,7 +76,7 @@
0);
contentAssist.checkContentAssist("msg", false);
contentAssist.checkContentAssist("person : Person", false);
- // Check content assist for ${msg. prefix
+ // Check content assist for #{msg. prefix
SWTJBTExt.selectTextInSourcePane(SWTTestExt.bot,
FACELETS_TEST_PAGE,
textForSelection,
@@ -235,7 +235,7 @@
bot.sleep(Timing.time2S());
compositeComponentDefEditor.save();
currentLineText = compositeComponentDefEditor.getTextOnCurrentLine();
- expectedInsertedText = "${cc.attrs}";
+ expectedInsertedText = "#{cc.attrs}";
assertTrue("Inserted text should be " + expectedInsertedText + " but is not.\n"
+ "Current line text is " + currentLineText,
currentLineText.toLowerCase().contains(expectedInsertedText.toLowerCase()));
@@ -244,14 +244,14 @@
// Check content assist menu content for Composite Components attributes
ContentAssistHelper.checkContentAssistContent(SWTTestExt.bot,
compositeComponentFileName,
- "${cc.attrs.}",
+ "#{cc.attrs.}",
11,
0,
getCompositeComponentsAttributeDefProposalList());
// check inserting of "submitlabel" content assist
String contentAssistToUse = "submitlabel";
contentAssist.checkContentAssist(contentAssistToUse, true);
- expectedInsertedText = "<h:commandButton action=\"${cc.attrs." + contentAssistToUse + "}\"";
+ expectedInsertedText = "<h:commandButton action=\"#{cc.attrs." + contentAssistToUse + "}\"";
assertTrue("Editor has to contain text '" + expectedInsertedText + "' but it doesn't\n" +
"Editor Text is\n" + compositeComponentDefEditor.getText(),
compositeComponentDefEditor.getText().toLowerCase().contains(expectedInsertedText.toLowerCase()));
@@ -291,7 +291,7 @@
9,
0,
expectedProposals);
- // Check content assist for ${user. prefix
+ // Check content assist for #{user. prefix
expectedProposals.clear();
expectedProposals.add("name : String - User");
expectedProposals.add("sayHello() : String - User");
@@ -554,7 +554,7 @@
result.add("onmouseup");
result.add("submitlabel");
result.add("value");
- result.add("\"${cc.attrs.}\"");
+ result.add("\"#{cc.attrs.}\"");
return result;
}
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/src/org/jboss/tools/ui/bot/test/JBTSWTBotTestCase.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/src/org/jboss/tools/ui/bot/test/JBTSWTBotTestCase.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/src/org/jboss/tools/ui/bot/test/JBTSWTBotTestCase.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -18,6 +18,7 @@
import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
import org.jboss.tools.ui.bot.ext.SWTBotExt;
import org.jboss.tools.ui.bot.ext.SWTTestExt;
+import org.jboss.tools.ui.bot.ext.types.IDELabel;
import org.jboss.tools.ui.bot.ext.view.ProblemsView;
public abstract class JBTSWTBotTestCase extends SWTTestExt implements
@@ -144,6 +145,10 @@
bot.viewByTitle(WidgetVariables.WELCOME).close();
} catch (WidgetNotFoundException e) {
}
+ try {
+ bot.editorByTitle(IDELabel.View.JBOSS_CENTRAL).close();
+ } catch (WidgetNotFoundException e) {
+ }
openErrorLog();
openPackageExplorer();
// openProgressStatus();
Modified: trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -230,6 +230,7 @@
public static final String PROPERTIES = "Properties";
public static final String JBOSS_TOOLS_PALETTE = "JBoss Tools Palette";
public static final String PALETTE = "Palette";
+ public static final String JBOSS_CENTRAL = "JBoss Central";
}
public class ViewGroup {
@@ -416,6 +417,7 @@
public static final String JBOSS_EAP_5_x = "JBoss Enterprise Application Platform 5.x Runtime";
public static final String JBOSS_AS_5_1 = "JBoss 5.1 Runtime";
public static final String JBOSS_AS_6_0 = "JBoss 6.0 Runtime";
+ public static final String JBOSS_AS_6_x = "JBoss 6.x Runtime";
}
public static final class ServerType {
@@ -424,6 +426,7 @@
public static final String JBOSS_EAP_5_0 = "JBoss Enterprise Application Platform 5.0";
public static final String JBOSS_EAP_5_x = "JBoss Enterprise Application Platform 5.x";
public static final String JBOSS_AS_6_0 = "JBoss 6.0 Runtime";
+ public static final String JBOSS_AS_6_x = "JBoss 6.x Runtime";
}
public static final class DroolsRuntimeDialog {
Modified: trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/ViewType.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/ViewType.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/ViewType.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -20,7 +20,7 @@
public enum ViewType {
PACKAGE_EXPLORER, PROJECT_EXPLORER, WELCOME, DATA_SOURCE_EXPLORER,
SERVERS,WEB_PROJECTS,PROBLEMS,DEBUG,GUVNOR_REPOSITORIES,PROPERTIES,
- GUVNOR_RESOURCE_HISTORY,JBOSS_TOOLS_PALETTE, PALETTE;
+ GUVNOR_RESOURCE_HISTORY,JBOSS_TOOLS_PALETTE, PALETTE, JBOSS_CENTRAL;
public String getGroupLabel() {
String viewLabel = "";
@@ -57,6 +57,7 @@
case GUVNOR_RESOURCE_HISTORY: viewLabel = IDELabel.View.GUVNOR_RESOURCE_HISTORY; break;
case JBOSS_TOOLS_PALETTE: viewLabel = IDELabel.View.JBOSS_TOOLS_PALETTE; break;
case PALETTE: viewLabel = IDELabel.View.PALETTE; break;
+ case JBOSS_CENTRAL: viewLabel = IDELabel.View.JBOSS_CENTRAL; break;
default: fail("Unknown View Type");
}
return viewLabel;
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -96,8 +96,8 @@
"6.0");
if (version.equals("6.0")) {
JBOSS_AS_FOR_JSF2_SERVER_GROUP = IDELabel.ServerGroup.JBOSS_AS_6_0;
- JBOSS_AS_FOR_JSF2_SERVER_RUNTIME_TYPE = IDELabel.ServerRuntimeType.JBOSS_AS_6_0;
- JBOSS_AS_FOR_JSF2_SERVER_TYPE = IDELabel.ServerType.JBOSS_AS_6_0;
+ JBOSS_AS_FOR_JSF2_SERVER_RUNTIME_TYPE = IDELabel.ServerRuntimeType.JBOSS_AS_6_x;
+ JBOSS_AS_FOR_JSF2_SERVER_TYPE = IDELabel.ServerType.JBOSS_AS_6_x;
} else {
throw new RuntimeException(
"Unsupported version of JBoss AS runtime for JSF2 [version="
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/JspFileEditingTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/JspFileEditingTest.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/JspFileEditingTest.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -64,10 +64,9 @@
jspTextEditor.save();
botExt.sleep(Timing.time2S());
// Check if tag h:outputText was properly added
- String editorText = jspTextEditor.getText();
- assertTrue("File " + TEST_PAGE
- + " has to contain string '<h:outputText>' but it doesn't",
- editorText.contains("<h:outputText>"));
+ String editorText = VPEEditorTestCase.stripHTMLSourceText(jspTextEditor.getText()); assertTrue("File " + TEST_PAGE
+ + " has to contain string '<h:outputText></h:outputText>' but it doesn't",
+ editorText.contains("<h:outputText></h:outputText>"));
}
/**
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/MenuItemEntity.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/MenuItemEntity.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/MenuItemEntity.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -69,7 +69,9 @@
if (label == null) {
if (other.label != null)
return false;
- } else if (!label.equals(other.label))
+ } else if (!label.equals(other.label) &&
+ (!((label.equals("Seam") && other.label.equals("Seam 2")) || // Seam = Seam 2
+ (label.equals("Seam 2") && other.label.equals("Seam"))))) // Seam 2 = Seam
return false;
return true;
}
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/VPEEditorTestCase.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/VPEEditorTestCase.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/VPEEditorTestCase.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -86,7 +86,8 @@
* @return String
*/
protected static String stripHTMLSourceText(String editorText){
- return editorText.replaceAll("\n", "").replaceAll("\t", "").replaceAll(" ", "");
+ return editorText.replaceAll("\n", "").replaceAll("\t", "").replaceAll("\b", "")
+ .replaceAll(" ", "").replaceAll("\r", "").replaceAll("\f", "");
}
/**
* Asserts if sourceEditorText of file with fileName contains textToContain
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/VisualEditorContextMenuTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/VisualEditorContextMenuTest.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/VisualEditorContextMenuTest.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -383,22 +383,11 @@
for (MenuItemEntity mieThirdLevel : mieSecondLevel.getChildren()){
String thirdLevelMenuItemLabel = mieThirdLevel.getLabel();
if (thirdLevelMenuItemLabel.endsWith(" taglib") ||
- (firstLevelMenuItemLabel.equals("JBoss") && secondLevelMenuItemLabel.equals("Ajax4Jsf") && thirdLevelMenuItemLabel.equals("queue")) ||
- (firstLevelMenuItemLabel.equals("JBoss") && secondLevelMenuItemLabel.equals("RichFaces") && thirdLevelMenuItemLabel.equals("menuSeparator")) ||
(firstLevelMenuItemLabel.equals("JBoss") && secondLevelMenuItemLabel.equals("Seam") && thirdLevelMenuItemLabel.equals("convertEnum")) ||
(firstLevelMenuItemLabel.equals("JBoss") && secondLevelMenuItemLabel.equals("Seam") && thirdLevelMenuItemLabel.equals("convertDateTime")) ||
(firstLevelMenuItemLabel.equals("JBoss") && secondLevelMenuItemLabel.equals("Seam") && thirdLevelMenuItemLabel.equals("enumItem")) ||
(firstLevelMenuItemLabel.equals("JBoss") && secondLevelMenuItemLabel.equals("Seam") && thirdLevelMenuItemLabel.equals("fileUpload")) ||
- (firstLevelMenuItemLabel.equals("JBoss") && secondLevelMenuItemLabel.equals("Seam") && thirdLevelMenuItemLabel.equals("validate")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("commandButton")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("graphicImage")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("inputHidden")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("inputSecret")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("inputText")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("message")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("messages")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("outputText")) ||
- (firstLevelMenuItemLabel.equals("JSF") && secondLevelMenuItemLabel.equals("HTML") && thirdLevelMenuItemLabel.equals("selectBooleanCheckbox"))){
+ (firstLevelMenuItemLabel.equals("JBoss") && secondLevelMenuItemLabel.equals("Seam") && thirdLevelMenuItemLabel.equals("validate"))){
// Skip these Menu Items
}
else{
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/preferences/ChangeEditorTabForTheFirstOpenPageTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/preferences/ChangeEditorTabForTheFirstOpenPageTest.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/preferences/ChangeEditorTabForTheFirstOpenPageTest.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -3,6 +3,7 @@
import org.eclipse.swtbot.swt.finder.SWTBot;
import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
import org.eclipse.swtbot.swt.finder.widgets.TimeoutException;
+import org.jboss.tools.ui.bot.ext.SWTBotExt;
import org.jboss.tools.ui.bot.ext.gen.ActionItem;
import org.jboss.tools.ui.bot.ext.types.IDELabel;
import org.jboss.tools.ui.bot.test.WidgetVariables;
@@ -15,7 +16,8 @@
openPage();
bot.toolbarButtonWithTooltip(PREF_TOOLTIP).click();
bot.shell(PREF_FILTER_SHELL_TITLE).activate();
- bot.comboBoxWithLabel(SELECT_DEFAULT_TAB).setSelection("Source"); //$NON-NLS-1$
+ bot.comboBoxWithLabel(SELECT_DEFAULT_TAB)
+ .setSelection(IDELabel.VisualPageEditor.SOURCE_TAB_LABEL);
bot.button("OK").click(); //$NON-NLS-1$
//Create and open new page
@@ -47,14 +49,18 @@
public void tearDown() throws Exception {
//Delete test page if it has been created
+ new SWTBotExt().swtBotEditorExtByTitle(TEST_PAGE).selectPage(IDELabel.VisualPageEditor.VISUAL_SOURCE_TAB_LABEL);
SWTBot innerBot = bot.viewByTitle(WidgetVariables.PACKAGE_EXPLORER).bot();
innerBot.tree().expandNode(JBT_TEST_PROJECT_NAME).expandNode("WebContent") //$NON-NLS-1$
.expandNode("pages").getNode("testPage.jsp").select(); //$NON-NLS-1$//$NON-NLS-2$
bot.menu("Edit").menu("Delete").click(); //$NON-NLS-1$ //$NON-NLS-2$
bot.shell("Confirm Delete").activate(); //$NON-NLS-1$
- bot.button("OK").click(); //$NON-NLS-1$
- bot.multiPageEditorByTitle(TEST_PAGE).selectTab("Visual/Source"); //$NON-NLS-1$
- super.tearDown();
+ bot.button(IDELabel.Button.OK).click(); //$NON-NLS-1$
+ bot.toolbarButtonWithTooltip(PREF_TOOLTIP).click();
+ bot.shell(PREF_FILTER_SHELL_TITLE).activate();
+ bot.comboBoxWithLabel(SELECT_DEFAULT_TAB).setSelection(IDELabel.VisualPageEditor.VISUAL_SOURCE_TAB_LABEL); //$NON-NLS-1$
+ bot.button(IDELabel.Button.OK).click();
+ super.tearDown();
}
}
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/smoke/CodeCompletionTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/smoke/CodeCompletionTest.java 2011-10-27 14:32:05 UTC (rev 36045)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/smoke/CodeCompletionTest.java 2011-10-27 15:55:50 UTC (rev 36046)
@@ -89,7 +89,7 @@
private static List<String> getJspPageProposalList(){
LinkedList<String> result = new LinkedList<String>();
- result.add("New JSF EL Expression - Create a new attribute value with ${}");
+ result.add("New JSF EL Expression - Create a new attribute value with #{}");
result.add("f:actionListener");
result.add("f:attribute");
result.add("f:convertDateTime");
14 years, 2 months
JBoss Tools SVN: r36045 - workspace/fred/repositories/snapshot/org/jboss/spec/archetypes/jboss-javaee6-ear-webapp/7.0.2-SNAPSHOT.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2011-10-27 10:32:05 -0400 (Thu, 27 Oct 2011)
New Revision: 36045
Modified:
workspace/fred/repositories/snapshot/org/jboss/spec/archetypes/jboss-javaee6-ear-webapp/7.0.2-SNAPSHOT/jboss-javaee6-ear-webapp-7.0.2-SNAPSHOT-sources.jar
workspace/fred/repositories/snapshot/org/jboss/spec/archetypes/jboss-javaee6-ear-webapp/7.0.2-SNAPSHOT/jboss-javaee6-ear-webapp-7.0.2-SNAPSHOT.jar
Log:
fix screw up
Modified: workspace/fred/repositories/snapshot/org/jboss/spec/archetypes/jboss-javaee6-ear-webapp/7.0.2-SNAPSHOT/jboss-javaee6-ear-webapp-7.0.2-SNAPSHOT-sources.jar
===================================================================
(Binary files differ)
Modified: workspace/fred/repositories/snapshot/org/jboss/spec/archetypes/jboss-javaee6-ear-webapp/7.0.2-SNAPSHOT/jboss-javaee6-ear-webapp-7.0.2-SNAPSHOT.jar
===================================================================
(Binary files differ)
14 years, 2 months
JBoss Tools SVN: r36044 - trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2011-10-27 08:33:21 -0400 (Thu, 27 Oct 2011)
New Revision: 36044
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ConsoleConfiguration.java
Log:
Do not reset already built configuration
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ConsoleConfiguration.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ConsoleConfiguration.java 2011-10-27 11:17:00 UTC (rev 36043)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ConsoleConfiguration.java 2011-10-27 12:33:21 UTC (rev 36044)
@@ -139,13 +139,12 @@
//the class loader caches user's compiled classes
//need to rebuild it on every console configuration rebuild to pick up latest versions.
final URL[] customClassPathURLs = PreferencesClassPathUtils.getCustomClassPathURLs(prefs);
- //we could call cleanUpClassLoader() here if we don't want to release configuration field
- //but in case user changed java sources it is not in a good state any more, so call reset.
- reset();
+ cleanUpClassLoader();
classLoader = createClassLoader(customClassPathURLs);
}
public void build() {
+ reset();
configuration = buildWith(null, true);
fireConfigurationBuilt();
}
14 years, 2 months
JBoss Tools SVN: r36043 - in trunk/openshift: plugins/org.jboss.tools.openshift.egit.ui and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-10-27 07:17:00 -0400 (Thu, 27 Oct 2011)
New Revision: 36043
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.egit.core/
trunk/openshift/plugins/org.jboss.tools.openshift.egit.ui/
trunk/openshift/plugins/org.jboss.tools.openshift.express.client/
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/
trunk/openshift/tests/org.jboss.tools.openshift.egit.test/
Log:
prop changes for svnignore for bin and target
Property changes on: trunk/openshift/plugins/org.jboss.tools.openshift.egit.core
___________________________________________________________________
Added: svn:ignore
+ target
bin
Property changes on: trunk/openshift/plugins/org.jboss.tools.openshift.egit.ui
___________________________________________________________________
Added: svn:ignore
+ target
bin
Property changes on: trunk/openshift/plugins/org.jboss.tools.openshift.express.client
___________________________________________________________________
Added: svn:ignore
+ target
bin
Property changes on: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui
___________________________________________________________________
Added: svn:ignore
+ target
bin
Property changes on: trunk/openshift/tests/org.jboss.tools.openshift.egit.test
___________________________________________________________________
Added: svn:ignore
+ target
14 years, 2 months
JBoss Tools SVN: r36042 - in trunk/as: plugins and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-10-27 03:33:56 -0400 (Thu, 27 Oct 2011)
New Revision: 36042
Removed:
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/
trunk/as/features/org.jboss.tools.openshift.express.feature/
trunk/as/features/org.jboss.tools.openshift.express.source.feature/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.core/
trunk/as/plugins/org.jboss.ide.eclipse.as.egit.ui/
trunk/as/plugins/org.jboss.tools.openshift.express.client/
trunk/as/plugins/org.jboss.tools.openshift.express.ui/
trunk/as/tests/org.jboss.ide.eclipse.as.egit.test/
trunk/as/tests/org.jboss.tools.openshift.express.client.test/
Log:
JBIDE-10055 - delete moved plugins
14 years, 2 months
JBoss Tools SVN: r36041 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-26 23:50:48 -0400 (Wed, 26 Oct 2011)
New Revision: 36041
Modified:
trunk/build/target-platform/jbds.target
trunk/build/target-platform/jbds.target.p2mirror.xml
trunk/build/target-platform/multiple.target
trunk/build/target-platform/multiple.target.p2mirror.xml
trunk/build/target-platform/unified.target
trunk/build/target-platform/unified.target.p2mirror.xml
Log:
JBDS-1904 add org.eclipse.egit.mylyn.feature.group and org.eclipse.mylyn.github.feature.feature.group to JBT TP
Modified: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2011-10-27 02:45:40 UTC (rev 36040)
+++ trunk/build/target-platform/jbds.target 2011-10-27 03:50:48 UTC (rev 36041)
@@ -201,6 +201,14 @@
<unit id="org.eclipse.tm.terminal.telnet.feature.group" version="2.1.0.v201103142315-30-7w312213121A22"/>
<unit id="org.eclipse.tm.terminal.ssh.feature.group" version="2.1.0.v201103142315-30-7w312212153266"/>
+ <!-- JBIDE-9549, JBDS-1904 add egit/jgit and mylyn support to TP, including dependent plugins -->
+ <unit id="org.eclipse.jsch.ui" version="1.1.300.I20110511-0800"/>
+ <unit id="org.eclipse.jsch.core" version="1.1.300.I20110514-0800"/>
+ <unit id="com.jcraft.jsch" version="0.1.41.v201101211617"/>
+ <unit id="org.eclipse.jgit.feature.group" version="1.1.0.201109151100-r"/>
+ <unit id="org.eclipse.egit.feature.group" version="1.1.0.201109151100-r"/>
+ <unit id="org.eclipse.egit.mylyn.feature.group" version="1.1.0.201109151100-r"/>
+ <unit id="org.eclipse.mylyn.github.feature.feature.group" version="1.1.0.201109151100-r"/>
</location>
</locations>
</target>
Modified: trunk/build/target-platform/jbds.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/jbds.target.p2mirror.xml 2011-10-27 02:45:40 UTC (rev 36040)
+++ trunk/build/target-platform/jbds.target.p2mirror.xml 2011-10-27 03:50:48 UTC (rev 36041)
@@ -182,6 +182,13 @@
<iu id="org.eclipse.tm.terminal.view.feature.group" version=""/>
<iu id="org.eclipse.tm.terminal.telnet.feature.group" version=""/>
<iu id="org.eclipse.tm.terminal.ssh.feature.group" version=""/>
+<iu id="org.eclipse.jsch.ui" version=""/>
+<iu id="org.eclipse.jsch.core" version=""/>
+<iu id="com.jcraft.jsch" version=""/>
+<iu id="org.eclipse.jgit.feature.group" version=""/>
+<iu id="org.eclipse.egit.feature.group" version=""/>
+<iu id="org.eclipse.egit.mylyn.feature.group" version=""/>
+<iu id="org.eclipse.mylyn.github.feature.feature.group" version=""/>
</p2.mirror>
</target>
</project>
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2011-10-27 02:45:40 UTC (rev 36040)
+++ trunk/build/target-platform/multiple.target 2011-10-27 03:50:48 UTC (rev 36041)
@@ -246,12 +246,14 @@
<unit id="com.google.gwt.eclipse.sdkbundle.e36.feature.2.2.0.feature.group" version="2.2.0.v201102111811"/>
<unit id="com.google.gdt.eclipse.suite.e36.feature.feature.group" version="2.2.0.v201102111811"/> -->
- <!-- JBIDE-9549 add egit/jgit to TP, including dependent plugins -->
+ <!-- JBIDE-9549, JBDS-1904 add egit/jgit and mylyn support to TP, including dependent plugins -->
<unit id="org.eclipse.jsch.ui" version="1.1.300.I20110511-0800"/>
<unit id="org.eclipse.jsch.core" version="1.1.300.I20110514-0800"/>
<unit id="com.jcraft.jsch" version="0.1.41.v201101211617"/>
<unit id="org.eclipse.jgit.feature.group" version="1.1.0.201109151100-r"/>
<unit id="org.eclipse.egit.feature.group" version="1.1.0.201109151100-r"/>
+ <unit id="org.eclipse.egit.mylyn.feature.group" version="1.1.0.201109151100-r"/>
+ <unit id="org.eclipse.mylyn.github.feature.feature.group" version="1.1.0.201109151100-r"/>
</location>
</locations>
<includeBundles>
Modified: trunk/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/multiple.target.p2mirror.xml 2011-10-27 02:45:40 UTC (rev 36040)
+++ trunk/build/target-platform/multiple.target.p2mirror.xml 2011-10-27 03:50:48 UTC (rev 36041)
@@ -223,6 +223,8 @@
<iu id="com.jcraft.jsch" version=""/>
<iu id="org.eclipse.jgit.feature.group" version=""/>
<iu id="org.eclipse.egit.feature.group" version=""/>
+<iu id="org.eclipse.egit.mylyn.feature.group" version=""/>
+<iu id="org.eclipse.mylyn.github.feature.feature.group" version=""/>
<iu id="org.drools.eclipse.feature.feature.group" version=""/>
<iu id="org.drools.eclipse.task.feature.feature.group" version=""/>
<iu id="org.guvnor.tools.feature.feature.group" version=""/>
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2011-10-27 02:45:40 UTC (rev 36040)
+++ trunk/build/target-platform/unified.target 2011-10-27 03:50:48 UTC (rev 36041)
@@ -246,12 +246,14 @@
<unit id="com.google.gwt.eclipse.sdkbundle.e36.feature.2.2.0.feature.group" version="2.2.0.v201102111811"/>
<unit id="com.google.gdt.eclipse.suite.e36.feature.feature.group" version="2.2.0.v201102111811"/> -->
- <!-- JBIDE-9549 add egit/jgit to TP, including dependent plugins -->
+ <!-- JBIDE-9549, JBDS-1904 add egit/jgit and mylyn support to TP, including dependent plugins -->
<unit id="org.eclipse.jsch.ui" version="1.1.300.I20110511-0800"/>
<unit id="org.eclipse.jsch.core" version="1.1.300.I20110514-0800"/>
<unit id="com.jcraft.jsch" version="0.1.41.v201101211617"/>
<unit id="org.eclipse.jgit.feature.group" version="1.1.0.201109151100-r"/>
<unit id="org.eclipse.egit.feature.group" version="1.1.0.201109151100-r"/>
+ <unit id="org.eclipse.egit.mylyn.feature.group" version="1.1.0.201109151100-r"/>
+ <unit id="org.eclipse.mylyn.github.feature.feature.group" version="1.1.0.201109151100-r"/>
</location>
</locations>
<includeBundles>
Modified: trunk/build/target-platform/unified.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/unified.target.p2mirror.xml 2011-10-27 02:45:40 UTC (rev 36040)
+++ trunk/build/target-platform/unified.target.p2mirror.xml 2011-10-27 03:50:48 UTC (rev 36041)
@@ -222,6 +222,8 @@
<iu id="com.jcraft.jsch" version=""/>
<iu id="org.eclipse.jgit.feature.group" version=""/>
<iu id="org.eclipse.egit.feature.group" version=""/>
+<iu id="org.eclipse.egit.mylyn.feature.group" version=""/>
+<iu id="org.eclipse.mylyn.github.feature.feature.group" version=""/>
<iu id="org.drools.eclipse.feature.feature.group" version=""/>
<iu id="org.drools.eclipse.task.feature.feature.group" version=""/>
<iu id="org.guvnor.tools.feature.feature.group" version=""/>
14 years, 2 months
JBoss Tools SVN: r36040 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-26 22:45:40 -0400 (Wed, 26 Oct 2011)
New Revision: 36040
Modified:
trunk/build/target-platform/multiple.target
Log:
update IU versions
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2011-10-27 02:45:33 UTC (rev 36039)
+++ trunk/build/target-platform/multiple.target 2011-10-27 02:45:40 UTC (rev 36040)
@@ -37,7 +37,7 @@
<unit id="javax.wsdl" version="1.6.2.v201012040545"/>
<unit id="org.jdom" version="1.1.1.v201101151400"/>
<unit id="org.apache.oro" version="2.0.8.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201101200200"/>
+ <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
<unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
<unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
14 years, 2 months
JBoss Tools SVN: r36039 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-26 22:45:33 -0400 (Wed, 26 Oct 2011)
New Revision: 36039
Modified:
trunk/build/target-platform/unified.target
Log:
update IU versions
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2011-10-27 02:45:26 UTC (rev 36038)
+++ trunk/build/target-platform/unified.target 2011-10-27 02:45:33 UTC (rev 36039)
@@ -37,7 +37,7 @@
<unit id="javax.wsdl" version="1.6.2.v201012040545"/>
<unit id="org.jdom" version="1.1.1.v201101151400"/>
<unit id="org.apache.oro" version="2.0.8.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201101200200"/>
+ <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
<unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
<unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
14 years, 2 months
JBoss Tools SVN: r36038 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-26 22:45:26 -0400 (Wed, 26 Oct 2011)
New Revision: 36038
Modified:
trunk/build/target-platform/jbds.target
Log:
update IU versions
Modified: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2011-10-27 02:37:30 UTC (rev 36037)
+++ trunk/build/target-platform/jbds.target 2011-10-27 02:45:26 UTC (rev 36038)
@@ -33,9 +33,9 @@
<!-- Orbit bundles -->
<unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="org.jdom" version="1.1.1.v201101151400"/>
+ <unit id="org.jdom" version="1.1.1.v201101151400"/>
<unit id="org.apache.oro" version="2.0.8.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201101200200"/>
+ <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
<unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
<unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
<unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
14 years, 2 months
JBoss Tools SVN: r36037 - in trunk/build/aggregate: soa-site and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-26 22:37:30 -0400 (Wed, 26 Oct 2011)
New Revision: 36037
Modified:
trunk/build/aggregate/site/index.html
trunk/build/aggregate/site/jbosstools-directory.xml
trunk/build/aggregate/soa-site/index.html
Log:
regen index files & directory.xml
Modified: trunk/build/aggregate/site/index.html
===================================================================
--- trunk/build/aggregate/site/index.html 2011-10-27 02:37:22 UTC (rev 36036)
+++ trunk/build/aggregate/site/index.html 2011-10-27 02:37:30 UTC (rev 36037)
@@ -78,353 +78,353 @@
</th>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.archives.feature_3.2.1.v20111019-1354-H493-M4.jar" style="font-size:x-small">org.jboss.ide.eclipse.archives.feature</a></td>
- <td><span style="font-size:x-small">3.2.1.v20111019-1354-H493-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.ide.eclipse.archives.feature_3.2.1.v20111026-1840-H499-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.archives.feature</a></td>
+ <td><span style="font-size:x-small">3.2.1.v20111026-1840-H499-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.as.feature_2.3.0.v20111019-1428-H795-M4.jar" style="font-size:x-small">org.jboss.ide.eclipse.as.feature</a></td>
- <td><span style="font-size:x-small">2.3.0.v20111019-1428-H795-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.ide.eclipse.as.feature_2.3.0.v20111026-1921-H803-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.as.feature</a></td>
+ <td><span style="font-size:x-small">2.3.0.v20111026-1921-H803-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.as.server.egit.integration.feature_0.0.1.v20111019-1428-H795-M4.jar" style="font-size:x-small">org.jboss.ide.eclipse.as.server.egit.integration.feature</a></td>
- <td><span style="font-size:x-small">0.0.1.v20111019-1428-H795-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.ide.eclipse.freemarker.feature_1.2.0.v20111026-2057-H467-Beta1.jar" style="font-size:x-small">org.jboss.ide.eclipse.freemarker.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111026-2057-H467-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
- WebTools</span></td>
+ GeneralTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.freemarker.feature_1.2.0.v20111019-1406-H461-M4.jar" style="font-size:x-small">org.jboss.ide.eclipse.freemarker.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111019-1406-H461-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.birt.feature_1.3.0.v20111026-2045-H500-Beta1.jar" style="font-size:x-small">org.jboss.tools.birt.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-2045-H500-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
- |
- GeneralTools</span></td>
+ ReportTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.birt.feature_1.3.0.v20111019-1355-H493-M4.jar" style="font-size:x-small">org.jboss.tools.birt.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-1355-H493-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.cdi.feature_1.2.0.v20111026-1851-H641-Beta1.jar" style="font-size:x-small">org.jboss.tools.cdi.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111026-1851-H641-Beta1</span></td>
<td><span style="font-size:x-small">
|
- ReportTools</span></td>
- </tr>
- <tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.cdi.feature_1.2.0.v20111019-1232-H634-M4.jar" style="font-size:x-small">org.jboss.tools.cdi.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111019-1232-H634-M4</span></td>
- <td><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
- |
WebTools</span><span style="font-size:x-small">
|
GeneralTools</span></td>
</tr>
- <tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.cdi.seam.feature_1.2.0.v20111019-1232-H634-M4.jar" style="font-size:x-small">org.jboss.tools.cdi.seam.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111019-1232-H634-M4</span></td>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.cdi.seam.feature_1.2.0.v20111026-1851-H641-Beta1.jar" style="font-size:x-small">org.jboss.tools.cdi.seam.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111026-1851-H641-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><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 href="features/org.jboss.tools.central.discovery.feature_1.0.0.v20111019-0041-H25-M4.jar" style="font-size:x-small">org.jboss.tools.central.discovery.feature</a></td>
- <td><span style="font-size:x-small">1.0.0.v20111019-0041-H25-M4</span></td>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.central.discovery.feature_1.0.0.v20111026-1519-H27-Beta1.jar" style="font-size:x-small">org.jboss.tools.central.discovery.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111026-1519-H27-Beta1</span></td>
<td></td>
</tr>
- <tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.central.feature_1.0.0.v20111019-0041-H25-M4.jar" style="font-size:x-small">org.jboss.tools.central.feature</a></td>
- <td><span style="font-size:x-small">1.0.0.v20111019-0041-H25-M4</span></td>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.central.feature_1.0.0.v20111026-1519-H27-Beta1.jar" style="font-size:x-small">org.jboss.tools.central.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111026-1519-H27-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.common.core.feature_3.3.0.v20111026-0837-H529-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.core.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-0837-H529-Beta1</span></td>
+ <td></td>
+ </tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.core.feature_3.3.0.v20111018-2009-H521-M4.jar" style="font-size:x-small">org.jboss.tools.common.core.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-2009-H521-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.feature_3.3.0.v20111026-0837-H529-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-0837-H529-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.feature_3.3.0.v20111018-2009-H521-M4.jar" style="font-size:x-small">org.jboss.tools.common.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-2009-H521-M4</span></td>
- <td></td>
- </tr>
- <tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.jdt.feature_3.3.0.v20111019-1332-H525-M4.jar" style="font-size:x-small">org.jboss.tools.common.jdt.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111019-1332-H525-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.jdt.feature_3.3.0.v20111026-2014-H531-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.jdt.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-2014-H531-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.common.text.ext.feature_3.3.0.v20111026-0837-H529-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.text.ext.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-0837-H529-Beta1</span></td>
+ <td></td>
+ </tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.text.ext.feature_3.3.0.v20111018-2009-H521-M4.jar" style="font-size:x-small">org.jboss.tools.common.text.ext.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-2009-H521-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.ui.feature_3.3.0.v20111026-0837-H529-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.ui.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-0837-H529-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.ui.feature_3.3.0.v20111018-2009-H521-M4.jar" style="font-size:x-small">org.jboss.tools.common.ui.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-2009-H521-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.common.verification.feature_3.3.0.v20111026-0837-H529-Beta1.jar" style="font-size:x-small">org.jboss.tools.common.verification.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-0837-H529-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.common.verification.feature_3.3.0.v20111018-2009-H521-M4.jar" style="font-size:x-small">org.jboss.tools.common.verification.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-2009-H521-M4</span></td>
- <td></td>
- </tr>
- <tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.community.project.examples.feature_1.2.1.v20111019-0029-H450-M4.jar" style="font-size:x-small">org.jboss.tools.community.project.examples.feature</a></td>
- <td><span style="font-size:x-small">1.2.1.v20111019-0029-H450-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.community.project.examples.feature_1.2.1.v20111026-1421-H452-Beta1.jar" style="font-size:x-small">org.jboss.tools.community.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.2.1.v20111026-1421-H452-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
GeneralTools</span></td>
</tr>
- <tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.deltacloud.feature_1.0.1.v20111019-1448-H703-M4.jar" style="font-size:x-small">org.jboss.tools.deltacloud.feature</a></td>
- <td><span style="font-size:x-small">1.0.1.v20111019-1448-H703-M4</span></td>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.deltacloud.feature_1.0.1.v20111026-1817-H710-Beta1.jar" style="font-size:x-small">org.jboss.tools.deltacloud.feature</a></td>
+ <td><span style="font-size:x-small">1.0.1.v20111026-1817-H710-Beta1</span></td>
<td><span style="font-size:x-small">
|
CloudTools</span></td>
</tr>
- <tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.forge.feature_1.0.0.v20111019-1415-H324-M4.jar" style="font-size:x-small">org.jboss.tools.forge.feature</a></td>
- <td><span style="font-size:x-small">1.0.0.v20111019-1415-H324-M4</span></td>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.forge.feature_1.0.0.v20111026-2040-H331-Beta1.jar" style="font-size:x-small">org.jboss.tools.forge.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111026-2040-H331-Beta1</span></td>
<td><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.gwt.feature_1.0.2.v20111026-2050-H285-Beta1.jar" style="font-size:x-small">org.jboss.tools.gwt.feature</a></td>
+ <td><span style="font-size:x-small">1.0.2.v20111026-2050-H285-Beta1</span></td>
+ <td><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.gwt.feature_1.0.2.v20111019-1129-H276-M4.jar" style="font-size:x-small">org.jboss.tools.gwt.feature</a></td>
- <td><span style="font-size:x-small">1.0.2.v20111019-1129-H276-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jmx.feature_1.2.0.v20111026-0922-H462-Beta1.jar" style="font-size:x-small">org.jboss.tools.jmx.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111026-0922-H462-Beta1</span></td>
<td><span style="font-size:x-small">
|
+ AbridgedTools</span><span style="font-size:x-small">
+ |
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jmx.feature_1.2.0.v20111019-1400-H458-M4.jar" style="font-size:x-small">org.jboss.tools.jmx.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111019-1400-H458-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jsf.feature_3.3.0.v20111026-1049-H491-Beta1.jar" style="font-size:x-small">org.jboss.tools.jsf.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-1049-H491-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
- GeneralTools</span></td>
+ WebTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jsf.feature_3.3.0.v20111018-2138-H485-M4.jar" style="font-size:x-small">org.jboss.tools.jsf.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-2138-H485-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jst.feature_3.3.0.v20111026-0938-H592-Beta1.jar" style="font-size:x-small">org.jboss.tools.jst.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-0938-H592-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jst.feature_3.3.0.v20111018-1755-H582-M4.jar" style="font-size:x-small">org.jboss.tools.jst.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-1755-H582-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.cdi.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.cdi.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
- |
- WebTools</span></td>
+ MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.cdi.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.cdi.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.hibernate.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.hibernate.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.hibernate.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.hibernate.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.jaxrs.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jaxrs.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.jaxrs.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.jaxrs.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.jbosspackaging.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jbosspackaging.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.jbosspackaging.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.jbosspackaging.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.jsf.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.jsf.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.jsf.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.jsf.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.portlet.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.portlet.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.portlet.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.portlet.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.project.examples.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.project.examples.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.project.examples.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.maven.seam.feature_1.3.0.v20111026-1832-H455-Beta1.jar" style="font-size:x-small">org.jboss.tools.maven.seam.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1832-H455-Beta1</span></td>
<td><span style="font-size:x-small">
|
MavenTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.maven.seam.feature_1.3.0.v20111019-0122-H452-M4.jar" style="font-size:x-small">org.jboss.tools.maven.seam.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-0122-H452-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.openshift.egit.integration.feature_2.3.0.v20111026-1014-H6-Beta1.jar" style="font-size:x-small">org.jboss.tools.openshift.egit.integration.feature</a></td>
+ <td><span style="font-size:x-small">2.3.0.v20111026-1014-H6-Beta1</span></td>
<td><span style="font-size:x-small">
|
- MavenTools</span></td>
+ AbridgedTools</span><span style="font-size:x-small">
+ |
+ CloudTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.openshift.express.feature_2.3.0.v20111019-1428-H795-M4.jar" style="font-size:x-small">org.jboss.tools.openshift.express.feature</a></td>
- <td><span style="font-size:x-small">2.3.0.v20111019-1428-H795-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.openshift.express.feature_2.3.0.v20111026-1014-H6-Beta1.jar" style="font-size:x-small">org.jboss.tools.openshift.express.feature</a></td>
+ <td><span style="font-size:x-small">2.3.0.v20111026-1014-H6-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
- WebTools</span></td>
+ CloudTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.portlet.feature_1.2.0.v20111019-0015-H391-M4.jar" style="font-size:x-small">org.jboss.tools.portlet.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20111019-0015-H391-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.portlet.feature_1.2.0.v20111026-1353-H393-Beta1.jar" style="font-size:x-small">org.jboss.tools.portlet.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111026-1353-H393-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.project.examples.feature_1.2.1.v20111019-0029-H450-M4.jar" style="font-size:x-small">org.jboss.tools.project.examples.feature</a></td>
- <td><span style="font-size:x-small">1.2.1.v20111019-0029-H450-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.project.examples.feature_1.2.1.v20111026-1421-H452-Beta1.jar" style="font-size:x-small">org.jboss.tools.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.2.1.v20111026-1421-H452-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.richfaces.feature_3.3.0.v20111018-2138-H485-M4.jar" style="font-size:x-small">org.jboss.tools.richfaces.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-2138-H485-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.richfaces.feature_3.3.0.v20111026-1049-H491-Beta1.jar" style="font-size:x-small">org.jboss.tools.richfaces.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-1049-H491-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.as.detector.feature_1.3.0.v20111019-1413-H459-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.as.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-1413-H459-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.as.detector.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.as.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.core.feature_1.3.0.v20111019-1413-H459-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-1413-H459-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.core.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.feature_1.3.0.v20111019-1413-H459-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-1413-H459-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.seam.detector.feature_1.3.0.v20111019-1413-H459-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.seam.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111019-1413-H459-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.seam.detector.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.seam.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.seam.feature_3.3.0.v20111019-0306-H633-M4.jar" style="font-size:x-small">org.jboss.tools.seam.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111019-0306-H633-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.seam.feature_3.3.0.v20111026-1205-H637-Beta1.jar" style="font-size:x-small">org.jboss.tools.seam.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-1205-H637-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.struts.feature_3.3.0.v20111019-1311-H400-M4.jar" style="font-size:x-small">org.jboss.tools.struts.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111019-1311-H400-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.struts.feature_3.3.0.v20111026-1037-H404-Beta1.jar" style="font-size:x-small">org.jboss.tools.struts.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-1037-H404-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.usage.feature_1.1.0.v20111019-1347-H425-M4.jar" style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
- <td><span style="font-size:x-small">1.1.0.v20111019-1347-H425-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.usage.feature_1.1.0.v20111026-2033-H430-Beta1.jar" style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111026-2033-H430-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.vpe.feature_3.3.0.v20111018-1704-H560-M4.jar" style="font-size:x-small">org.jboss.tools.vpe.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111018-1704-H560-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.vpe.feature_3.3.0.v20111026-1005-H567-Beta1.jar" style="font-size:x-small">org.jboss.tools.vpe.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-1005-H567-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.ws.feature_1.2.2.v20111019-0243-H580-M4.jar" style="font-size:x-small">org.jboss.tools.ws.feature</a></td>
- <td><span style="font-size:x-small">1.2.2.v20111019-0243-H580-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.ws.feature_1.2.2.v20111026-1024-H584-Beta1.jar" style="font-size:x-small">org.jboss.tools.ws.feature</a></td>
+ <td><span style="font-size:x-small">1.2.2.v20111026-1024-H584-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.ws.jaxrs.feature_1.2.2.v20111019-0243-H580-M4.jar" style="font-size:x-small">org.jboss.tools.ws.jaxrs.feature</a></td>
- <td><span style="font-size:x-small">1.2.2.v20111019-0243-H580-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.ws.jaxrs.feature_1.2.2.v20111026-1024-H584-Beta1.jar" style="font-size:x-small">org.jboss.tools.ws.jaxrs.feature</a></td>
+ <td><span style="font-size:x-small">1.2.2.v20111026-1024-H584-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.xulrunner.feature_3.3.0.v20111019-1458-H563-M4.jar" style="font-size:x-small">org.jboss.tools.xulrunner.feature</a></td>
- <td><span style="font-size:x-small">3.3.0.v20111019-1458-H563-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.xulrunner.feature_3.3.0.v20111026-1005-H567-Beta1.jar" style="font-size:x-small">org.jboss.tools.xulrunner.feature</a></td>
+ <td><span style="font-size:x-small">3.3.0.v20111026-1005-H567-Beta1</span></td>
<td></td>
</tr>
<tr style="background-color:#DDDDDD">
@@ -436,11 +436,11 @@
</th>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.hibernate.eclipse.feature_3.4.0.v20111019-1504-H527-M4.jar" style="font-size:x-small">org.hibernate.eclipse.feature</a></td>
- <td><span style="font-size:x-small">3.4.0.v20111019-1504-H527-M4</span></td>
+ <td class="rowLine"><a href="features/org.hibernate.eclipse.feature_3.4.0.v20111026-0951-H530-Beta1.jar" style="font-size:x-small">org.hibernate.eclipse.feature</a></td>
+ <td><span style="font-size:x-small">3.4.0.v20111026-0951-H530-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
WebTools</span><span style="font-size:x-small">
|
@@ -471,7 +471,7 @@
<a href="features/" style="font-size:x-small">features</a></td>
<td class="rowLine" colspan="1">
::
- <a href="directory.xml" style="font-size:x-small">directory.xml</a></td>
+ <a href="jbosstools-directory.xml" style="font-size:x-small">jbosstools-directory.xml</a></td>
</tr>
</table><br xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan"></br>
</td>
Modified: trunk/build/aggregate/site/jbosstools-directory.xml
===================================================================
--- trunk/build/aggregate/site/jbosstools-directory.xml 2011-10-27 02:37:22 UTC (rev 36036)
+++ trunk/build/aggregate/site/jbosstools-directory.xml 2011-10-27 02:37:30 UTC (rev 36037)
@@ -1,4 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>
<directory xmlns="http://www.eclipse.org/mylyn/discovery/directory/">
-<entry url="plugins/org.jboss.tools.central.discovery_1.0.0.v20111019-0041-H25-M4.jar" permitCategories="true"/>
+<entry url="plugins/org.jboss.tools.central.discovery_1.0.0.v20111026-1519-H27-Beta1.jar" permitCategories="true"/>
</directory>
Modified: trunk/build/aggregate/soa-site/index.html
===================================================================
--- trunk/build/aggregate/soa-site/index.html 2011-10-27 02:37:22 UTC (rev 36036)
+++ trunk/build/aggregate/soa-site/index.html 2011-10-27 02:37:30 UTC (rev 36037)
@@ -78,114 +78,114 @@
</th>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.savara.tools.feature_2.0.0.v20111012-0515-H242-M5.jar" style="font-size:x-small">org.jboss.savara.tools.feature</a></td>
- <td><span style="font-size:x-small">2.0.0.v20111012-0515-H242-M5</span></td>
+ <td class="rowLine"><a href="features/org.jboss.savara.tools.feature_2.0.0.v20111026-0225-H266-M5.jar" style="font-size:x-small">org.jboss.savara.tools.feature</a></td>
+ <td><span style="font-size:x-small">2.0.0.v20111026-0225-H266-M5</span></td>
<td><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.bpel.feature_1.1.0.v20111013-0243-H478-M4.jar" style="font-size:x-small">org.jboss.tools.bpel.feature</a></td>
- <td><span style="font-size:x-small">1.1.0.v20111013-0243-H478-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.bpel.feature_1.1.0.v20111026-0927-H494-Beta1.jar" style="font-size:x-small">org.jboss.tools.bpel.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111026-0927-H494-Beta1</span></td>
<td><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.esb.feature_1.5.0.v20111012-2103-H511-M4.jar" style="font-size:x-small">org.jboss.tools.esb.feature</a></td>
- <td><span style="font-size:x-small">1.5.0.v20111012-2103-H511-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.esb.feature_1.5.0.v20111026-1012-H529-Beta1.jar" style="font-size:x-small">org.jboss.tools.esb.feature</a></td>
+ <td><span style="font-size:x-small">1.5.0.v20111026-1012-H529-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jbpm.common.feature_4.4.0.v20111013-0230-H471-M4.jar" style="font-size:x-small">org.jboss.tools.jbpm.common.feature</a></td>
- <td><span style="font-size:x-small">4.4.0.v20111013-0230-H471-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jbpm.common.feature_4.4.0.v20111026-0933-H487-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm.common.feature</a></td>
+ <td><span style="font-size:x-small">4.4.0.v20111026-0933-H487-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jbpm.convert.feature_1.0.0.v20111013-0230-H471-M4.jar" style="font-size:x-small">org.jboss.tools.jbpm.convert.feature</a></td>
- <td><span style="font-size:x-small">1.0.0.v20111013-0230-H471-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jbpm.convert.feature_1.0.0.v20111026-0933-H487-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm.convert.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111026-0933-H487-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jbpm3.feature_3.2.1.v20111013-0230-H471-M4.jar" style="font-size:x-small">org.jboss.tools.jbpm3.feature</a></td>
- <td><span style="font-size:x-small">3.2.1.v20111013-0230-H471-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jbpm3.feature_3.2.1.v20111026-0933-H487-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm3.feature</a></td>
+ <td><span style="font-size:x-small">3.2.1.v20111026-0933-H487-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jbpm4.feature_4.0.0.v20111013-0230-H471-M4.jar" style="font-size:x-small">org.jboss.tools.jbpm4.feature</a></td>
- <td><span style="font-size:x-small">4.0.0.v20111013-0230-H471-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jbpm4.feature_4.0.0.v20111026-0933-H487-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm4.feature</a></td>
+ <td><span style="font-size:x-small">4.0.0.v20111026-0933-H487-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.modeshape.rest.feature_1.1.0.v20111013-0220-H396-M4.jar" style="font-size:x-small">org.jboss.tools.modeshape.rest.feature</a></td>
- <td><span style="font-size:x-small">1.1.0.v20111013-0220-H396-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.modeshape.rest.feature_1.1.0.v20111026-2048-H413-Beta1.jar" style="font-size:x-small">org.jboss.tools.modeshape.rest.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111026-2048-H413-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.core.feature_1.3.0.v20111012-1749-H440-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111012-1749-H440-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.core.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.drools.detector.feature_1.3.0.v20111012-1749-H440-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.drools.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111012-1749-H440-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.drools.detector.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.drools.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.esb.detector.feature_1.3.0.v20111012-1749-H440-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.esb.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111012-1749-H440-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.esb.detector.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.esb.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.feature_1.3.0.v20111012-1749-H440-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111012-1749-H440-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.jbpm.detector.feature_1.3.0.v20111012-1749-H440-M4.jar" style="font-size:x-small">org.jboss.tools.runtime.jbpm.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111012-1749-H440-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.jbpm.detector.feature_1.3.0.v20111026-1502-H461-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.jbpm.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-1502-H461-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.smooks.feature_1.3.0.v20111013-0233-H449-M4.jar" style="font-size:x-small">org.jboss.tools.smooks.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111013-0233-H449-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.smooks.feature_1.3.0.v20111026-0938-H467-Beta1.jar" style="font-size:x-small">org.jboss.tools.smooks.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111026-0938-H467-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span><span style="font-size:x-small">
|
@@ -194,11 +194,11 @@
GeneralTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.usage.feature_1.1.0.v20111013-0214-H411-M4.jar" style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
- <td><span style="font-size:x-small">1.1.0.v20111013-0214-H411-M4</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.usage.feature_1.1.0.v20111026-2033-H430-Beta1.jar" style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111026-2033-H430-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span></td>
+ AbridgedTools</span></td>
</tr>
<tr style="background-color:#DDDDDD">
<th style="font-size:small">Feature</th>
@@ -213,7 +213,7 @@
<td><span style="font-size:x-small">5.2.1.Final</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span><span style="font-size:x-small">
|
@@ -224,7 +224,7 @@
<td><span style="font-size:x-small">5.2.1.Final</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
@@ -233,41 +233,41 @@
<td><span style="font-size:x-small">5.2.1.Final</span></td>
<td><span style="font-size:x-small">
|
- AllTools</span><span style="font-size:x-small">
+ AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.pi4soa.core.feature_3.1.1.v20111011-2153-H148-M4.jar" style="font-size:x-small">org.pi4soa.core.feature</a></td>
- <td><span style="font-size:x-small">3.1.1.v20111011-2153-H148-M4</span></td>
+ <td class="rowLine"><a href="features/org.pi4soa.core.feature_3.1.1.v20111026-0200-H165-Beta1.jar" style="font-size:x-small">org.pi4soa.core.feature</a></td>
+ <td><span style="font-size:x-small">3.1.1.v20111026-0200-H165-Beta1</span></td>
<td><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.savara.tools.feature_2.0.0.v20111012-0515-H242-M5.jar" style="font-size:x-small">org.savara.tools.feature</a></td>
- <td><span style="font-size:x-small">2.0.0.v20111012-0515-H242-M5</span></td>
+ <td class="rowLine"><a href="features/org.savara.tools.feature_2.0.0.v20111026-0225-H266-M5.jar" style="font-size:x-small">org.savara.tools.feature</a></td>
+ <td><span style="font-size:x-small">2.0.0.v20111026-0225-H266-M5</span></td>
<td><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.teiid.datatools.connectivity.feature_7.6.0.v20111013-0103-H708-M4.jar" style="font-size:x-small">org.teiid.datatools.connectivity.feature</a></td>
- <td><span style="font-size:x-small">7.6.0.v20111013-0103-H708-M4</span></td>
+ <td class="rowLine"><a href="features/org.teiid.datatools.connectivity.feature_7.6.0.v20111026-2039-H738-Beta1.jar" style="font-size:x-small">org.teiid.datatools.connectivity.feature</a></td>
+ <td><span style="font-size:x-small">7.6.0.v20111026-2039-H738-Beta1</span></td>
<td><span style="font-size:x-small">
|
DataTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.teiid.designer.feature_7.6.0.v20111013-0103-H708-M4.jar" style="font-size:x-small">org.teiid.designer.feature</a></td>
- <td><span style="font-size:x-small">7.6.0.v20111013-0103-H708-M4</span></td>
+ <td class="rowLine"><a href="features/org.teiid.designer.feature_7.6.0.v20111026-2039-H738-Beta1.jar" style="font-size:x-small">org.teiid.designer.feature</a></td>
+ <td><span style="font-size:x-small">7.6.0.v20111026-2039-H738-Beta1</span></td>
<td><span style="font-size:x-small">
|
DataTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.teiid.designer.runtime.feature_7.6.0.v20111013-0103-H708-M4.jar" style="font-size:x-small">org.teiid.designer.runtime.feature</a></td>
- <td><span style="font-size:x-small">7.6.0.v20111013-0103-H708-M4</span></td>
+ <td class="rowLine"><a href="features/org.teiid.designer.runtime.feature_7.6.0.v20111026-2039-H738-Beta1.jar" style="font-size:x-small">org.teiid.designer.runtime.feature</a></td>
+ <td><span style="font-size:x-small">7.6.0.v20111026-2039-H738-Beta1</span></td>
<td><span style="font-size:x-small">
|
DataTools</span></td>
14 years, 2 months