JBoss Tools SVN: r32335 - in trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf: web/validation/jsf2/components and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-06-23 20:20:46 -0400 (Thu, 23 Jun 2011)
New Revision: 32335
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/model/JSF2ComponentModelManager.java
trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/components/JSF2ComponentFactory.java
Log:
https://issues.jboss.org/browse/JBIDE-9138
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/model/JSF2ComponentModelManager.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/model/JSF2ComponentModelManager.java 2011-06-24 00:05:49 UTC (rev 32334)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/jsf2/model/JSF2ComponentModelManager.java 2011-06-24 00:20:46 UTC (rev 32335)
@@ -39,9 +39,10 @@
import org.eclipse.wst.xml.core.internal.provisional.format.DocumentNodeFormatter;
import org.jboss.tools.jsf.JSFModelPlugin;
import org.jboss.tools.jsf.jsf2.util.JSF2ResourceUtil;
-import org.jboss.tools.jst.jsp.jspeditor.dnd.PaletteTaglibInserter;
+import org.w3c.dom.Attr;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
+import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
@@ -53,6 +54,17 @@
@SuppressWarnings("restriction")
public class JSF2ComponentModelManager {
+ public final static String INTERFACE = "interface";
+ public final static String ATTRIBUTE = "attribute";
+ public final static String NAME = "name";
+ public final static String XMLNS = "xmlns";
+
+ public final static String COLON = ":";
+ public final static String DEFAULT_COMPOSITE_PREFIX = "composite";
+ public final static String XHTML_URI = "http://www.w3.org/1999/xhtml";
+ public final static String HTML = "html";
+ public final static String HTML_URI = "http://java.sun.com/jsf/html";
+ public final static String HTML_PREFIX = "h";
private static JSF2ComponentModelManager instance = new JSF2ComponentModelManager();
@@ -88,14 +100,6 @@
provider.aboutToChange(input);
provider.saveDocument(new NullProgressMonitor(), input, document, true);
provider.disconnect(input);
- //IDOMDocument document = model.getDocument();
- //updateJSF2CompositeComponent(document, attrNames);
- //IStructuredDocument structuredDocument = document
- // .getStructuredDocument();
- //String text = structuredDocument.getText();
- // //getFile().setContents(new ByteArrayInputStream(text.getBytes()),true,false,null);
- //model.reload(new ByteArrayInputStream(text.getBytes()));
- //model.save();
}
});
return file;
@@ -103,40 +107,42 @@
private void updateJSF2CompositeComponent(IDOMDocument componentDoc,
String[] attrNames) {
- IDOMElement[] interfaceElement = new IDOMElement[1];
- findInterfaceComponent(componentDoc, interfaceElement);
- createCompositeCompInterface(interfaceElement[0], attrNames);
+ Element interfaceElement = findInterfaceComponent(componentDoc);
+ if(interfaceElement == null)
+ interfaceElement = createCompositeInterface(componentDoc);
+ createCompositeCompInterface(interfaceElement, attrNames);
}
- private void findInterfaceComponent(Node node,
- IDOMElement[] interfaceElement) {
+ private Element findInterfaceComponent(Node node) {
if (node instanceof IDOMDocument) {
IDOMDocument document = (IDOMDocument) node;
- findInterfaceComponent(document.getDocumentElement(),
- interfaceElement);
+ Element element = findInterfaceComponent(document.getDocumentElement());
+ if(element != null)
+ return element;
}
if (node instanceof ElementImpl) {
ElementImpl impl = (ElementImpl) node;
String nameSpace = impl.getNamespaceURI();
if (JSF2ResourceUtil.JSF2_URI_PREFIX.equals(nameSpace)) {
String nodeName = impl.getLocalName();
- if ("interface".equals(nodeName)) { //$NON-NLS-1$
- interfaceElement[0] = impl;
- return;
+ if (INTERFACE.equals(nodeName)) { //$NON-NLS-1$
+ return impl;
}
} else {
NodeList nodeList = node.getChildNodes();
if (nodeList != null) {
for (int i = 0; i < nodeList.getLength(); i++) {
- findInterfaceComponent(nodeList.item(i),
- interfaceElement);
+ Element element = findInterfaceComponent(nodeList.item(i));
+ if(element != null)
+ return element;
}
}
}
}
+ return null;
}
- private void createCompositeCompInterface(IDOMElement element,
+ private void createCompositeCompInterface(Element element,
String[] attrNames) {
Document document = (Document) element.getOwnerDocument();
String prefix = element.getPrefix();
@@ -146,8 +152,8 @@
if (!existInerfaceAttrs.contains(attrNames[i])) {
Element attrEl = document.createElementNS(
JSF2ResourceUtil.JSF2_URI_PREFIX, prefix
- + ":attribute"); //$NON-NLS-1$
- attrEl.setAttribute("name", attrNames[i]); //$NON-NLS-1$
+ + COLON+ATTRIBUTE); //$NON-NLS-1$
+ attrEl.setAttribute(NAME, attrNames[i]); //$NON-NLS-1$
element.appendChild(attrEl);
}
}
@@ -155,8 +161,8 @@
for (int i = 0; i < attrNames.length; i++) {
if (!existInerfaceAttrs.contains(attrNames[i])) {
Element attrEl = document.createElementNS(
- JSF2ResourceUtil.JSF2_URI_PREFIX, "attribute"); //$NON-NLS-1$
- attrEl.setAttribute("name", attrNames[i]); //$NON-NLS-1$
+ JSF2ResourceUtil.JSF2_URI_PREFIX, ATTRIBUTE); //$NON-NLS-1$
+ attrEl.setAttribute(NAME, attrNames[i]); //$NON-NLS-1$
element.appendChild(attrEl);
}
}
@@ -170,14 +176,14 @@
if (document == null) {
return null;
}
- IDOMElement interfaceElement = checkCompositeInterface(document);
- if (interfaceElement == null) {
- return null;
- }
+
+ //Element interfaceElement = checkCompositeInterface(document);
+ //if (interfaceElement == null)
+ //return null;
return file;
}
- public IDOMElement checkCompositeInterface(IDOMDocument document) {
+ public Element checkCompositeInterface(IDOMDocument document) {
if (document == null) {
return null;
}
@@ -185,18 +191,99 @@
if (element == null) {
return null;
}
- //if (!"html".equals(element.getNodeName())) { //$NON-NLS-1$
- //return null;
- //}
- //ElementImpl elementImpl = (ElementImpl) element;
- //if (!"http://www.w3.org/1999/xhtml".equals(elementImpl.getNamespaceURI())) { //$NON-NLS-1$
- // return null;
- //}
- IDOMElement[] interfaceElement = new IDOMElement[1];
- findInterfaceComponent(element, interfaceElement);
- return interfaceElement[0];
+
+ if(!hasNamespace(element, JSF2ResourceUtil.JSF2_URI_PREFIX))
+ return null;
+
+ return findInterfaceComponent(element);
}
+
+ private boolean hasNamespace(Node node, String URI){
+ NamedNodeMap attributes = node.getAttributes();
+ for(int i = 0; i < attributes.getLength(); i++){
+ Node attr = attributes.item(i);
+
+ if(attr.getNodeName().startsWith(XMLNS+COLON) && URI.equals(attr.getNodeValue()))
+ return true;
+ }
+ return false;
+ }
+ private String getPrefix(Node node, String URI){
+ NamedNodeMap attributes = node.getAttributes();
+ for(int i = 0; i < attributes.getLength(); i++){
+ Node attr = attributes.item(i);
+
+ if(attr.getNodeName().startsWith(XMLNS+COLON) && URI.equals(attr.getNodeValue()))
+ return attr.getLocalName();
+ }
+ return null;
+ }
+
+ private Element findNodeToCreateCompositeInterface(Element rootNode){
+ if(hasNamespace(rootNode, JSF2ResourceUtil.JSF2_URI_PREFIX))
+ return rootNode;
+ NodeList children = rootNode.getChildNodes();
+ for(int i = 0; i < children.getLength(); i++){
+ Node child = children.item(i);
+ if(child instanceof Element){
+ Node result = findNodeToCreateCompositeInterface((Element)child);
+ if(result != null && result instanceof Element)
+ return (Element)result;
+ }
+ }
+ return null;
+ }
+
+ private Element createCompositeInterface(Document document){
+ Element rootElement = document.getDocumentElement();
+ if (rootElement == null) {
+ rootElement = createDocumentElementForCompositeInterface(document);
+ }
+
+ Element node = findNodeToCreateCompositeInterface(rootElement);
+
+ if(node == null){
+ addURI(document, rootElement);
+ node = rootElement;
+ }
+
+ String prefix = getPrefix(node, JSF2ResourceUtil.JSF2_URI_PREFIX);
+ Element interfaceElement = document.createElement(prefix+COLON+INTERFACE);
+
+ node.appendChild(interfaceElement);
+
+ DocumentNodeFormatter formatter = new DocumentNodeFormatter();
+ formatter.format(document);
+
+ return interfaceElement;
+ }
+
+ private Element createDocumentElementForCompositeInterface(Document document){
+ Element rootElement = document.createElement(HTML);
+
+ Attr attr = document.createAttribute(XMLNS);
+ attr.setValue(XHTML_URI);
+ rootElement.setAttributeNode(attr);
+
+ attr = document.createAttribute(XMLNS+COLON+HTML_PREFIX);
+ attr.setValue(HTML_URI);
+ rootElement.setAttributeNode(attr);
+
+ attr = document.createAttribute(XMLNS+COLON+DEFAULT_COMPOSITE_PREFIX);
+ attr.setValue(JSF2ResourceUtil.JSF2_URI_PREFIX);
+ rootElement.setAttributeNode(attr);
+
+ document.appendChild(rootElement);
+ return rootElement;
+ }
+
+ private void addURI(Document document, Element rootElement){
+ Attr attr = document.createAttribute(XMLNS+COLON+DEFAULT_COMPOSITE_PREFIX);
+ attr.setValue(JSF2ResourceUtil.JSF2_URI_PREFIX);
+ rootElement.setAttributeNode(attr);
+ }
+
public static IDOMDocument getReadableDOMDocument(IFile file) {
IDOMDocument document = null;
IModelManager manager = StructuredModelManager.getModelManager();
@@ -274,13 +361,13 @@
return document;
}
- public Set<String> getInterfaceAttrs(IDOMElement interfaceElement) {
+ public Set<String> getInterfaceAttrs(Element interfaceElement) {
Set<String> interfaceAttrs = new HashSet<String>(0);
if (interfaceElement != null) {
String prefix = interfaceElement.getPrefix();
- String nodeName = "attribute"; //$NON-NLS-1$
+ String nodeName = ATTRIBUTE;
if (prefix != null && !"".equals(prefix)) { //$NON-NLS-1$
- nodeName = prefix + ":" + nodeName; //$NON-NLS-1$
+ nodeName = prefix + COLON + nodeName; //$NON-NLS-1$
}
NodeList attrsElements = interfaceElement
.getElementsByTagName(nodeName);
@@ -289,7 +376,7 @@
Node el = attrsElements.item(i);
if (el instanceof IDOMElement) {
IDOMElement element = (IDOMElement) el;
- String attrvalue = element.getAttribute("name"); //$NON-NLS-1$
+ String attrvalue = element.getAttribute(NAME); //$NON-NLS-1$
if (attrvalue != null && !"".equals(attrvalue)) { //$NON-NLS-1$
interfaceAttrs.add(attrvalue);
}
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/components/JSF2ComponentFactory.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/components/JSF2ComponentFactory.java 2011-06-24 00:05:49 UTC (rev 32334)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/src/org/jboss/tools/jsf/web/validation/jsf2/components/JSF2ComponentFactory.java 2011-06-24 00:20:46 UTC (rev 32335)
@@ -24,6 +24,7 @@
import org.jboss.tools.jsf.jsf2.model.JSF2ComponentModelManager;
import org.jboss.tools.jsf.web.validation.IJSFValidationComponent;
import org.jboss.tools.jsf.web.validation.jsf2.util.JSF2ValidatorConstants;
+import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
@@ -62,7 +63,7 @@
0);
IDOMDocument containerDocument = JSF2ComponentModelManager
.getReadableDOMDocument(container);
- IDOMElement interfaceElement = JSF2ComponentModelManager.getManager()
+ Element interfaceElement = JSF2ComponentModelManager.getManager()
.checkCompositeInterface(containerDocument);
Set<String> interfaceAttrs = JSF2ComponentModelManager.getManager()
.getInterfaceAttrs(interfaceElement);
@@ -93,7 +94,7 @@
0);
IDOMDocument document = JSF2ComponentModelManager
.getReadableDOMDocument(compContainerFile);
- IDOMElement interfaceElement = JSF2ComponentModelManager.getManager()
+ Element interfaceElement = JSF2ComponentModelManager.getManager()
.checkCompositeInterface(document);
Set<String> interfaceAttrs = JSF2ComponentModelManager.getManager()
.getInterfaceAttrs(interfaceElement);
14 years, 9 months
JBoss Tools SVN: r32334 - trunk/documentation/whatsnew/jbpm.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-06-23 20:05:49 -0400 (Thu, 23 Jun 2011)
New Revision: 32334
Modified:
trunk/documentation/whatsnew/jbpm/jbpm-news-3.3.0.M2.html
Log:
link txt broken
Modified: trunk/documentation/whatsnew/jbpm/jbpm-news-3.3.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/jbpm/jbpm-news-3.3.0.M2.html 2011-06-23 23:00:17 UTC (rev 32333)
+++ trunk/documentation/whatsnew/jbpm/jbpm-news-3.3.0.M2.html 2011-06-24 00:05:49 UTC (rev 32334)
@@ -23,7 +23,8 @@
<body>
<h1>jBPM Tools 3.3.0.M2 What's New</h1>
- <p align="right"><a href="../index.html">< Main Index</a> <a href="../teiid/teiid-news-7.4.html">Forge Tools ></a>
+ <p align="right"><a href="../index.html">< Main Index</a> <a
+ href="../teiid/teiid-news-7.4.html">Teiid Designer ></a>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
14 years, 9 months
JBoss Tools SVN: r32333 - workspace/snjeza.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-23 19:00:17 -0400 (Thu, 23 Jun 2011)
New Revision: 32333
Removed:
workspace/snjeza/org.eclipse.rcp.patch.update/
Log:
14 years, 9 months
JBoss Tools SVN: r32332 - trunk/documentation/whatsnew/deltacloud.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-06-23 18:43:06 -0400 (Thu, 23 Jun 2011)
New Revision: 32332
Modified:
trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.2.0.M2.html
Log:
JBIDE-9154 bad href name
Modified: trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.2.0.M2.html 2011-06-23 22:41:48 UTC (rev 32331)
+++ trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.2.0.M2.html 2011-06-23 22:43:06 UTC (rev 32332)
@@ -24,7 +24,7 @@
<h1>Deltacloud Development Tools 0.2.0.M2 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a> <a
- href="../modeshape/modeshape-news-3.3.0.M2.html">GWT Integration
+ href="../modeshape/modeshape-news-3.3.0.M2.html">Modeshape Tools
></a></p>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
<tr>
14 years, 9 months
JBoss Tools SVN: r32331 - trunk/documentation/whatsnew/ws.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-06-23 18:41:48 -0400 (Thu, 23 Jun 2011)
New Revision: 32331
Modified:
trunk/documentation/whatsnew/ws/ws-news-1.2.2.M2.html
Log:
JBIDE-9154 bad a href
Modified: trunk/documentation/whatsnew/ws/ws-news-1.2.2.M2.html
===================================================================
--- trunk/documentation/whatsnew/ws/ws-news-1.2.2.M2.html 2011-06-23 22:39:02 UTC (rev 32330)
+++ trunk/documentation/whatsnew/ws/ws-news-1.2.2.M2.html 2011-06-23 22:41:48 UTC (rev 32331)
@@ -24,7 +24,7 @@
<h1>WS tools 3.3.0 M2 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a> <a
-href="../deltacloud/deltacloud-news-0.2.0.M2.html">DeltaCloud Tools ></p></p>
+href="../deltacloud/deltacloud-news-0.2.0.M2.html">DeltaCloud Tools ></a></p>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
14 years, 9 months
JBoss Tools SVN: r32330 - trunk/cdi/plugins/org.jboss.tools.cdi.xml/resources/meta.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-06-23 18:39:02 -0400 (Thu, 23 Jun 2011)
New Revision: 32330
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.xml/resources/meta/cdi-beans.meta
Log:
JBIDE-9240
https://issues.jboss.org/browse/JBIDE-9240
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.xml/resources/meta/cdi-beans.meta
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.xml/resources/meta/cdi-beans.meta 2011-06-23 22:38:31 UTC (rev 32329)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.xml/resources/meta/cdi-beans.meta 2011-06-23 22:39:02 UTC (rev 32330)
@@ -41,7 +41,7 @@
</ICONS>
</XEntityRenderer>
<XModelAttributes>
- <XModelAttribute default="decorators" loader="ElementType" name="element type">
+ <XModelAttribute default="alternatives" loader="ElementType" name="element type">
<Editor name="Uneditable"/>
</XModelAttribute>
<XModelAttribute PROPERTIES="id=true;category=general"
@@ -53,15 +53,17 @@
<XActionItem kind="list">
<XActionItem kind="list" name="CreateActions">
<XActionItem HandlerClassName="%Create%" ICON="action.empty"
- PROPERTIES="entity=CDIClass" WizardClassName="%Default%"
- displayName="Add Class..." kind="action" name="CreateClass">
+ PROPERTIES="entity=CDIClass;validator.add=true"
+ WizardClassName="%Default%" displayName="Add Class..."
+ kind="action" name="CreateClass">
<EntityData EntityName="CDIClass">
<AttributeData AttributeName="class"/>
</EntityData>
</XActionItem>
<XActionItem HandlerClassName="%Create%" ICON="action.empty"
- PROPERTIES="entity=CDIStereotype" WizardClassName="%Default%"
- displayName="Add Stereotype..." kind="action" name="CreateStereotype">
+ PROPERTIES="entity=CDIStereotype;validator.add=true"
+ WizardClassName="%Default%" displayName="Add Stereotype..."
+ kind="action" name="CreateStereotype">
<EntityData EntityName="CDIStereotype">
<AttributeData AttributeName="stereotype"/>
</EntityData>
@@ -104,7 +106,8 @@
<XModelAttribute default="class" loader="ElementType" name="element type">
<Editor name="Uneditable"/>
</XModelAttribute>
- <XModelAttribute PROPERTIES="id=true;save=always;category=general;newWizardClassFactory=org.jboss.tools.cdi.xml.ui.editor.form.CDINewClassWizardFactory"
+ <XModelAttribute
+ PROPERTIES="id=true;save=always;category=general;newWizardClassFactory=org.jboss.tools.cdi.xml.ui.editor.form.CDINewClassWizardFactory"
name="class" xmlname="#text">
<Editor name="AccessibleJava"/>
</XModelAttribute>
@@ -158,8 +161,9 @@
<XActionItem kind="list">
<XActionItem kind="list" name="CreateActions">
<XActionItem HandlerClassName="%Create%" ICON="action.empty"
- PROPERTIES="entity=CDIClass" WizardClassName="%Default%"
- displayName="Add Class..." kind="action" name="CreateClass">
+ PROPERTIES="entity=CDIClass;validator.add=true"
+ WizardClassName="%Default%" displayName="Add Class..."
+ kind="action" name="CreateClass">
<EntityData EntityName="CDIClass">
<AttributeData AttributeName="class"/>
</EntityData>
@@ -196,8 +200,9 @@
<XActionItem kind="list">
<XActionItem kind="list" name="CreateActions">
<XActionItem HandlerClassName="%Create%" ICON="action.empty"
- PROPERTIES="entity=CDIClass" WizardClassName="%Default%"
- displayName="Add Class..." kind="action" name="CreateClass">
+ PROPERTIES="entity=CDIClass;validator.add=true"
+ WizardClassName="%Default%" displayName="Add Class..."
+ kind="action" name="CreateClass">
<EntityData EntityName="CDIClass">
<AttributeData AttributeName="class"/>
</EntityData>
@@ -223,7 +228,8 @@
<XModelAttribute default="stereotype" loader="ElementType" name="element type">
<Editor name="Uneditable"/>
</XModelAttribute>
- <XModelAttribute PROPERTIES="id=true;save=always;category=general;newWizardClassFactory=org.jboss.tools.cdi.xml.ui.editor.form.CDINewClassWizardFactory"
+ <XModelAttribute
+ PROPERTIES="id=true;save=always;category=general;newWizardClassFactory=org.jboss.tools.cdi.xml.ui.editor.form.CDINewClassWizardFactory"
name="stereotype" xmlname="#text">
<Editor name="AccessibleJava"/>
</XModelAttribute>
14 years, 9 months
JBoss Tools SVN: r32329 - in workspace/snjeza/org.eclipse.rcp.patch.update: features and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-23 18:38:31 -0400 (Thu, 23 Jun 2011)
New Revision: 32329
Added:
workspace/snjeza/org.eclipse.rcp.patch.update/.project
workspace/snjeza/org.eclipse.rcp.patch.update/artifacts.jar
workspace/snjeza/org.eclipse.rcp.patch.update/content.jar
workspace/snjeza/org.eclipse.rcp.patch.update/features/
workspace/snjeza/org.eclipse.rcp.patch.update/features/org.eclipse.rcp.patch_1.0.0.jar
workspace/snjeza/org.eclipse.rcp.patch.update/plugins/
workspace/snjeza/org.eclipse.rcp.patch.update/plugins/org.eclipse.swt.gtk.linux.x86.source_3.7.0.v3735c.jar
workspace/snjeza/org.eclipse.rcp.patch.update/plugins/org.eclipse.swt.gtk.linux.x86_3.7.0.v3735c.jar
workspace/snjeza/org.eclipse.rcp.patch.update/site.xml
Log:
Added: workspace/snjeza/org.eclipse.rcp.patch.update/.project
===================================================================
--- workspace/snjeza/org.eclipse.rcp.patch.update/.project (rev 0)
+++ workspace/snjeza/org.eclipse.rcp.patch.update/.project 2011-06-23 22:38:31 UTC (rev 32329)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.rcp.patch.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/org.eclipse.rcp.patch.update/artifacts.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.eclipse.rcp.patch.update/artifacts.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.eclipse.rcp.patch.update/content.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.eclipse.rcp.patch.update/content.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.eclipse.rcp.patch.update/features/org.eclipse.rcp.patch_1.0.0.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.eclipse.rcp.patch.update/features/org.eclipse.rcp.patch_1.0.0.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.eclipse.rcp.patch.update/plugins/org.eclipse.swt.gtk.linux.x86.source_3.7.0.v3735c.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.eclipse.rcp.patch.update/plugins/org.eclipse.swt.gtk.linux.x86.source_3.7.0.v3735c.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.eclipse.rcp.patch.update/plugins/org.eclipse.swt.gtk.linux.x86_3.7.0.v3735c.jar
===================================================================
(Binary files differ)
Property changes on: workspace/snjeza/org.eclipse.rcp.patch.update/plugins/org.eclipse.swt.gtk.linux.x86_3.7.0.v3735c.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: workspace/snjeza/org.eclipse.rcp.patch.update/site.xml
===================================================================
--- workspace/snjeza/org.eclipse.rcp.patch.update/site.xml (rev 0)
+++ workspace/snjeza/org.eclipse.rcp.patch.update/site.xml 2011-06-23 22:38:31 UTC (rev 32329)
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <feature url="features/org.eclipse.rcp.patch_1.0.0.jar" id="org.eclipse.rcp.patch" version="1.0.0" os="linux" ws="gtk" arch="x86,x86_64" patch="true">
+ <category name="org.eclipse.rcp.patch"/>
+ </feature>
+ <category-def name="org.eclipse.rcp.patch" label="SWT XULRunner Patch"/>
+</site>
14 years, 9 months
JBoss Tools SVN: r32328 - in trunk/documentation/whatsnew: as and 9 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2011-06-23 18:36:43 -0400 (Thu, 23 Jun 2011)
New Revision: 32328
Added:
trunk/documentation/whatsnew/hibernate/hibernate-news-3.5.0.M1.html
Removed:
trunk/documentation/whatsnew/hibernate/hibernate-news-3.5.0.M1.html
Modified:
trunk/documentation/whatsnew/as/as-news-3.3.0.M2.html
trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.2.0.M2.html
trunk/documentation/whatsnew/forge/forge-news-3.3.0.M2.html
trunk/documentation/whatsnew/index.html
trunk/documentation/whatsnew/jbpm/jbpm-news-3.3.0.M2.html
trunk/documentation/whatsnew/maven/maven-news-3.3.0.M2.html
trunk/documentation/whatsnew/modeshape/modeshape-news-3.3.0.M2.html
trunk/documentation/whatsnew/teiid/teiid-news-7.4.html
trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M2.html
trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.M2.html
trunk/documentation/whatsnew/ws/ws-news-1.2.2.M2.html
Log:
JBIDE-9154 cleaned up N and N
Modified: trunk/documentation/whatsnew/as/as-news-3.3.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/as/as-news-3.3.0.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/as/as-news-3.3.0.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -33,13 +33,29 @@
</td>
</tr>
+ <tr>
+ <td valign="top" align="right">
+ <p><b>AS 6.1 Support</b></p>
+ </td>
+ <td valign="top" width="90%">
+ <p>JBoss AS 6 support now includes 6.1 which adds the now
+ required
+ <code>-Dlogging.configuration="<pathtoAS6>/bin/logging.properties"</code>
+ argument to AS 6.1 launches.</p>
+ <p><small><a href="https://issues.jboss.org/browse/JBIDE-9236">Related Jira</a></small></p>
+ </td>
+ </tr>
+ <tr><td colspan="2"><hr /></td></tr>
+
<tr>
<td valign="top" align="right">
<p><b>Dont execute startup/shutdown commands</b></p>
</td>
<td valign="top" width="90%">
<p>You may now tell the server adapter not to start/stop the server when you start/stop the server adapter.
- This will allow you to deploy to a server that you dont (want to) control.</p>
+ This will allow you to deploy to a server that you dont want
+ JBoss Tools to start and stop, i.e. for remote already running
+ servers.</p>
<p><img src="images/dont-execute-start-command.png" /></p>
<p><small><a href="https://issues.jboss.org/browse/JBIDE-9093">Related Jira</a></small></p>
</td>
@@ -51,8 +67,11 @@
<b>Custom deploy folders for JBoss AS7</b>
</td>
<td valign="top" width="90%">
- <p>You can now use custom depoy folders when deploying to JBoss AS7.</p>
+ <p>You can now use custom deploy folders when deploying to JBoss AS7.</p>
<p><img src="images/as7-custom-deploy-folders.png"/></p>
+
+ <p>Note: In M2 users must register the location at JBoss
+ manually, in upcoming milestones we will do that registration automatically.</p>
<p><small><a href="https://issues.jboss.org/browse/JBIDE-9085">Related Jira</a></small>
</td>
</tr>
@@ -63,7 +82,12 @@
<b>AS7 Change of classpath container behaviour</b>
</td>
<td valign="top" width="90%">
- <p>In AS7, only the javax.* packages and jars are included in the classpath container. This is a change from previous AS versions, which put every jar in the distribution into the classpath container. </p>
+ <p>In AS7, only the javax.* packages and jars are included in
+ the classpath container. This is a change from previous AS
+ versions, which put every jar in the distribution into the
+ classpath container. Done to avoid classpath overload and
+ conflicts; in the next milestones we will work on making that
+ more smoth and added other libs as needed and requested by users.</p>
<p><small><a href="https://issues.jboss.org/browse/JBIDE-8718">Related Jira</a></small>
</td>
</tr>
Modified: trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.2.0.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/deltacloud/deltacloud-news-0.2.0.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -24,7 +24,7 @@
<h1>Deltacloud Development Tools 0.2.0.M2 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a> <a
- href="../gwt/gwt-news-1.1.0.M1.html">GWT Integration
+ href="../modeshape/modeshape-news-3.3.0.M2.html">GWT Integration
></a></p>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
<tr>
Modified: trunk/documentation/whatsnew/forge/forge-news-3.3.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/forge/forge-news-3.3.0.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/forge/forge-news-3.3.0.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -23,7 +23,8 @@
<body>
<h1>Forge Tools 3.3.0.M2 What's New</h1>
- <p align="right"><a href="../index.html">< Main Index</a> </p>
+ <p align="right"><a href="../index.html">< Main Index</a> <a
+ href="../maven/maven-news-3.3.0.M2.html">Maven Tools ></a></p>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
Deleted: trunk/documentation/whatsnew/hibernate/hibernate-news-3.5.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.5.0.M1.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.5.0.M1.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -1,128 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Language" content="en-us" />
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
-<link rel="stylesheet" href="../whatsnew.css"/>
-<title>Hibernate tools 3.5.0.M1 What's New</title>
-<script type="text/javascript">
-
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-17645367-5']);
- _gaq.push(['_trackPageview']);
-
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
-
-</script></head>
-<body>
-<h1>Hibernate tools 3.5.0.M1 What's New</h1>
-
-<p align="right"><a href="../index.html">< Main
- Index</a> <a href="../jst/jst-news-3.3.0.M1.html">JST Tools ></a></p>
-
-<table border="0" cellpadding="10" cellspacing="0" width="80%">
-
- <tr>
- <td colspan="2">
- <hr/>
- <h3>Dali Integration</h3>
- <hr/>
- </td>
- </tr>
-
- <tr>
- <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Validate @Type</b></td>
- <td valign="top">
- <p>Added validation of org.hibernate.annotation.Type annotation. The type attribute should contain either a name of the class
- which implements UserType interface either a type name which is defined by @TypeDef annotation.</p>
-
- <p><small><a href="https://jira.jboss.org/browse/JBIDE-8238">Related jira</a></p>
-
- </td>
- </tr>
-
- <tr>
- <td colspan="2">
- </td>
- </tr>
-
- <tr>
- <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Completion Proposals</b></td>
- <td valign="top">
- <p>Built-in strategies added to @GenericGenerator strategy attribute completion proposals.</p>
- <p><img src="images/strategy_completion_proposals.png"/></p>
-
- <p><small><a href="https://jira.jboss.org/browse/JBIDE-8470">Related jira</a></p>
-
- </td>
- </tr>
-
- <tr>
- <td colspan="2">
- <hr/>
- <h3>Hibernate libraries</h3>
- <hr/>
- </td>
- </tr>
-
- <tr>
- <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Libraries installation</b></td>
- <td valign="top">
- <p>Added support for hibernate libraries installation using import wizard.</p>
- <p><img src="images/import_hibernate_jar.jpg"/></p>
- <p><img src="images/import_hibernate_jar2.jpg"/></p>
-<p></p>
-
-
- <p><small><a href="https://jira.jboss.org/browse/JBIDE-6098">Related jira</a></p>
-
- </td>
- </tr>
-
- <tr>
- <td colspan="2">
- <hr/>
- <h3>Console Configuration</h3>
- <hr/>
- </td>
- </tr>
-
- <tr>
- <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Database Icon Decorated</b></td>
- <td valign="top">
- <p>Database icon now is decorated so it is easy to see whether the connection was established.</p>
- <p><img src="images/database_icon_decorator.jpg"/></p>
- <p><small><a href="https://jira.jboss.org/browse/JBIDE-8221">Related jira</a></p>
- </td>
- </tr>
-
- <tr>
- <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Refactoring</b></td>
- <td valign="top">
- <p>Rename Console Configuration as refactoring change. Rename of Console Configuration now call update of the relationships.
- For example rename Console Configuration call name change in Project Properties->Hibernate Settings.</p>
- <p><small><a href="https://jira.jboss.org/browse/JBIDE-8236">Related jira</a></p>
- </td>
- </tr>
-
- <tr>
- <td colspan="2">
- <hr/>
- </td>
- </tr>
-
-
-
-</table>
-
-</body>
-
-</html>
-
-
Added: trunk/documentation/whatsnew/hibernate/hibernate-news-3.5.0.M1.html
===================================================================
--- trunk/documentation/whatsnew/hibernate/hibernate-news-3.5.0.M1.html (rev 0)
+++ trunk/documentation/whatsnew/hibernate/hibernate-news-3.5.0.M1.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="iso-8859-1"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Language" content="en-us" />
+<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
+<link rel="stylesheet" href="../whatsnew.css"/>
+<title>Hibernate tools 3.5.0.M1 What's New</title>
+<script type="text/javascript">
+
+ var _gaq = _gaq || [];
+ _gaq.push(['_setAccount', 'UA-17645367-5']);
+ _gaq.push(['_trackPageview']);
+
+ (function() {
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+ })();
+
+</script></head>
+<body>
+<h1>Hibernate tools 3.5.0.M1 What's New</h1>
+
+<p align="right"><a href="../index.html">< Main
+ Index</a> <a href="../ws/ws-news-1.2.2.M2.html">Webservices Tools ></a></p>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>Dali Integration</h3>
+ <hr/>
+ </td>
+ </tr>
+
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Validate @Type</b></td>
+ <td valign="top">
+ <p>Added validation of org.hibernate.annotation.Type annotation. The type attribute should contain either a name of the class
+ which implements UserType interface either a type name which is defined by @TypeDef annotation.</p>
+
+ <p><small><a href="https://jira.jboss.org/browse/JBIDE-8238">Related jira</a></p>
+
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ </td>
+ </tr>
+
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Completion Proposals</b></td>
+ <td valign="top">
+ <p>Built-in strategies added to @GenericGenerator strategy attribute completion proposals.</p>
+ <p><img src="images/strategy_completion_proposals.png"/></p>
+
+ <p><small><a href="https://jira.jboss.org/browse/JBIDE-8470">Related jira</a></p>
+
+ </td>
+ </tr>
+
+
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>Console Configuration</h3>
+ <hr/>
+ </td>
+ </tr>
+
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Database Icon Decorated</b></td>
+ <td valign="top">
+ <p>Database icon now is decorated so it is easy to see whether the connection was established.</p>
+ <p><img src="images/database_icon_decorator.jpg"/></p>
+ <p><small><a href="https://jira.jboss.org/browse/JBIDE-8221">Related jira</a></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td valign="top" align="right"><a name="itemname3" id="itemname3"></a><b>Refactoring</b></td>
+ <td valign="top">
+ <p>Rename Console Configuration as refactoring change. Rename of Console Configuration now call update of the relationships.
+ For example rename Console Configuration call name change in Project Properties->Hibernate Settings.</p>
+ <p><small><a href="https://jira.jboss.org/browse/JBIDE-8236">Related jira</a></p>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <hr/>
+ </td>
+ </tr>
+
+
+
+</table>
+
+</body>
+
+</html>
+
+
Modified: trunk/documentation/whatsnew/index.html
===================================================================
--- trunk/documentation/whatsnew/index.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/index.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -37,24 +37,22 @@
<td valign="top" align="left">
<p align="right"><b>3.3.0.M2</b>
<td valign="top">
- <!--
+
<p><a href="as/as-news-3.3.0.M2.html">JBoss AS Server Tools</a></p>
- <p><a href="vpe/vpe-news-3.3.0.M2.html">Visual Page Editor</a></p>
- <p><a href="seam/seam-news-3.3.0.M2.html">Seam 2 Tools</a></p>
- <p><a href="forge/forge-news-3.3.0.M2.html">Forge Tools</a></p>
<p><a href="maven/maven-news-3.3.0.M2.html">Maven Tools</a></p>
- <p><a href="examples/examples-news-3.3.0.M2.html">Project Examples</a></p>
- <p><a href="deltacloud/deltacloud-news-0.2.0.M2.html">DeltaCloud Tools</a></p>
- <p><a href="birt/birt-news-3.3.0.M2.html">Birt Tools</a></p> -->
+ <p><a href="hibernate/hibernate-news-3.5.0.M1.html">Hibernate
+ Tools</a></p>
<p><a href="jst/jst-news-3.3.0.M2.html">JST/JSF Tools</a></p>
- <p><a href="vpe/vpe-news-3.3.0.M2.html">Visual Page Editor</a></p>
+ <p><a href="vpe/vpe-news-3.3.0.M2.html">Visual Page Editor</a></p>
<p><a href="cdi/cdi-news-3.3.0.M2.html">CDI/Seam 3 Tools</a></p>
<p><a href="ws/ws-news-1.2.2.M2.html">Webservices Tools</a></p>
- <p><a href="modeshape/modeshape-news-3.3.0.M2.html">ModeShape Tools</a></p>
- <p><a href="maven/maven-news-3.3.0.M2.html">Maven Tools</a></p>
- <p><a href="jbpm/jbpm-news-3.3.0.M2.html">jBPM Tools</a></p>
<p><a href="forge/forge-news-3.3.0.M2.html">Forge Tools</a></p>
+ <p><a href="deltacloud/deltacloud-news-0.2.0.M2.html">DeltaCloud Tools</a></p>
+ <p><a href="modeshape/modeshape-news-3.3.0.M2.html">ModeShape Tools</a></p>
+ <p><a href="jbpm/jbpm-news-3.3.0.M2.html">jBPM Tools</a></p>
+ <p><a href="teiid/teiid-news-7.4.html">Teiid Designer</a></p>
+
</td>
</tr>
Modified: trunk/documentation/whatsnew/jbpm/jbpm-news-3.3.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/jbpm/jbpm-news-3.3.0.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/jbpm/jbpm-news-3.3.0.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -23,7 +23,7 @@
<body>
<h1>jBPM Tools 3.3.0.M2 What's New</h1>
- <p align="right"><a href="../index.html">< Main Index</a> <a href="../forge/forge-news-3.3.0.M2.html">Forge Tools ></a>
+ <p align="right"><a href="../index.html">< Main Index</a> <a href="../teiid/teiid-news-7.4.html">Forge Tools ></a>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
Modified: trunk/documentation/whatsnew/maven/maven-news-3.3.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/maven/maven-news-3.3.0.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/maven/maven-news-3.3.0.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -24,7 +24,7 @@
<h1>Maven Tools</h1>
<p align="right"><a href="../index.html">< Main Index</a> <a
- href="../jbpm/jbpm-news-3.3.0.M2.html">jBPM Tools ></a></p>
+ href="../hibernate/hibernate-news-3.5.0.M1.html">Hibernate Tools ></a></p>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
<tr>
<td colspan="2">
@@ -44,7 +44,14 @@
</small></p>
</td>
</tr>
+
<tr>
+ <td colspan="2">
+ <hr/>
+ </td>
+ </tr>
+
+ <tr>
<td valign="top" align="left">
<a name="itemname2" id="itemname2"></a><b>CDI support enabled for projects depending on Seam 3 artifacts.</b></td>
<td valign="top">
@@ -58,7 +65,14 @@
</small></p>
</td>
</tr>
+
<tr>
+ <td colspan="2">
+ <hr/>
+ </td>
+ </tr>
+
+ <tr>
<td valign="top" align="left">
<a name="itemname2" id="itemname2"></a><b>JSF facet enabled for projects depending on seam-faces 3.x.</b></td>
<td valign="top">
Modified: trunk/documentation/whatsnew/modeshape/modeshape-news-3.3.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/modeshape/modeshape-news-3.3.0.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/modeshape/modeshape-news-3.3.0.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -11,7 +11,7 @@
<body>
<h1>ModeShape 3.3.0.M2 What's New</h1>
<p align="right"><a href="../index.html">< Main Index</a> <a
-href="../maven/maven-news-3.3.0.M2.html">Maven Tools ></a></p>
+href="../jbpm/jbpm-news-3.3.0.M2.html">jBPM Tools ></a></p>
<p>Last revised June 17, 2011</p>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
Modified: trunk/documentation/whatsnew/teiid/teiid-news-7.4.html
===================================================================
--- trunk/documentation/whatsnew/teiid/teiid-news-7.4.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/teiid/teiid-news-7.4.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -21,8 +21,7 @@
</script></head>
<body>
<h1>Teiid Designer 7.4 What's New</h1>
-<p align="right"><a href="../index.html">< Main Index</a> <a
-href="../deltacloud/deltacloud-news-0.0.1.CR1.html">Delta Cloud Tools ></a></p>
+<p align="right"><a href="../index.html">< Main Index</a></p>
<p>Last revised May 12, 2011</p>
<p><b>Teiid Designer</b> is a graphical data modeling tool that enables
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.2.0.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -75,7 +75,7 @@
<p><img src="images/3.2.0.M2/size-captition.png" alt="Size Captition in VPE"/>
</p>
<p><small>
- <a href="hhttps://jira.jboss.org/browse/JBIDE-6333">Related Jira</a>
+ <a href="https://jira.jboss.org/browse/JBIDE-6333">Related Jira</a>
</small></p>
</td>
</tr>
Modified: trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.M2.html
===================================================================
--- trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/vpe/vpe-news-3.3.0.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -37,10 +37,20 @@
<tr>
<td valign="top" align="left"><a name="itemname3" id="itemname3"></a><b>Disable Visual Editor</b></td>
<td valign="top">
- <p>Eclipse may crash while using Visual Editor on some Linux distributions. We created a command-line to option for the users who experience this problem.
- Adding the following line to eclipse.ini (or jbdevstudio.ini in JBDS) will disable Visual Editor:</p>
+ <p>Eclipse may crash while using Visual Editor on some
+ Linux distributions because of <a
+ href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=349837">https://bugs.eclipse.org/bugs/show_bug.cgi?id=349837</a>.
+
+ <p>To workaround this issue which will be fixed in
+ 3.7.1, we've created a command-line option for the users who experience this problem.
+ Adding the following line to eclipse.ini (or
+ jbdevstudio.ini in JBDS) as -vmargs will disable the Visual
+ tab in the Visual Page Editor:</p>
<p><code>-Dorg.jboss.tools.vpe.loadxulrunner=false</code></p>
+ <p>You can also use that directly from the command
+ line:</p>
+ <p><code>eclipse -vmargs -Dorg.jboss.tools.vpe.loadxulrunner=false</code></p>
<p><small><a href="https://issues.jboss.org/browse/JBIDE-9144">Related Jira 1</a></small>,
<small><a href="https://jira.jboss.org/jira/browse/JBIDE-9188">Related Jira 2</a></small></p>
</td>
Modified: trunk/documentation/whatsnew/ws/ws-news-1.2.2.M2.html
===================================================================
--- trunk/documentation/whatsnew/ws/ws-news-1.2.2.M2.html 2011-06-23 22:34:01 UTC (rev 32327)
+++ trunk/documentation/whatsnew/ws/ws-news-1.2.2.M2.html 2011-06-23 22:36:43 UTC (rev 32328)
@@ -23,7 +23,8 @@
<body>
<h1>WS tools 3.3.0 M2 What's New</h1>
-<p align="right"><a href="../index.html">< Main Index</a></p>
+<p align="right"><a href="../index.html">< Main Index</a> <a
+href="../deltacloud/deltacloud-news-0.2.0.M2.html">DeltaCloud Tools ></p></p>
<table border="0" cellpadding="10" cellspacing="0" width="80%">
14 years, 9 months
JBoss Tools SVN: r32327 - workspace/snjeza.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2011-06-23 18:34:01 -0400 (Thu, 23 Jun 2011)
New Revision: 32327
Added:
workspace/snjeza/org.eclipse.rcp.patch.update/
Log:
Initial import.
14 years, 9 months
JBoss Tools SVN: r32326 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2011-06-23 13:51:52 -0400 (Thu, 23 Jun 2011)
New Revision: 32326
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
Log:
JBIDE-9927 - revert due to incomplete commit
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-23 15:31:37 UTC (rev 32325)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/v7/JBoss7ServerBehavior.java 2011-06-23 17:51:52 UTC (rev 32326)
@@ -24,7 +24,6 @@
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.SubProgressMonitor;
import org.eclipse.debug.core.DebugEvent;
-import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.IDebugEventSetListener;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
@@ -38,7 +37,6 @@
import org.jboss.ide.eclipse.as.core.extensions.events.ServerLogger;
import org.jboss.ide.eclipse.as.core.publishers.LocalPublishMethod;
import org.jboss.ide.eclipse.as.core.server.IJBoss7ManagerService;
-import org.jboss.ide.eclipse.as.core.server.IJBossServerRuntime;
import org.jboss.ide.eclipse.as.core.server.internal.JBossServerBehavior;
import org.jboss.ide.eclipse.as.core.server.internal.PollThread;
import org.jboss.ide.eclipse.as.core.util.IJBossToolingConstants;
@@ -80,8 +78,7 @@
throws CoreException {
IServer server = getServer();
IRuntime runtime = server.getRuntime();
- IJBossServerRuntime serverRuntime = (IJBossServerRuntime) runtime.loadAdapter(IJBossServerRuntime.class, null);
- new JBoss7RuntimeLaunchConfigurator(launchConfig).apply(server, runtime, serverRuntime);
+ new JBoss7RuntimeLaunchConfigurator(launchConfig).apply(server);
}
public void setProcess(IProcess process) {
@@ -164,23 +161,20 @@
}
try {
if (force) {
- terminateProcess();
+ if( serverProcess != null )
+ serverProcess.terminate();
} else {
serverStopping();
// TODO: for now only local, implement for remote afterwards
-// disabled because of JBIDE-9173
- try {
- if (isServerRunning(getServer().getHost(), getJBoss7Server().getManagementPort())) {
- // The service and Poller will make sure the server is down
- getService().stop(getServer().getHost(), getJBoss7Server().getManagementPort());
- return;
- } else {
- terminateProcess();
+ if (isServerRunning(getServer().getHost(), getJBoss7Server().getManagementPort())) {
+ // The service and Poller will make sure the server is down
+ getService().stop(getServer().getHost(), getJBoss7Server().getManagementPort());
+ return;
+ } else {
+ if( serverProcess != null && !serverProcess.isTerminated()) {
+ serverProcess.terminate();
}
- } catch(Exception e) {
- terminateProcess();
}
-// terminateProcess();
}
} catch (Exception e) {
IStatus status = new Status(IStatus.ERROR, JBossServerCorePlugin.PLUGIN_ID, MessageFormat.format(Messages.JBoss7ServerBehavior_could_not_stop, getServer().getName()), e);
@@ -189,12 +183,6 @@
setServerStopped();
}
- private void terminateProcess() throws DebugException {
- if( serverProcess != null && !serverProcess.isTerminated()) {
- serverProcess.terminate();
- }
- }
-
@Override
public void dispose() {
super.dispose();
14 years, 9 months