JBoss Tools SVN: r12550 - trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/mozilla.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2008-12-11 10:08:09 -0500 (Thu, 11 Dec 2008)
New Revision: 12550
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/mozilla/MozillaEditor.java
Log:
JBIDE-3032
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/mozilla/MozillaEditor.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/mozilla/MozillaEditor.java 2008-12-11 14:27:37 UTC (rev 12549)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/mozilla/MozillaEditor.java 2008-12-11 15:08:09 UTC (rev 12550)
@@ -328,7 +328,6 @@
public void completed(ProgressEvent event) {
loaded = true;
xulRunnerEditor.getBrowser().removeProgressListener(this);
- //here we switchs xulrunner to design mode JBIDE-2505
}
});
@@ -337,10 +336,11 @@
xulRunnerEditor.setText(doctype
+ DocTypeUtil.getContentInitFile(new File(INIT_URL)));
// Wait while visual part is loaded
- while (!loaded) {
- if (!Display.getCurrent().readAndDispatch())
- Display.getCurrent().sleep();
- }
+ //commented by mareshkau, fix for jbide-3032
+// while (!loaded) {
+// if (!Display.getCurrent().readAndDispatch())
+// Display.getCurrent().sleep();
+// }
xulRunnerEditor.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
}
catch (XulRunnerException e) {
17 years, 1 month
JBoss Tools SVN: r12549 - trunk/seam/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2008-12-11 09:27:37 -0500 (Thu, 11 Dec 2008)
New Revision: 12549
Modified:
trunk/seam/docs/reference/en/modules/seam_menus_and_actions.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-359 info on hot keys for "open seam component" is added
Modified: trunk/seam/docs/reference/en/modules/seam_menus_and_actions.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/seam_menus_and_actions.xml 2008-12-11 14:03:39 UTC (rev 12548)
+++ trunk/seam/docs/reference/en/modules/seam_menus_and_actions.xml 2008-12-11 14:27:37 UTC (rev 12549)
@@ -278,7 +278,7 @@
<para>To open Seam Components click on <emphasis><property>Navigate > Open Seam
Component</property></emphasis> in the main menu bar. This dialog is also available from toolbar
- icon.</para>
+ icon or with hot keys combination "Ctrl+Shift+Z ".</para>
<figure>
<title>Open Seam Components icon</title>
17 years, 1 month
JBoss Tools SVN: r12548 - trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2008-12-11 09:03:39 -0500 (Thu, 11 Dec 2008)
New Revision: 12548
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template/RichFacesComboBoxTemplateHelper.java
Log:
Minor change: names of authors
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template/RichFacesComboBoxTemplateHelper.java
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template/RichFacesComboBoxTemplateHelper.java 2008-12-11 13:55:45 UTC (rev 12547)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template/RichFacesComboBoxTemplateHelper.java 2008-12-11 14:03:39 UTC (rev 12548)
@@ -34,8 +34,8 @@
import com.sun.org.apache.xerces.internal.impl.xpath.regex.ParseException;
/**
+ * @author Eugene Stherbin
* @author yradtsevich
- *
*/
public class RichFacesComboBoxTemplateHelper {
private static final WeakHashMap<Node, Object> expandedComboBoxes = new WeakHashMap<Node, Object>();
17 years, 1 month
JBoss Tools SVN: r12547 - trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console.
by jbosstools-commits@lists.jboss.org
Author: vyemialyanchyk
Date: 2008-12-11 08:55:45 -0500 (Thu, 11 Dec 2008)
New Revision: 12547
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ConsoleConfiguration.java
Log:
JBIDE-3293
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ConsoleConfiguration.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ConsoleConfiguration.java 2008-12-11 13:31:44 UTC (rev 12546)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/src/org/hibernate/console/ConsoleConfiguration.java 2008-12-11 13:55:45 UTC (rev 12547)
@@ -595,6 +595,11 @@
IConnectionProfile profile = ProfileManager.getInstance().getProfileByName(connectionProfile);
if (profile != null) {
+ // refresh profile (refresh jpa connection):
+ // get fresh information about current db structure and update error markers
+ profile.disconnect();
+ profile.connect(null);
+ //
final Properties invokeProperties = localCfg.getProperties();
// set this property to null!
invokeProperties.remove(Environment.DATASOURCE);
17 years, 1 month
JBoss Tools SVN: r12546 - in trunk: jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2008-12-11 08:31:44 -0500 (Thu, 11 Dec 2008)
New Revision: 12546
Added:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/JBIDE-3030/jbide3385.jsp
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/JBIDE3030Test.java
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeFunctionTldVersionCheck.java
Log:
JBIDE-3385
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/JBIDE-3030/jbide3385.jsp
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/JBIDE-3030/jbide3385.jsp (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/JBIDE-3030/jbide3385.jsp 2008-12-11 13:31:44 UTC (rev 12546)
@@ -0,0 +1,112 @@
+<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
+<%@ page contentType="text/html; charset=UTF-8"%>
+<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
+<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
+
+<html>
+<head>
+<style type="text/css">
+
+.row1{
+ font-family: Times;
+ background-color: #D7E6E3;
+}
+.row2{
+ font-family: Times;
+ background-color: #8D9E9B;
+}
+.name {
+}
+.path {
+font-size: x-small;
+}
+.server {
+font-size: small;
+}
+.fileSize {
+}
+.scanDate{
+font-size: x-small;
+}
+</style>
+<title>Net search</title>
+</head>
+<body>
+
+<f:view>
+ <h1><h:outputText value="Net Search" /></h1>
+ <h:form id="searchFilter">
+ <h:panelGrid id="filter" columns="11" border="1">
+ <h:outputText id="name" value="Name:" />
+ <h:inputText value="#{user.name}"></h:inputText>
+ <h:outputText id="path" value="Path:" />
+ <h:inputText value="#{user.path}"></h:inputText>
+ <h:outputText id="server" value="Server:" />
+ <h:inputText value="#{user.server}"></h:inputText>
+ <h:outputText id="maxSize" value="Max Size:" />
+ <h:inputText value="#{user.sizeMax}"></h:inputText>
+ <h:outputText id="minSize" value="Min Size:" />
+ <h:inputText value="#{user.sizeMin}"></h:inputText>
+ <h:commandButton style="align:right;"
+ value="Submit" />
+ </h:panelGrid>
+ <h:outputText value="Founde Items: #{user.numberOfItems}, shows only first 300 items"></h:outputText>
+ <h:dataTable value="#{user.resources}" rowClasses="row1, row2" columnClasses="name, path, server,fileSize,scanDate" var="row">
+ <h:column>
+ <f:facet name="header">
+ <h:commandLink>
+ <h:outputText value="Name"></h:outputText>
+ <f:param name="orderBy" value="name"></f:param>
+ <f:param name="orderDirection" value="#{user.orderDirection}"></f:param>
+ </h:commandLink>
+ </f:facet>
+ <h:outputText value="#{row.name}" />
+ </h:column>
+ <h:column>
+ <f:facet name="header">
+ <h:commandLink>
+ <h:outputText value="Path" />
+ <f:param name="orderBy" value="path"></f:param>
+ <f:param name="orderDirection" value="#{user.orderDirection}"></f:param>
+ </h:commandLink>
+ </f:facet>
+ <h:outputLink charset="UTF-8" value="#{facesContext.externalContext.requestContextPath}/downloadServlet">
+ <h:outputText value="#{row.path}" />
+ <f:param name="downloadPath" value="#{row.path}"></f:param>
+ </h:outputLink>
+ </h:column>
+ <h:column>
+ <f:facet name="header">
+ <h:commandLink>
+ <h:outputText value="Server" />
+ <f:param name="orderBy" value="server"></f:param>
+ <f:param name="orderDirection" value="#{user.orderDirection}"></f:param>
+ </h:commandLink>
+ </f:facet>
+ <h:outputText value="#{row.server}" />
+ </h:column>
+ <h:column>
+ <f:facet name="header">
+ <h:commandLink>
+ <h:outputText value="File Size" />
+ <f:param name="orderBy" value="fileSize"></f:param>
+ <f:param name="orderDirection" value="#{user.orderDirection}"></f:param>
+ </h:commandLink>
+ </f:facet>
+ <h:outputText value="#{row.fileSize}" />
+ </h:column>
+ <h:column>
+ <f:facet name="header">
+ <h:commandLink>
+ <h:outputText value="Scan Date" />
+ <f:param name="orderBy" value="scanDate"></f:param>
+ <f:param name="orderDirection" value="#{user.orderDirection}"></f:param>
+ </h:commandLink>
+ </f:facet>
+ <h:outputText value="#{row.scanDate}" />
+ </h:column>
+ </h:dataTable>
+ </h:form>
+</f:view>
+</body>
+</html>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/JBIDE3030Test.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/JBIDE3030Test.java 2008-12-10 18:42:17 UTC (rev 12545)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/JBIDE3030Test.java 2008-12-11 13:31:44 UTC (rev 12546)
@@ -39,6 +39,7 @@
fileNames.add(jbide3030Path+"test.jsp"); //$NON-NLS-1$
fileNames.add(jbide3030Path+"test.html"); //$NON-NLS-1$
fileNames.add(jbide3030Path+"test.xhtml"); //$NON-NLS-1$
+ fileNames.add(jbide3030Path+"jbide3385.jsp");
}
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeFunctionTldVersionCheck.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeFunctionTldVersionCheck.java 2008-12-10 18:42:17 UTC (rev 12545)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeFunctionTldVersionCheck.java 2008-12-11 13:31:44 UTC (rev 12546)
@@ -15,6 +15,7 @@
import java.util.List;
import org.eclipse.core.resources.IProject;
+import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IFileEditorInput;
import org.jboss.tools.common.kb.wtp.TLDVersionHelper;
import org.jboss.tools.common.model.XModel;
@@ -99,7 +100,12 @@
} else {
//here we getting tld version for xhtml files
XModel xm = null;
- IProject project = ((IFileEditorInput)pageContext.getEditPart().getEditorInput()).getFile().getProject();
+ //fix for JBIDE-3385, mareshkau
+ final IEditorInput editorInput = pageContext.getEditPart().getEditorInput();
+ if(!(editorInput instanceof IFileEditorInput)){
+ return new VpeValue(false);
+ }
+ IProject project = ((IFileEditorInput)editorInput).getFile().getProject();
IModelNature mn = EclipseResourceUtil.getModelNature(project);
if(mn!=null) {
xm = mn.getModel();
17 years, 1 month
JBoss Tools SVN: r12545 - in trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder: build-files and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2008-12-10 13:42:17 -0500 (Wed, 10 Dec 2008)
New Revision: 12545
Modified:
trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder/build-files/build.properties
trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder/pluginbuilder.config
Log:
try to add appropriate category label for update site
Modified: trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder/build-files/build.properties
===================================================================
--- trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder/build-files/build.properties 2008-12-10 18:41:35 UTC (rev 12544)
+++ trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder/build-files/build.properties 2008-12-10 18:42:17 UTC (rev 12545)
@@ -177,7 +177,7 @@
# There will be one category for the generated update site. Here you can set the name.
# It is more like an id with which features refer to their category and does not appear in the GUI.
# @category updateSite
-updateSiteCategoryName=Builds
+updateSiteCategoryName=org.jboss.tools.flow
# Here you can set the Label of the category which will be displayed in the Updates dialog.
# @category updateSite
Modified: trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder/pluginbuilder.config
===================================================================
--- trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder/pluginbuilder.config 2008-12-10 18:41:35 UTC (rev 12544)
+++ trunk/jbpm/builders/org.jboss.tools.flow.jpdl4.builder/pluginbuilder.config 2008-12-10 18:42:17 UTC (rev 12545)
@@ -1,4 +1,4 @@
-#Tue Dec 09 17:37:18 EST 2008
+#Wed Dec 10 13:25:15 EST 2008
autotestsuite.class.exclusions=.*All(Tests|PDE_Tests|_Tests|PDETests).*
pluginbuilder.features=org.jboss.tools.flow.jpdl4.feature,org.jboss.tools.flow.common.feature
pluginbuilder.is.svn=false
17 years, 1 month
JBoss Tools SVN: r12544 - trunk/jbpm/plugins/org.jboss.tools.flow.jpdl4.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2008-12-10 13:41:35 -0500 (Wed, 10 Dec 2008)
New Revision: 12544
Modified:
trunk/jbpm/plugins/org.jboss.tools.flow.jpdl4/plugin.xml
Log:
make new wizard appear under jbpm category
Modified: trunk/jbpm/plugins/org.jboss.tools.flow.jpdl4/plugin.xml
===================================================================
--- trunk/jbpm/plugins/org.jboss.tools.flow.jpdl4/plugin.xml 2008-12-10 16:40:56 UTC (rev 12543)
+++ trunk/jbpm/plugins/org.jboss.tools.flow.jpdl4/plugin.xml 2008-12-10 18:41:35 UTC (rev 12544)
@@ -108,6 +108,7 @@
name="jBPM">
</category>
<wizard
+ category="org.jboss.tools.flow.jpdl4"
class="org.jboss.tools.flow.jpdl4.wizard.NewJpdl4FileWizard"
icon="icons/process.gif"
id="org.jboss.tools.flow.jpdl4.file"
17 years, 1 month
JBoss Tools SVN: r12543 - documentation/trunk/movies/index/en.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2008-12-10 11:40:56 -0500 (Wed, 10 Dec 2008)
New Revision: 12543
Modified:
documentation/trunk/movies/index/en/master.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-352
the text for seam demos is changed
Modified: documentation/trunk/movies/index/en/master.xml
===================================================================
--- documentation/trunk/movies/index/en/master.xml 2008-12-10 16:38:29 UTC (rev 12542)
+++ documentation/trunk/movies/index/en/master.xml 2008-12-10 16:40:56 UTC (rev 12543)
@@ -94,7 +94,7 @@
<para>This movie shows you step-by-step how to crete a new seam project</para><para/>
</listitem>
- <listitem><para>This demos shows how to create a database driven application using Seam</para>
+ <listitem><para>These demos show how to create a database driven application using Seam</para>
<itemizedlist>
<listitem>
17 years, 1 month
JBoss Tools SVN: r12542 - documentation/trunk/movies/index/en.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2008-12-10 11:38:29 -0500 (Wed, 10 Dec 2008)
New Revision: 12542
Modified:
documentation/trunk/movies/index/en/master.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-352
the text for seam demos is changed
Modified: documentation/trunk/movies/index/en/master.xml
===================================================================
--- documentation/trunk/movies/index/en/master.xml 2008-12-10 16:33:37 UTC (rev 12541)
+++ documentation/trunk/movies/index/en/master.xml 2008-12-10 16:38:29 UTC (rev 12542)
@@ -94,7 +94,7 @@
<para>This movie shows you step-by-step how to crete a new seam project</para><para/>
</listitem>
- <listitem><para>This demo showing how to create a database driven application using Seam</para>
+ <listitem><para>This demos shows how to create a database driven application using Seam</para>
<itemizedlist>
<listitem>
17 years, 1 month
JBoss Tools SVN: r12541 - documentation/trunk/movies/index/en.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2008-12-10 11:33:37 -0500 (Wed, 10 Dec 2008)
New Revision: 12541
Modified:
documentation/trunk/movies/index/en/master.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-352
the text for seam demos is changed
Modified: documentation/trunk/movies/index/en/master.xml
===================================================================
--- documentation/trunk/movies/index/en/master.xml 2008-12-10 15:34:03 UTC (rev 12540)
+++ documentation/trunk/movies/index/en/master.xml 2008-12-10 16:33:37 UTC (rev 12541)
@@ -94,7 +94,7 @@
<para>This movie shows you step-by-step how to crete a new seam project</para><para/>
</listitem>
- <listitem><para>This three-part demo showing how to create a database driven application using Seam</para>
+ <listitem><para>This demo showing how to create a database driven application using Seam</para>
<itemizedlist>
<listitem>
17 years, 1 month