JBoss Tools SVN: r29159 - trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2011-02-15 11:41:16 -0500 (Tue, 15 Feb 2011)
New Revision: 29159
Modified:
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/EditingActionsTest.java
Log:
Fixes for JBDS 4.0.0.CR4
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/EditingActionsTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/EditingActionsTest.java 2011-02-15 16:00:25 UTC (rev 29158)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/EditingActionsTest.java 2011-02-15 16:41:16 UTC (rev 29159)
@@ -153,7 +153,9 @@
jspEditor.save();
botExt.sleep(Timing.time3S());
nsIDOMNode node = webBrowser.getDomNodeByTagName(nodeText, 0);
+ botExt.sleep(Timing.time1S());
webBrowser.setFocus();
+ botExt.sleep(Timing.time1S());
webBrowser.selectDomNode(node, 0);
botExt.sleep(Timing.time1S());
13 years, 10 months
JBoss Tools SVN: r29158 - in trunk/deltacloud/plugins: org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-02-15 11:00:25 -0500 (Tue, 15 Feb 2011)
New Revision: 29158
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/ShowInRemoteSystemExplorerHandler.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/ConvertRSEToServerWizard.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/CreateRSEFromInstanceJob.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/wizard/INewInstanceWizardPage.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/wizards/NewInstanceWizard.java
Log:
[JBIDE-8423] not failing with assertion caused exception if no hostname is provided. Just cancelling job then.
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/ChangeLog 2011-02-15 14:57:53 UTC (rev 29157)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/ChangeLog 2011-02-15 16:00:25 UTC (rev 29158)
@@ -1,3 +1,9 @@
+2011-02-15 André Dietisheim <André Dietisheim@adietisheim-thinkpad>
+
+ * src/org/jboss/tools/deltacloud/integration/wizard/CreateRSEFromInstanceJob.java (runRSEJob):
+ * src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java (createRSEHostName):
+ [JBIDE-8423] not failing with assertion caused exception if no hostname is provided. Just cancelling job then.
+
2011-02-10 André Dietisheim <André Dietisheim@adietisheim-thinkpad>
* src/org/jboss/tools/deltacloud/integration/wizard/CreateRSEFromInstanceJob.java
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java 2011-02-15 14:57:53 UTC (rev 29157)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/RSEUtils.java 2011-02-15 16:00:25 UTC (rev 29158)
@@ -73,13 +73,19 @@
return instance.getAlias();
}
- public static String createHostName(DeltaCloudInstance instance) {
- Assert.isLegal(instance != null, "Cannot get hostname: instance is not defined");
-
- String hostName = instance.getHostName();
- Assert.isTrue(hostName != null && hostName.length() > 0,
- MessageFormat.format("Cannot get host name: not defined for instance {0}", instance.getName()));
- return hostName;
+ /**
+ * Returns the RSE host name for the given instance. Returns
+ * <code>null</code> if the instance is <code>null</null>.
+ *
+ * @param instance
+ * the instance to use to determine the host name for RSE
+ * @return the hostname
+ */
+ public static String createRSEHostName(DeltaCloudInstance instance) {
+ if (instance == null) {
+ return null;
+ }
+ return instance.getHostName();
}
public static IHost createHost(String username, String connectionName, String hostname, IRSESystemType systemType,
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/ShowInRemoteSystemExplorerHandler.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/ShowInRemoteSystemExplorerHandler.java 2011-02-15 14:57:53 UTC (rev 29157)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/rse/util/ShowInRemoteSystemExplorerHandler.java 2011-02-15 16:00:25 UTC (rev 29158)
@@ -41,7 +41,7 @@
IHost host = RSEUtils.createHost(
DeltaCloudRSEConstants.USERNAME,
connectionName,
- RSEUtils.createHostName(instance),
+ RSEUtils.createRSEHostName(instance),
RSEUtils.getSSHOnlySystemType(),
RSEUtils.getSystemRegistry());
Job connectJob = RSEUtils.connect(connectionName, RSEUtils.getConnectorService(host));
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/ConvertRSEToServerWizard.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/ConvertRSEToServerWizard.java 2011-02-15 14:57:53 UTC (rev 29157)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/ConvertRSEToServerWizard.java 2011-02-15 16:00:25 UTC (rev 29158)
@@ -22,7 +22,7 @@
@Override
public boolean performFinish() {
- Job j = page1.getPerformFinishJob(instance);
+ Job j = page1.createPerformFinishJob(instance);
if( j != null ) {
j.schedule();
}
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/CreateRSEFromInstanceJob.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/CreateRSEFromInstanceJob.java 2011-02-15 14:57:53 UTC (rev 29157)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/CreateRSEFromInstanceJob.java 2011-02-15 16:00:25 UTC (rev 29158)
@@ -56,25 +56,34 @@
}
private IStatus runRSEJob(DeltaCloudInstance instance, IProgressMonitor monitor) throws CoreException {
- String hostname = RSEUtils.createHostName(instance);
- if (hostname != null && hostname.length() > 0 && isAutoconnect()) {
+ if (monitor.isCanceled()) {
+ return Status.CANCEL_STATUS;
+ }
+
+ String hostname = RSEUtils.createRSEHostName(instance);
+ if (hostname == null || hostname.length() <= 0) {
+ return Status.CANCEL_STATUS;
+ }
+
+ if (isAutoconnect()) {
try {
monitor.beginTask(MessageFormat.format("Create RSE to server {0}", hostname), 100);
String connectionName = RSEUtils.createConnectionName(instance);
IHost host = RSEUtils.createHost(
DeltaCloudRSEConstants.USERNAME,
connectionName,
- RSEUtils.createHostName(instance),
+ RSEUtils.createRSEHostName(instance),
RSEUtils.getSSHOnlySystemType(),
RSEUtils.getSystemRegistry());
if (nextJob2 != null && nextJob2 instanceof CreateServerFromRSEJob) {
((CreateServerFromRSEJob) nextJob2).setHost(host);
}
monitor.worked(10);
- IStatus credentials =
- triggerCredentialsDialog(host, new SubProgressMonitor(monitor, 10));
- if( credentials.isOK())
- return RSEUtils.connect(RSEUtils.getConnectorService(host), CONNECT_TIMEOUT, new SubProgressMonitor(monitor, 80));
+ IStatus credentials =
+ triggerCredentialsDialog(host, new SubProgressMonitor(monitor, 10));
+ if (credentials.isOK())
+ return RSEUtils.connect(RSEUtils.getConnectorService(host), CONNECT_TIMEOUT,
+ new SubProgressMonitor(monitor, 80));
return credentials;
} catch (Exception e) {
throw new CoreException(
@@ -90,14 +99,14 @@
monitor.setTaskName(MessageFormat.format("Initiating connection to {0}...", host.getName()));
IRemoteFileSubSystem system = RSEUtils.findRemoteFileSubSystem(host);
system.connect(monitor, true /* force credentials dialog */);
- } catch(Exception e) {
- if( e instanceof OperationCanceledException)
+ } catch (Exception e) {
+ if (e instanceof OperationCanceledException)
return Status.CANCEL_STATUS;
- if( e instanceof SystemOperationFailedException ) {
+ if (e instanceof SystemOperationFailedException) {
Exception f = ((SystemOperationFailedException) e).getRemoteException();
- if( f != null && f instanceof JSchException) {
+ if (f != null && f instanceof JSchException) {
// User selected No on accept hostkey
- if(f.getMessage().contains("reject HostKey:"))
+ if (f.getMessage().contains("reject HostKey:"))
return Status.CANCEL_STATUS;
}
}
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java 2011-02-15 14:57:53 UTC (rev 29157)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.integration/src/org/jboss/tools/deltacloud/integration/wizard/RSEandASWizardPage.java 2011-02-15 16:00:25 UTC (rev 29158)
@@ -340,7 +340,7 @@
localRuntimeCombo.setEnabled(enabled);
}
- public ChainedJob getPerformFinishJob(final DeltaCloudInstance instance) {
+ public ChainedJob createPerformFinishJob(final DeltaCloudInstance instance) {
IEclipsePreferences prefs = new InstanceScope().getNode(DeltaCloudIntegrationPlugin.PLUGIN_ID);
prefs.putBoolean(CREATE_RSE_PREF_KEY, createRSE.getSelection());
prefs.putBoolean(CREATE_SERVER_PREF_KEY, createServer.getSelection());
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/wizard/INewInstanceWizardPage.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/wizard/INewInstanceWizardPage.java 2011-02-15 14:57:53 UTC (rev 29157)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/wizard/INewInstanceWizardPage.java 2011-02-15 16:00:25 UTC (rev 29158)
@@ -21,5 +21,5 @@
public static final String NEW_INSTANCE_FAMILY = "newInstanceFamily";
- public ChainedJob getPerformFinishJob(DeltaCloudInstance addedInstance);
+ public ChainedJob createPerformFinishJob(DeltaCloudInstance addedInstance);
}
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/wizards/NewInstanceWizard.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/wizards/NewInstanceWizard.java 2011-02-15 14:57:53 UTC (rev 29157)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/wizards/NewInstanceWizard.java 2011-02-15 16:00:25 UTC (rev 29158)
@@ -135,7 +135,7 @@
ChainedJob last = first;
ChainedJob temp;
for (int i = 0; i < additionalPages.length; i++) {
- temp = additionalPages[i].getPerformFinishJob(instance);
+ temp = additionalPages[i].createPerformFinishJob(instance);
if (temp != null) {
last.setNextJob(temp);
last = temp;
13 years, 10 months
JBoss Tools SVN: r29157 - in trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf: web/validation and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2011-02-15 09:57:53 -0500 (Tue, 15 Feb 2011)
New Revision: 29157
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/JSFUIMessages.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/messages.properties
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/LocalizedMessage.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidator.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/util/JSF2ValidatorConstants.java
Log:
https://issues.jboss.org/browse/JBIDE-7003, quick fix message adjustment.
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/JSFUIMessages.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/JSFUIMessages.java 2011-02-15 14:14:35 UTC (rev 29156)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/JSFUIMessages.java 2011-02-15 14:57:53 UTC (rev 29157)
@@ -148,7 +148,10 @@
public static String Refactoring_JSF_2_Changes_Rename_Composite_Component;
public static String Refactoring_JSF_2_Rename_Composite_Component;
public static String Refactoring_JSF_2_Rename_Attr_Ref_Decl;
+ public static String NonExternalizedStringLiteral;
+ public static String NonExternalizedStringMarkerLabel;
+
static {
// load message values from bundle file
NLS.initializeMessages(BUNDLE_NAME, JSFUIMessages.class);
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/messages.properties
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/messages.properties 2011-02-15 14:14:35 UTC (rev 29156)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/messages/messages.properties 2011-02-15 14:57:53 UTC (rev 29157)
@@ -125,3 +125,5 @@
Refactoring_JSF_2_Changes_Rename_Composite_Component=Changes to rename composite component
Refactoring_JSF_2_Rename_Composite_Component=Rename composite component
Refactoring_JSF_2_Rename_Attr_Ref_Decl=Rename composite attribute reference in declaration
+NonExternalizedStringLiteral=Non externalized String literal; It should be moved to resource bundles.
+NonExternalizedStringMarkerLabel=Move String "{0}" to resource bundle.
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/LocalizedMessage.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/LocalizedMessage.java 2011-02-15 14:14:35 UTC (rev 29156)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/LocalizedMessage.java 2011-02-15 14:57:53 UTC (rev 29157)
@@ -78,8 +78,12 @@
i18nLocMessage.setAttribute("problemType", I18nValidationComponent.PROBLEM_ID); //$NON-NLS-1$
i18nLocMessage.setAttribute(IMarker.LINE_NUMBER, i18nLocMessage.getLineNumber());
i18nLocMessage.setAttribute(IMarker.SEVERITY, 1);
- i18nLocMessage.setAttribute(ValidatorMessage.ValidationId, "org.jboss.tools.jsf.i18n.source");
+ i18nLocMessage.setAttribute(ValidatorMessage.ValidationId, "org.jboss.tools.jsf.i18n.source"); //$NON-NLS-1$
i18nLocMessage.setAttribute(IMarker.MESSAGE,i18nLocMessage.getText());
+ if(ijsfValidationComponent instanceof I18nValidationComponent){
+ i18nLocMessage.setAttribute(JSF2ValidatorConstants.INVALID_STRING_KEY,
+ ((I18nValidationComponent)ijsfValidationComponent).getInValidString());
+ }
return i18nLocMessage;
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java 2011-02-15 14:14:35 UTC (rev 29156)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java 2011-02-15 14:57:53 UTC (rev 29157)
@@ -10,8 +10,14 @@
******************************************************************************/
package org.jboss.tools.jsf.web.validation.i18n;
+import java.text.MessageFormat;
+
import org.eclipse.core.resources.IMarker;
+import org.eclipse.core.runtime.CoreException;
import org.eclipse.ui.IMarkerResolution;
+import org.jboss.tools.jsf.JSFModelPlugin;
+import org.jboss.tools.jsf.messages.JSFUIMessages;
+import org.jboss.tools.jsf.web.validation.jsf2.util.JSF2ValidatorConstants;
/**
*
@@ -19,19 +25,22 @@
*
*/
public class I18nMarkerResolution implements IMarkerResolution {
-
+
+ private String invalidString="";
+
public I18nMarkerResolution(IMarker marker) {
- // TODO Auto-generated constructor stub
+ try {
+ invalidString = (String) marker.getAttribute(JSF2ValidatorConstants.INVALID_STRING_KEY);
+ } catch (CoreException e) {
+ JSFModelPlugin.getPluginLog().logError(e);
+ }
}
public String getLabel() {
- // TODO Auto-generated method stub
- return "";
+ return MessageFormat.format(JSFUIMessages.NonExternalizedStringMarkerLabel,invalidString);
}
public void run(IMarker marker) {
- // TODO Auto-generated method stub
-
+
}
-
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java 2011-02-15 14:14:35 UTC (rev 29156)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java 2011-02-15 14:57:53 UTC (rev 29157)
@@ -12,7 +12,9 @@
import org.eclipse.wst.xml.core.internal.provisional.document.IDOMText;
import org.jboss.tools.jsf.JSFModelPlugin;
+import org.jboss.tools.jsf.messages.JSFUIMessages;
import org.jboss.tools.jsf.web.validation.JSFAbstractValidationComponent;
+import org.w3c.dom.Node;
/**
* @author mareshkau
@@ -22,6 +24,8 @@
public static String PROBLEM_ID = JSFModelPlugin.PLUGIN_ID
+ ".i18nproblemmarker"; //$NON-NLS-1$
+ private String inValidString;
+
//component creating usung factory method
private I18nValidationComponent(){}
@@ -33,6 +37,7 @@
component.getStartOffSet()) + 1);
component.createValidationMessage();
component.createMessageParams();
+ component.setInValidString(element.getNodeValue());
return component;
}
@@ -51,7 +56,21 @@
public void createValidationMessage() {
- setValidationMessage("Non externalized String literal; It should be moved to resource bundles.");
+ setValidationMessage(JSFUIMessages.NonExternalizedStringLiteral);
}
+ /**
+ * @param inValidString the inValidString to set
+ */
+ public void setInValidString(String inValidString) {
+ this.inValidString = inValidString;
+ }
+
+ /**
+ * @return the inValidString
+ */
+ public String getInValidString() {
+ return inValidString;
+ }
+
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidator.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidator.java 2011-02-15 14:14:35 UTC (rev 29156)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidator.java 2011-02-15 14:57:53 UTC (rev 29157)
@@ -67,13 +67,9 @@
public void validate(IValidationContext helper, IReporter reporter)
throws ValidationException {
- List<Node> notValidNodes = new ArrayList<Node>();
- validateDOM(document, notValidNodes);
- List<IJSFValidationComponent> jsfValComponents = new ArrayList<IJSFValidationComponent>();
- for (Node node : notValidNodes) {
- jsfValComponents.add(I18nValidationComponent.createI18nValidationComponent((IDOMText)node));
- }
- reportProblems(helper, reporter, jsfValComponents);
+ List<IJSFValidationComponent> jsfnonValComponents = new ArrayList<IJSFValidationComponent>();
+ validateDOM(document, jsfnonValComponents);
+ reportProblems(helper, reporter, jsfnonValComponents);
}
private void reportProblems(IValidationContext helper, IReporter reporter,
@@ -95,16 +91,16 @@
- private void validateDOM(Node node, List<Node> nonExtStings){
+ private void validateDOM(Node node, List<IJSFValidationComponent> jsfnonValComponents){
NodeList childNodes = node.getChildNodes();
for(int i=0;i<childNodes.getLength();i++) {
Node childNode = childNodes.item(i);
if(childNode instanceof Text){
if(!validateTextNode(((Text)childNode).getNodeValue())){
- nonExtStings.add(childNode);
+ jsfnonValComponents.add(I18nValidationComponent.createI18nValidationComponent((IDOMText)childNode));
}
}else {
- validateDOM(childNode, nonExtStings);
+ validateDOM(childNode, jsfnonValComponents);
}
}
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/util/JSF2ValidatorConstants.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/util/JSF2ValidatorConstants.java 2011-02-15 14:14:35 UTC (rev 29156)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/util/JSF2ValidatorConstants.java 2011-02-15 14:57:53 UTC (rev 29157)
@@ -34,4 +34,6 @@
public static final String JSF2_FIXABLE_ATTR_TYPE = "JSF2_FIXABLE_ATTR_TYPE"; //$NON-NLS-1$
public static final String JSF2_URI_TYPE = "JSF2_URI_TYPE"; //$NON-NLS-1$
+
+ public static final String INVALID_STRING_KEY = "INVALID_STRING_KEY"; //$NON-NLS-1$
}
13 years, 10 months
JBoss Tools SVN: r29156 - in trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test: resources/preferences and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2011-02-15 09:14:35 -0500 (Tue, 15 Feb 2011)
New Revision: 29156
Added:
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/BlockCommentTestUntoggle.xml
Modified:
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/CommentTestUntoggle.xml
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/HideBorderForUnknownTag.xml
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/ShowBorderForUnknownTag.xml
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/ShowNonVisualTags.xml
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/BlockCommentTest.java
Log:
Fixes for JBDS 4.0.0.CR4
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/BlockCommentTestUntoggle.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/BlockCommentTestUntoggle.xml (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/BlockCommentTestUntoggle.xml 2011-02-15 14:14:35 UTC (rev 29156)
@@ -0,0 +1,41 @@
+<BODY id="__content__area__" >
+<DIV style="-moz-user-modify: read-write;" >
+<DIV style="display: none; -moz-user-modify: read-only;" title="head" >
+</DIV>
+<DIV title="body" >
+<TABLE style="border: 1px dotted rgb(255, 102, 0); padding: 5px; width: 100%;" title="f:view" >
+<TR title="f:view" >
+<TD title="f:view" >
+<DIV title="f:view" >
+<H1 style="-moz-user-modify: read-write;" title="h1" >
+<SPAN class="vpe-text" title="h:outputText value: #{Message.header}" >
+Hello Demo Application
+</SPAN>
+</H1>
+<UL style="color: red; -moz-user-modify: read-only;" title="h:messages style: color: red" >
+<LI title="h:messages style: color: red" >
+Error Messages
+</LI>
+</UL>
+<FORM style="border: 1px dotted rgb(255, 102, 0); padding: 5px;" title="h:form id: greetingForm" >
+<SPAN class="vpe-text" title="h:outputText value: #{Message.prompt_message}" >
+Name:
+</SPAN>
+<SPAN class="vpe-text" title="h:inputText value: #{user.name} required: true" >
+<SPAN class="vpe-text" title="h:inputText value: #{user.name} required: true" >
+</SPAN>
+<INPUT value="#{user.name}" title="h:inputText value: #{user.name} required: true" >
+</INPUT>
+</SPAN>
+<INPUT type="button" title="h:commandButton action: hello value: Say Hello!" value="Say Hello!" style="-moz-user-modify: read-only;" >
+</INPUT>
+</FORM>
+</DIV>
+</TD>
+</TR>
+</TABLE>
+</DIV>
+</DIV>
+<IMG vpetemporarydndelement="true" id="dragIcon" src="file:////opt/jbdevstudio4.0.0.M2/studio/eclipse/plugins/org.jboss.tools.vpe_3.2.0.v201008232021N-H413-M2/ve/dragIcon.gif" style="position: absolute; cursor: move; left: 260px ! important; top: 119px ! important;" >
+</IMG>
+</BODY>
\ No newline at end of file
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/BlockCommentTestUntoggle.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/CommentTestUntoggle.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/CommentTestUntoggle.xml 2011-02-15 11:33:10 UTC (rev 29155)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/editor/CommentTestUntoggle.xml 2011-02-15 14:14:35 UTC (rev 29156)
@@ -27,7 +27,7 @@
<INPUT value="#{user.name}" title="h:inputText value: #{user.name} required: true" >
</INPUT>
</SPAN>
-<INPUT type="button" title="h:commandButton action: hello value: Say Hello!" value="Say Hello!" style="-moz-user-modify: read-only;" >
+<INPUT type="button" title="h:commandButton action: hello value: Say Hello!" value="Say Hello!" style="border: 2px solid rgb(0, 0, 255) ! important; -moz-user-modify: read-only;" oldstyle="-moz-user-modify: read-only;" >
</INPUT>
</FORM>
</DIV>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/HideBorderForUnknownTag.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/HideBorderForUnknownTag.xml 2011-02-15 11:33:10 UTC (rev 29155)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/HideBorderForUnknownTag.xml 2011-02-15 14:14:35 UTC (rev 29156)
@@ -7,7 +7,7 @@
<TR title="f:view" >
<TD title="f:view" >
<DIV title="f:view" >
-<H1 style="-moz-user-modify: read-write;" title="h1" >
+<H1 style="border: 2px solid rgb(0, 0, 255) ! important; -moz-user-modify: read-write;" title="h1" oldstyle="-moz-user-modify: read-write;" >
<SPAN class="vpe-text" title="h:outputText value: #{Message.header}" >
Hello Demo Application
</SPAN>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/ShowBorderForUnknownTag.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/ShowBorderForUnknownTag.xml 2011-02-15 11:33:10 UTC (rev 29155)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/ShowBorderForUnknownTag.xml 2011-02-15 14:14:35 UTC (rev 29156)
@@ -7,7 +7,7 @@
<TR title="f:view" >
<TD title="f:view" >
<DIV title="f:view" >
-<H1 style="-moz-user-modify: read-write;" title="h1" >
+<H1 style="border: 2px solid rgb(0, 0, 255) ! important; -moz-user-modify: read-write;" title="h1" oldstyle="-moz-user-modify: read-write;" >
<SPAN class="vpe-text" title="h:outputText value: #{Message.header}" >
Hello Demo Application
</SPAN>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/ShowNonVisualTags.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/ShowNonVisualTags.xml 2011-02-15 11:33:10 UTC (rev 29155)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/resources/preferences/ShowNonVisualTags.xml 2011-02-15 14:14:35 UTC (rev 29156)
@@ -1,6 +1,6 @@
<BODY id="__content__area__" >
<SPAN >
-<SPAN style="border: 1px dashed GREY; color: GREY; font-size: 12px;" >
+<SPAN style="border: 2px solid rgb(0, 0, 255) ! important; color: GREY; font-size: 12px;" oldstyle="border: 1px dashed GREY; color: GREY; font-size: 12px;" >
jsp:directive.taglib
</SPAN>
<BR vpe:pseudo-element="yes" style="font-style: italic; color: green; -moz-user-modify: read-only;" >
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/BlockCommentTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/BlockCommentTest.java 2011-02-15 11:33:10 UTC (rev 29155)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/BlockCommentTest.java 2011-02-15 14:14:35 UTC (rev 29156)
@@ -50,7 +50,7 @@
getEditor().navigateTo(18,22);
bot.menu("Source").menu("Remove Block Comment").click(); //$NON-NLS-1$//$NON-NLS-2$
- checkVPE("CommentTestUntoggle.xml"); //$NON-NLS-1$
+ checkVPE("BlockCommentTestUntoggle.xml"); //$NON-NLS-1$
//Test add block comment lines with CTRL+SHIFT+/ hot keys
@@ -62,7 +62,7 @@
getEditor().navigateTo(18,22);
bot.menu("Source").menu("Remove Block Comment").click(); //$NON-NLS-1$ //$NON-NLS-2$
- checkVPE("CommentTestUntoggle.xml"); //$NON-NLS-1$
+ checkVPE("BlockCommentTestUntoggle.xml"); //$NON-NLS-1$
}
13 years, 10 months
JBoss Tools SVN: r29155 - trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2011-02-15 06:33:10 -0500 (Tue, 15 Feb 2011)
New Revision: 29155
Added:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolutionGenerator.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java
Log:
https://issues.jboss.org/browse/JBIDE-7003, fix compilation errors.
Added: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java (rev 0)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolution.java 2011-02-15 11:33:10 UTC (rev 29155)
@@ -0,0 +1,37 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2011 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.jsf.web.validation.i18n;
+
+import org.eclipse.core.resources.IMarker;
+import org.eclipse.ui.IMarkerResolution;
+
+/**
+ *
+ * @author mareshkau
+ *
+ */
+public class I18nMarkerResolution implements IMarkerResolution {
+
+ public I18nMarkerResolution(IMarker marker) {
+ // TODO Auto-generated constructor stub
+ }
+
+ public String getLabel() {
+ // TODO Auto-generated method stub
+ return "";
+ }
+
+ public void run(IMarker marker) {
+ // TODO Auto-generated method stub
+
+ }
+
+}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolutionGenerator.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolutionGenerator.java 2011-02-15 10:15:10 UTC (rev 29154)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nMarkerResolutionGenerator.java 2011-02-15 11:33:10 UTC (rev 29155)
@@ -24,10 +24,9 @@
/* (non-Javadoc)
* @see org.eclipse.ui.IMarkerResolutionGenerator#getResolutions(org.eclipse.core.resources.IMarker)
*/
- @Override
public IMarkerResolution[] getResolutions(IMarker marker) {
- // TODO Auto-generated method stub
- return null;
+ I18nMarkerResolution i18nMarkerResolution = new I18nMarkerResolution(marker);
+ return new IMarkerResolution[]{i18nMarkerResolution};
}
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java 2011-02-15 10:15:10 UTC (rev 29154)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/i18n/I18nValidationComponent.java 2011-02-15 11:33:10 UTC (rev 29155)
@@ -37,19 +37,19 @@
}
- @Override
+
public String getType() {
// TODO Auto-generated method stub
return null;
}
- @Override
+
public String getComponentResourceLocation() {
// TODO Auto-generated method stub
return null;
}
- @Override
+
public void createValidationMessage() {
setValidationMessage("Non externalized String literal; It should be moved to resource bundles.");
}
13 years, 10 months
JBoss Tools SVN: r29154 - in trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core: src/org/jboss/tools/deltacloud/core and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-02-15 05:15:10 -0500 (Tue, 15 Feb 2011)
New Revision: 29154
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
Log:
[JBIDE-8420] storing credentials before loading children (was: loaded children and stored afterwards. storing was skipped since loading threw an exception)
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog 2011-02-15 10:13:39 UTC (rev 29153)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog 2011-02-15 10:15:10 UTC (rev 29154)
@@ -1,3 +1,9 @@
+2011-02-15 André Dietisheim <André Dietisheim@adietisheim-thinkpad>
+
+ * src/org/jboss/tools/deltacloud/core/DeltaCloud.java (update):
+ [JBIDE-8420] storing credentials before loading children
+ (was: loaded children and stored afterwards. storing was skipped since loading threw an exception)
+
2011-02-07 André Dietisheim <André Dietisheim@adietisheim-thinkpad>
* src/org/jboss/tools/deltacloud/core/DeltaCloud.java (waitForState):
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2011-02-15 10:13:39 UTC (rev 29153)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2011-02-15 10:15:10 UTC (rev 29154)
@@ -95,7 +95,7 @@
throws DeltaCloudException {
this.driver = driver;
- boolean nameChanged = updateName(name);
+ boolean nameChanged = updateName(name);
boolean connectionPropertiesChanged = updateConnectionProperties(url, username, password);
if (nameChanged || connectionPropertiesChanged) {
13 years, 10 months
JBoss Tools SVN: r29153 - trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-02-15 05:13:39 -0500 (Tue, 15 Feb 2011)
New Revision: 29153
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
Log:
[JBIDE-8420] storing credentials before loading children (was: loaded children and stored afterwards. storing was skipped since loading threw an exception)
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2011-02-14 23:32:17 UTC (rev 29152)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2011-02-15 10:13:39 UTC (rev 29153)
@@ -98,17 +98,16 @@
boolean nameChanged = updateName(name);
boolean connectionPropertiesChanged = updateConnectionProperties(url, username, password);
- if (connectionPropertiesChanged) {
- client = createClient(url, username, password);
- loadChildren();
- }
-
if (nameChanged || connectionPropertiesChanged) {
this.passwordStore.update(new DeltaCloudPasswordStorageKey(name, username), password);
// TODO: move to notification based approach
DeltaCloudManager.getDefault().saveClouds();
}
+ if (connectionPropertiesChanged) {
+ client = createClient(url, username, password);
+ loadChildren();
+ }
}
private boolean updateName(String name) {
13 years, 10 months
JBoss Tools SVN: r29152 - trunk/documentation/guides/Beginners_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-02-14 18:32:17 -0500 (Mon, 14 Feb 2011)
New Revision: 29152
Modified:
trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
trunk/documentation/guides/Beginners_Guide/en-US/Workshops.xml
Log:
General Documentation Updates
Modified: trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml
===================================================================
--- trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2011-02-14 21:22:20 UTC (rev 29151)
+++ trunk/documentation/guides/Beginners_Guide/en-US/Book_Info.xml 2011-02-14 23:32:17 UTC (rev 29152)
@@ -9,7 +9,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>4.0</productnumber>
<edition>4.0.0</edition>
- <pubsnumber>12</pubsnumber>
+ <pubsnumber>13</pubsnumber>
<abstract>
<para>
The Beginners Guide brings all concepts pertaining to the <application>JBoss Developer Studio</application> back to basics. It is intended for individuals who may be
Modified: trunk/documentation/guides/Beginners_Guide/en-US/Workshops.xml
===================================================================
--- trunk/documentation/guides/Beginners_Guide/en-US/Workshops.xml 2011-02-14 21:22:20 UTC (rev 29151)
+++ trunk/documentation/guides/Beginners_Guide/en-US/Workshops.xml 2011-02-14 23:32:17 UTC (rev 29152)
@@ -376,7 +376,7 @@
<section id="sect-Beginners_Guide-Workshops-Seam">
<title>Seam</title>
<para>
- The <application>JBoss Enterprise Application Platform </application> book titled the <emphasis>Seam Reference Guide</emphasis> contains an example of how to setup Seam for use with <application>JBoss Developer Studio</application>. This workshop can be found here: <ulink url="http://www.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/5....">Getting Started with Seam, using JBoss Tools</ulink>.
+ The <application>JBoss Enterprise Application Platform </application> book titled the <emphasis>Seam Reference Guide</emphasis> contains an example of how to setup Seam for use with <application>JBoss Developer Studio</application>. This workshop can be found here: <ulink url="http://docs.redhat.com/docs/en-US/JBoss_Enterprise_Application_Platform/5...">Getting Started with Seam, using JBoss Tools</ulink>.
</para>
</section>
</chapter>
13 years, 10 months
JBoss Tools SVN: r29151 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-02-14 16:22:20 -0500 (Mon, 14 Feb 2011)
New Revision: 29151
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
Log:
updated pubs number
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2011-02-14 21:03:03 UTC (rev 29150)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2011-02-14 21:22:20 UTC (rev 29151)
@@ -3,13 +3,13 @@
<!-- Modify the title tag to change which book will be built -->
<articleinfo>
- <!-- <title>4.0.0 Release Notes</title> -->
- <title>Release Notes</title>
+ <title>4.0.0 Release Notes</title>
+ <!-- <title>Release Notes</title> -->
<subtitle>Information about the changes made for this release of the JBoss Developer Studio.</subtitle>
<productname>JBoss Developer Studio</productname>
<productnumber>4.0</productnumber>
<edition>0</edition>
- <pubsnumber>16</pubsnumber>
+ <pubsnumber>17</pubsnumber>
<abstract>
<para>
These release notes contain important information related to the JBoss Developer Studio. New features,<!-- known problems,--> resources, and other current issues are addressed here.
13 years, 10 months
JBoss Tools SVN: r29150 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: mcaspers
Date: 2011-02-14 16:03:03 -0500 (Mon, 14 Feb 2011)
New Revision: 29150
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
Log:
New Release Notes Introduction
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2011-02-14 20:57:24 UTC (rev 29149)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Overview.xml 2011-02-14 21:03:03 UTC (rev 29150)
@@ -20,7 +20,7 @@
</listitem>
<listitem>
<para>
- <emphasis role="bold">New Hibernate Tools Features:</emphasis> Code generation settings can now be exported to an Ant build.xml file, providing a means to run them from the command line or to be included in your own build scripts. The JPA tooling also supports both JPA 1 and JPA 2.
+ <emphasis role="bold">New Hibernate Tools Features:</emphasis> Code generation settings can now be exported to an Ant build.xml file, providing a means to run them from the command line or to be included in your own build scripts. The JPA tooling supports both JPA 1 and JPA 2.
</para>
</listitem>
<listitem>
@@ -35,7 +35,7 @@
</listitem>
<listitem>
<para>
- <emphasis role="bold">New DocBook Editor:</emphasis> The editor now also supports visual Docbook editing.
+ <emphasis role="bold">New DocBook Support:</emphasis> The editor now supports visual Docbook editing.
</para>
</listitem>
<listitem>
@@ -60,10 +60,10 @@
</listitem>
<listitem>
<para>
- <emphasis role="bold">Improved JBoss Server Deployment and Configuration:</emphasis> The JBoss server adapter now has support for remote deployment via SSH and SCP, and the server adapter can now publish not only individual files but also individual folders.
+ <emphasis role="bold">Improved JBoss Server Deployment and Configuration:</emphasis> The JBoss server adapter now has support for remote deployment via SSH and SCP, and the server adapter can publish individual files as well as individual folders.
</para>
<para>
- A new JBoss Tools Runtimes preference page is available that allow you to configure any server runtime found in a list of directories. This removes the need to manually configuring them all.
+ A new JBoss Tools Runtimes preference page is available that allows you to configure any server runtime found in a list of directories. This removes the need to manually configuring them all.
</para>
</listitem>
<listitem>
@@ -83,7 +83,7 @@
</listitem>
<listitem>
<para>
- <emphasis role="bold">Technical Previews:</emphasis> A Technical preview of CDI and JSF 2 (including composite components, code completions and validations) tooling is included, including a JBoss AS 6 compatible server adapter. Technical previews of Servlet 3, Richfaces 4 and BPEL are also available.
+ <emphasis role="bold">Technical Previews:</emphasis> A Technical preview of CDI and JSF 2 (including composite components, code completions and validations) tooling is included, along with a JBoss AS 6 compatible server adapter. Technical previews of Servlet 3, Richfaces 4 and BPEL are also available.
</para>
</listitem>
<listitem>
13 years, 10 months