JBoss Tools SVN: r27298 - in trunk/jsf/tests/org.jboss.tools.jsf.test: src/org/jboss/tools/jsf/test/validation and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2010-12-09 15:16:52 -0500 (Thu, 09 Dec 2010)
New Revision: 27298
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSFKickStartOldFormat/.project
trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/validation/ELValidatorTest.java
Log:
https://issues.jboss.org/browse/JBIDE-7748 Fixed JSF tests
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSFKickStartOldFormat/.project
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSFKickStartOldFormat/.project 2010-12-09 19:50:26 UTC (rev 27297)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSFKickStartOldFormat/.project 2010-12-09 20:16:52 UTC (rev 27298)
@@ -16,11 +16,6 @@
</arguments>
</buildCommand>
<buildCommand>
- <name>org.eclipse.wst.validation.validationbuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
<name>org.jboss.tools.jst.web.kb.kbbuilder</name>
<arguments>
</arguments>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/validation/ELValidatorTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/validation/ELValidatorTest.java 2010-12-09 19:50:26 UTC (rev 27297)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/validation/ELValidatorTest.java 2010-12-09 20:16:52 UTC (rev 27298)
@@ -83,16 +83,25 @@
14);
IFile file = project.getFile("WebContent/testElRevalidation.xhtml");
- file.deleteMarkers(IValidator.KB_PROBLEM_MARKER_TYPE, true, IResource.DEPTH_ZERO);
+ file.deleteMarkers(ELValidator.PROBLEM_TYPE, true, IResource.DEPTH_ZERO);
+ assertMarkerIsNotCreatedForLine(
+ "WebContent/testElRevalidation.xhtml",
+ JSFValidationMessages.UNKNOWN_EL_VARIABLE_PROPERTY_NAME,
+ new Object[] {"user"},
+ 14, false);
+
// Check if the validator was not invoked.
copyContentsFile("WebContent/WEB-INF/faces-config.xml", "WebContent/WEB-INF/faces-config.original");
+ file = project.getFile("WebContent/WEB-INF/faces-config.xml");
+ ValidationFramework.getDefault().validate(file, new NullProgressMonitor());
+
assertMarkerIsNotCreatedForLine(
"WebContent/testElRevalidation.xhtml",
JSFValidationMessages.UNKNOWN_EL_VARIABLE_PROPERTY_NAME,
new Object[] {"user"},
- 14);
+ 14, false);
} finally {
store.setValue(JSFSeverityPreferences.RE_VALIDATE_UNRESOLVED_EL, JSFSeverityPreferences.ENABLE);
store.setValue(JSFSeverityPreferences.UNKNOWN_EL_VARIABLE_NAME, JSFSeverityPreferences.IGNORE);
@@ -304,10 +313,16 @@
}
private void assertMarkerIsCreatedForLine(String fileName, String template, Object[] parameters, int lineNumber) throws CoreException{
+ assertMarkerIsCreatedForLine(fileName, template, parameters, lineNumber, true);
+ }
+
+ private void assertMarkerIsCreatedForLine(String fileName, String template, Object[] parameters, int lineNumber, boolean validate) throws CoreException{
String messagePattern = MessageFormat.format(template, parameters);
IFile file = project.getFile(fileName);
- ValidationFramework.getDefault().validate(file, new NullProgressMonitor());
+ if(validate) {
+ ValidationFramework.getDefault().validate(file, new NullProgressMonitor());
+ }
IMarker[] markers = file.findMarkers(null, true, IResource.DEPTH_INFINITE);
for (int i = 0; i < markers.length; i++) {
@@ -320,10 +335,16 @@
}
private void assertMarkerIsNotCreatedForLine(String fileName, String template, Object[] parameters, int lineNumber) throws CoreException{
+ assertMarkerIsNotCreatedForLine(fileName, template, parameters, lineNumber, true);
+ }
+
+ private void assertMarkerIsNotCreatedForLine(String fileName, String template, Object[] parameters, int lineNumber, boolean validate) throws CoreException{
String messagePattern = MessageFormat.format(template, parameters);
IFile file = project.getFile(fileName);
- ValidationFramework.getDefault().validate(file, new NullProgressMonitor());
+ if(validate) {
+ ValidationFramework.getDefault().validate(file, new NullProgressMonitor());
+ }
IMarker[] markers = file.findMarkers(null, true, IResource.DEPTH_INFINITE);
for (int i = 0; i < markers.length; i++) {
14 years
JBoss Tools SVN: r27296 - in workspace/snjeza/runtime-update: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-12-09 14:06:07 -0500 (Thu, 09 Dec 2010)
New Revision: 27296
Added:
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012092004.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012092004.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012092004.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012092004.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012092004.jar
Removed:
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091959.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091959.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091959.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091959.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091959.jar
Modified:
workspace/snjeza/runtime-update/artifacts.jar
workspace/snjeza/runtime-update/content.jar
workspace/snjeza/runtime-update/site.xml
Log:
JBIDE-7527 JBoss Runtime Detection update site
Modified: workspace/snjeza/runtime-update/artifacts.jar
===================================================================
(Binary files differ)
Modified: workspace/snjeza/runtime-update/content.jar
===================================================================
(Binary files differ)
Deleted: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091959.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012092004.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012092004.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091959.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012092004.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012092004.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091959.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012092004.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012092004.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091959.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012092004.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012092004.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091959.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012092004.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012092004.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: workspace/snjeza/runtime-update/site.xml
===================================================================
--- workspace/snjeza/runtime-update/site.xml 2010-12-09 19:01:11 UTC (rev 27295)
+++ workspace/snjeza/runtime-update/site.xml 2010-12-09 19:06:07 UTC (rev 27296)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
- <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012091959.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012091959">
+ <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012092004.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012092004">
<category name="org.jboss.tools.runtime.category"/>
</feature>
- <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012091959.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012091959">
+ <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012092004.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012092004">
<category name="org.jboss.tools.runtime.category"/>
</feature>
<category-def name="org.jboss.tools.runtime.category" label="JBoss Runtime Detection"/>
14 years
JBoss Tools SVN: r27295 - in workspace/snjeza/runtime-update: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-12-09 14:01:11 -0500 (Thu, 09 Dec 2010)
New Revision: 27295
Added:
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091959.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091959.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091959.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091959.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091959.jar
Removed:
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091956.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091956.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091956.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091956.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091956.jar
Modified:
workspace/snjeza/runtime-update/artifacts.jar
workspace/snjeza/runtime-update/content.jar
workspace/snjeza/runtime-update/site.xml
Log:
JBIDE-7527 JBoss Runtime Detection update site
Modified: workspace/snjeza/runtime-update/artifacts.jar
===================================================================
(Binary files differ)
Modified: workspace/snjeza/runtime-update/content.jar
===================================================================
(Binary files differ)
Deleted: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091956.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091959.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091959.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091956.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091959.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091959.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091956.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091959.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091959.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091956.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091959.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091959.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091956.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091959.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091959.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: workspace/snjeza/runtime-update/site.xml
===================================================================
--- workspace/snjeza/runtime-update/site.xml 2010-12-09 18:57:54 UTC (rev 27294)
+++ workspace/snjeza/runtime-update/site.xml 2010-12-09 19:01:11 UTC (rev 27295)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
- <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012091956.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012091956">
+ <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012091959.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012091959">
<category name="org.jboss.tools.runtime.category"/>
</feature>
- <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012091956.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012091956">
+ <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012091959.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012091959">
<category name="org.jboss.tools.runtime.category"/>
</feature>
<category-def name="org.jboss.tools.runtime.category" label="JBoss Runtime Detection"/>
14 years
JBoss Tools SVN: r27294 - in workspace/snjeza/runtime-update: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-12-09 13:57:54 -0500 (Thu, 09 Dec 2010)
New Revision: 27294
Added:
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091956.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091956.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091956.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091956.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091956.jar
Removed:
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091950.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091950.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091950.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091950.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091950.jar
Modified:
workspace/snjeza/runtime-update/artifacts.jar
workspace/snjeza/runtime-update/content.jar
workspace/snjeza/runtime-update/site.xml
Log:
JBoss Runtime Detection update site
Modified: workspace/snjeza/runtime-update/artifacts.jar
===================================================================
(Binary files differ)
Modified: workspace/snjeza/runtime-update/content.jar
===================================================================
(Binary files differ)
Deleted: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091950.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091956.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091956.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091950.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091956.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091956.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091950.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091956.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091956.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091950.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091956.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091956.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091950.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091956.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091956.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: workspace/snjeza/runtime-update/site.xml
===================================================================
--- workspace/snjeza/runtime-update/site.xml 2010-12-09 18:51:26 UTC (rev 27293)
+++ workspace/snjeza/runtime-update/site.xml 2010-12-09 18:57:54 UTC (rev 27294)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
- <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012091950.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012091950">
+ <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012091956.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012091956">
<category name="org.jboss.tools.runtime.category"/>
</feature>
- <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012091950.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012091950">
+ <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012091956.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012091956">
<category name="org.jboss.tools.runtime.category"/>
</feature>
<category-def name="org.jboss.tools.runtime.category" label="JBoss Runtime Detection"/>
14 years
JBoss Tools SVN: r27293 - in workspace/snjeza/runtime-update: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-12-09 13:51:26 -0500 (Thu, 09 Dec 2010)
New Revision: 27293
Added:
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091950.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091950.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091950.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091950.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091950.jar
Removed:
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091930.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091930.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091930.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091930.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091930.jar
Modified:
workspace/snjeza/runtime-update/artifacts.jar
workspace/snjeza/runtime-update/content.jar
workspace/snjeza/runtime-update/site.xml
Log:
JBoss Runtime Detection update site
Modified: workspace/snjeza/runtime-update/artifacts.jar
===================================================================
(Binary files differ)
Modified: workspace/snjeza/runtime-update/content.jar
===================================================================
(Binary files differ)
Deleted: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091930.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091950.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091950.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091930.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091950.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091950.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091930.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091950.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091950.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091930.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091950.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091950.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Deleted: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091930.jar
===================================================================
(Binary files differ)
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091950.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091950.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: workspace/snjeza/runtime-update/site.xml
===================================================================
--- workspace/snjeza/runtime-update/site.xml 2010-12-09 18:43:59 UTC (rev 27292)
+++ workspace/snjeza/runtime-update/site.xml 2010-12-09 18:51:26 UTC (rev 27293)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
- <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012091930.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012091930">
+ <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012091950.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012091950">
<category name="org.jboss.tools.runtime.category"/>
</feature>
- <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012091930.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012091930">
+ <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012091950.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012091950">
<category name="org.jboss.tools.runtime.category"/>
</feature>
<category-def name="org.jboss.tools.runtime.category" label="JBoss Runtime Detection"/>
14 years
JBoss Tools SVN: r27292 - in workspace/snjeza/runtime-update: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-12-09 13:43:59 -0500 (Thu, 09 Dec 2010)
New Revision: 27292
Added:
workspace/snjeza/runtime-update/.project
workspace/snjeza/runtime-update/artifacts.jar
workspace/snjeza/runtime-update/content.jar
workspace/snjeza/runtime-update/features/
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091930.jar
workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091930.jar
workspace/snjeza/runtime-update/plugins/
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091930.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091930.jar
workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091930.jar
workspace/snjeza/runtime-update/site.xml
Log:
JBoss Runtime Detection update site
Added: workspace/snjeza/runtime-update/.project
===================================================================
--- workspace/snjeza/runtime-update/.project (rev 0)
+++ workspace/snjeza/runtime-update/.project 2010-12-09 18:43:59 UTC (rev 27292)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.runtime.update</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.UpdateSiteBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.UpdateSiteNature</nature>
+ </natures>
+</projectDescription>
Added: workspace/snjeza/runtime-update/artifacts.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/artifacts.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/runtime-update/content.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/content.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091930.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.core.feature_1.0.0.201012091930.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091930.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/features/org.jboss.tools.runtime.feature_1.2.0.201012091930.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091930.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.core_1.0.0.201012091930.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091930.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime.ui_1.0.0.201012091930.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091930.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/runtime-update/plugins/org.jboss.tools.runtime_1.2.0.201012091930.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/runtime-update/site.xml
===================================================================
--- workspace/snjeza/runtime-update/site.xml (rev 0)
+++ workspace/snjeza/runtime-update/site.xml 2010-12-09 18:43:59 UTC (rev 27292)
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <feature url="features/org.jboss.tools.runtime.core.feature_1.0.0.201012091930.jar" id="org.jboss.tools.runtime.core.feature" version="1.0.0.201012091930">
+ <category name="org.jboss.tools.runtime.category"/>
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.feature_1.2.0.201012091930.jar" id="org.jboss.tools.runtime.feature" version="1.2.0.201012091930">
+ <category name="org.jboss.tools.runtime.category"/>
+ </feature>
+ <category-def name="org.jboss.tools.runtime.category" label="JBoss Runtime Detection"/>
+</site>
14 years
JBoss Tools SVN: r27291 - workspace/snjeza.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-12-09 13:38:58 -0500 (Thu, 09 Dec 2010)
New Revision: 27291
Added:
workspace/snjeza/runtime-update/
Log:
Initial import.
14 years
JBoss Tools SVN: r27290 - in trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui: src/org/jboss/tools/deltacloud/ui/views/cloudelements and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2010-12-09 13:37:56 -0500 (Thu, 09 Dec 2010)
New Revision: 27290
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/cloudelements/AbstractCloudElementTableView.java
Log:
[JBIDE-7694] relayouting combo parent when a new cloud is added -> resizes the combo
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-12-09 18:36:55 UTC (rev 27289)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-12-09 18:37:56 UTC (rev 27290)
@@ -1,5 +1,8 @@
2010-12-09 André Dietisheim <adietish(a)redhat.com>
+ * src/org/jboss/tools/deltacloud/ui/views/cloudelements/AbstractCloudElementTableView.java
+ (cloudsChanged):
+ [JBIDE-7694] relayouting combo parent when a new cloud is added -> resizes the combo
* src/org/jboss/tools/internal/deltacloud/ui/wizards/NewInstancePage.java (asyncGetProfiles):
[JBIDE-7818] replaced threads by jobs (so that I can implement proper job scheduling rules across deltacloud tools),
cleaned code - split code in several methods, removed profile combo initialization that was done in parallel to the
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/cloudelements/AbstractCloudElementTableView.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/cloudelements/AbstractCloudElementTableView.java 2010-12-09 18:36:55 UTC (rev 27289)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/views/cloudelements/AbstractCloudElementTableView.java 2010-12-09 18:37:56 UTC (rev 27290)
@@ -115,6 +115,8 @@
}
};
+ private Composite container;
+
private boolean isNewCloud(DeltaCloud cloud) {
return currentCloud == null
|| !currentCloud.equals(cloud);
@@ -151,7 +153,7 @@
@Override
public void createPartControl(Composite parent) {
- Composite container = new Composite(parent, SWT.NULL);
+ this.container = new Composite(parent, SWT.NULL);
FormLayout layout = new FormLayout();
layout.marginHeight = 0;
layout.marginWidth = 0;
@@ -362,6 +364,7 @@
currentCloudSelector.setText("");
setViewerInput(null);
}
+ container.layout(true, true);
}
private String[] toCloudNames(DeltaCloud[] clouds) {
14 years