JBoss Tools SVN: r30970 - in trunk: jst/plugins/org.jboss.tools.jst.jsp and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2011-04-29 10:19:47 -0400 (Fri, 29 Apr 2011)
New Revision: 30970
Modified:
trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml
trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin.properties
Log:
https://issues.jboss.org/browse/JBIDE-8619 , title correction, CreateJSF2Composite... menu item disappeared - restoring.
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml 2011-04-29 14:14:09 UTC (rev 30969)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/plugin.xml 2011-04-29 14:19:47 UTC (rev 30970)
@@ -800,14 +800,14 @@
</command>
</menuContribution>
<menuContribution
- locationURI="popup:org.jboss.tools.jst.jsp.jspeditor.JSPTextEditor.source.EditorContext?after=org.jboss.tools.jst.jsp.i18n.ExternalizeStringsContributionItem">
+ locationURI="popup:org.jboss.tools.jst.jsp.jspeditor.JSPTextEditor.source.EditorContext?before=org.jboss.tools.jst.jsp.i18n.ExternalizeAllStringsContributionItem">
<dynamic
class="org.jboss.tools.jsf.web.validation.jsf2.action.CreateJSF2CompositeContributionItem"
id="org.jboss.tools.jsf.web.validation.jsf2.action.JSF2CreateCompositeContributionItem">
</dynamic>
</menuContribution>
<menuContribution
- locationURI="popup:org.jboss.tools.jst.jsp.jspeditor.HTMLTextEditor.source.EditorContext?after=org.jboss.tools.jst.jsp.i18n.ExternalizeStringsContributionItem">
+ locationURI="popup:org.jboss.tools.jst.jsp.jspeditor.HTMLTextEditor.source.EditorContext?before=org.jboss.tools.jst.jsp.i18n.ExternalizeAllStringsContributionItem">
<dynamic
class="org.jboss.tools.jsf.web.validation.jsf2.action.CreateJSF2CompositeContributionItem"
id="org.jboss.tools.jsf.web.validation.jsf2.action.JSF2CreateCompositeContributionItem">
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin.properties
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin.properties 2011-04-29 14:14:09 UTC (rev 30969)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/plugin.properties 2011-04-29 14:19:47 UTC (rev 30970)
@@ -17,7 +17,7 @@
proposalCategory.xmlEL= JBoss JSF EL Proposals
proposalCategory.xmlTag= JBoss JSF Tag Proposals
Toggle.Selection.Bar=Toggle Selection Bar
-Externalize.Selected.Property=Externalize selected string..
+Externalize.Selected.Property=Externalize selected string...
vpe.toolbar.name=VPE Toolbar
13 years, 8 months
JBoss Tools SVN: r30969 - trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console.
by jbosstools-commits@lists.jboss.org
Author: koen.aers(a)jboss.com
Date: 2011-04-29 10:14:09 -0400 (Fri, 29 Apr 2011)
New Revision: 30969
Modified:
trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java
Log:
support 'persistence setup'
Modified: trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java
===================================================================
--- trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java 2011-04-29 13:38:37 UTC (rev 30968)
+++ trunk/forge/plugins/org.jboss.tools.seam.forge/src/org/jboss/tools/seam/forge/console/CommandRecorder.java 2011-04-29 14:14:09 UTC (rev 30969)
@@ -1,7 +1,20 @@
package org.jboss.tools.seam.forge.console;
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.resources.IResource;
+import org.eclipse.core.resources.ResourcesPlugin;
+import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.text.DocumentEvent;
import org.eclipse.jface.text.IDocumentListener;
+import org.eclipse.jface.viewers.StructuredSelection;
+import org.eclipse.ui.IViewPart;
+import org.eclipse.ui.IWorkbenchPage;
+import org.eclipse.ui.IWorkbenchWindow;
+import org.eclipse.ui.PartInitException;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.ide.IDE;
+import org.eclipse.ui.part.ISetSelectionTarget;
import org.jboss.tools.seam.forge.importer.ProjectImporter;
public class CommandRecorder implements IDocumentListener {
@@ -58,6 +71,8 @@
return "pwd";
} else if ("new-project".equals(candidateCommand)) {
return "new-project";
+ } else if ("persistence".equals(candidateCommand)) {
+ return "persistence";
} else {
return null;
}
@@ -82,6 +97,30 @@
String projectDirName = projectPath.substring(index + 1);
String projectBaseDirPath = projectPath.substring(0, index);
new ProjectImporter(projectBaseDirPath, projectDirName).importProject();
+ } else if ("persistence".equals(currentCommand)) {
+ int index = beforePrompt.lastIndexOf("***SUCCESS*** Installed [forge.spec.jpa] successfully.\nWrote ");
+ if (index == -1) return;
+ String projectName = currentPrompt.substring(1, currentPrompt.indexOf(']'));
+ IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(projectName);
+ try {
+ project.refreshLocal(IResource.DEPTH_INFINITE, null);
+ } catch (CoreException e1) {
+ // TODO Auto-generated catch block
+ e1.printStackTrace();
+ }
+ try {
+ IWorkbenchWindow workbenchWindow = PlatformUI.getWorkbench().getActiveWorkbenchWindow();
+ IWorkbenchPage workbenchPage = workbenchWindow.getActivePage();
+ IFile file = project.getFile("/src/main/resources/META-INF/persistence.xml");
+ IDE.openEditor(workbenchPage, file);
+ IViewPart packageExplorer = workbenchPage.showView("org.eclipse.jdt.ui.PackageExplorer");
+ if (packageExplorer instanceof ISetSelectionTarget) {
+ ((ISetSelectionTarget)packageExplorer).selectReveal(new StructuredSelection(file));
+ }
+ } catch (PartInitException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
} else {
}
13 years, 8 months
JBoss Tools SVN: r30968 - branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2011-04-29 09:38:37 -0400 (Fri, 29 Apr 2011)
New Revision: 30968
Modified:
branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl/ExporterFactory.java
Log:
https://issues.jboss.org/browse/JBIDE-8823
Fix export property loss problem
Modified: branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl/ExporterFactory.java
===================================================================
--- branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl/ExporterFactory.java 2011-04-29 13:33:34 UTC (rev 30967)
+++ branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl/ExporterFactory.java 2011-04-29 13:38:37 UTC (rev 30968)
@@ -288,7 +288,7 @@
if (getExporterDefinitionId().equals("org.hibernate.tools.hbm2ddl")) { //$NON-NLS-1$
Hbm2DDLExporter ddlExporter = (Hbm2DDLExporter) exporter;
//avoid users to delete their databases with a single click
- ddlExporter.setExport(Boolean.getBoolean(extract.getProperty(ExporterFactoryStrings.EXPORTTODATABASE)));
+ ddlExporter.setExport(Boolean.parseBoolean(extract.getProperty(ExporterFactoryStrings.EXPORTTODATABASE)));
}
// special handling for QueryExporter
if (getExporterDefinitionId().equals("org.hibernate.tools.query")) { //$NON-NLS-1$
13 years, 8 months
JBoss Tools SVN: r30967 - branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2011-04-29 09:33:34 -0400 (Fri, 29 Apr 2011)
New Revision: 30967
Modified:
branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenerationLaunchDelegate.java
Log:
https://issues.jboss.org/browse/JBIDE-8822
Fix NPE when launching jpa generator
Modified: branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenerationLaunchDelegate.java
===================================================================
--- branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenerationLaunchDelegate.java 2011-04-29 09:56:34 UTC (rev 30966)
+++ branches/jbosstools-3.2.x/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenerationLaunchDelegate.java 2011-04-29 13:33:34 UTC (rev 30967)
@@ -1,6 +1,6 @@
/*
* JBoss, Home of Professional Open Source
- * Copyright 2005-2011, JBoss Inc., and individual contributors as indicated
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
@@ -26,6 +26,7 @@
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.Constructor;
+import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
@@ -58,6 +59,8 @@
import org.eclipse.debug.core.ILaunchConfiguration;
import org.eclipse.debug.core.ILaunchConfigurationWorkingCopy;
import org.eclipse.debug.core.model.IProcess;
+import org.eclipse.debug.internal.core.LaunchConfiguration;
+import org.eclipse.debug.internal.core.LaunchConfigurationWorkingCopy;
import org.eclipse.debug.ui.RefreshTab;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
@@ -174,6 +177,53 @@
createFile(externalPropFileName, propFileContentPreSave);
}
+ public class MockLaunchConfigWorkingCopy extends LaunchConfigurationWorkingCopy {
+
+ protected final Map<String, String> tmpAttr;
+
+ public MockLaunchConfigWorkingCopy(LaunchConfiguration original, Map<String, String> tmpAttr) throws CoreException {
+ super(original);
+ this.tmpAttr = tmpAttr;
+ }
+
+ public MockLaunchConfigWorkingCopy(LaunchConfigurationWorkingCopy parent, Map<String, String> tmpAttr) throws CoreException {
+ super(parent);
+ this.tmpAttr = tmpAttr;
+ }
+
+ @Override
+ public String getAttribute(String attributeName, String defaultValue) throws CoreException {
+ String res = tmpAttr.get(attributeName);
+ if (res == null) {
+ res = super.getAttribute(attributeName, defaultValue);
+ }
+ return res;
+ }
+ }
+
+ public class MockLaunchConfig extends LaunchConfiguration {
+
+ protected final Map<String, String> tmpAttr;
+
+ public MockLaunchConfig(ILaunchConfiguration original, Map<String, String> tmpAttr) throws CoreException {
+ super(original.getMemento());
+ this.tmpAttr = tmpAttr;
+ }
+
+ @Override
+ public String getAttribute(String attributeName, String defaultValue) throws CoreException {
+ String res = tmpAttr.get(attributeName);
+ if (res == null) {
+ res = super.getAttribute(attributeName, defaultValue);
+ }
+ return res;
+ }
+
+ public ILaunchConfigurationWorkingCopy getWorkingCopy() throws CoreException {
+ return new MockLaunchConfigWorkingCopy(this, tmpAttr);
+ }
+ }
+
/**
* Update launch configuration with attributes required for external process codegen.
*
@@ -182,7 +232,7 @@
* @throws CoreException
*/
public ILaunchConfiguration updateLaunchConfig(ILaunchConfiguration lc) throws CoreException {
- ILaunchConfigurationWorkingCopy lcwc = lc.getWorkingCopy();
+ Map<String, String> tmpAttributes = new HashMap<String, String>();
String fileName = null;
try {
fileName = getPath2GenBuildXml().toString();
@@ -190,21 +240,27 @@
throw new CoreException(HibernateConsolePlugin.throwableToStatus(e, 666));
}
// setup location of Ant build.xml file
- lcwc.setAttribute(IExternalToolConstants.ATTR_LOCATION, fileName);
+ tmpAttributes.put(IExternalToolConstants.ATTR_LOCATION, fileName);
// setup Ant runner main type
- lcwc.setAttribute(IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME,
+ tmpAttributes.put(IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME,
IAntLaunchConstants.MAIN_TYPE_NAME);
// setup ant remote process factory
- lcwc.setAttribute(DebugPlugin.ATTR_PROCESS_FACTORY_ID, "org.eclipse.ant.ui.remoteAntProcessFactory"); //$NON-NLS-1$
+ tmpAttributes.put(DebugPlugin.ATTR_PROCESS_FACTORY_ID, "org.eclipse.ant.ui.remoteAntProcessFactory"); //$NON-NLS-1$
// refresh whole workspace
- //lcwc.setAttribute(RefreshUtil.ATTR_REFRESH_SCOPE, RefreshUtil.MEMENTO_WORKSPACE);
+ //tmpAttributes.put(RefreshUtil.ATTR_REFRESH_SCOPE, RefreshUtil.MEMENTO_WORKSPACE);
- // https://issues.jboss.org/browse/JBIDE-8235
- throw new IllegalStateException("'Run in External Process' is not fully implemented. Please do not use it"); //$NON-NLS-1$
- //1. return lcwc(); - this doesn't print output to console
- //2. return lcwc.doSave();- This works, but we don't want these temp attributes to be saved
+ ILaunchConfiguration mockedConfig = lc.isWorkingCopy()
+ ? new MockLaunchConfigWorkingCopy((LaunchConfigurationWorkingCopy)lc, tmpAttributes)
+ : new MockLaunchConfig(lc, tmpAttributes);
+ return mockedConfig;
}
+ public ILaunch getLaunch(ILaunchConfiguration configuration, String mode)
+ throws CoreException {
+ configuration = updateLaunchConfig(configuration);
+ return super.getLaunch(configuration, mode);
+ }
+
public void launch(ILaunchConfiguration configuration, String mode,
ILaunch launch, IProgressMonitor monitor) throws CoreException {
Assert.isNotNull(configuration);
13 years, 8 months
JBoss Tools SVN: r30966 - trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2011-04-29 05:56:34 -0400 (Fri, 29 Apr 2011)
New Revision: 30966
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenerationLaunchDelegate.java
Log:
https://issues.jboss.org/browse/JBIDE-8822
Fix NPE when launching jpa generator
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenerationLaunchDelegate.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenerationLaunchDelegate.java 2011-04-29 09:55:38 UTC (rev 30965)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/launch/CodeGenerationLaunchDelegate.java 2011-04-29 09:56:34 UTC (rev 30966)
@@ -186,6 +186,11 @@
this.tmpAttr = tmpAttr;
}
+ public MockLaunchConfigWorkingCopy(LaunchConfigurationWorkingCopy parent, Map<String, String> tmpAttr) throws CoreException {
+ super(parent);
+ this.tmpAttr = tmpAttr;
+ }
+
@Override
public String getAttribute(String attributeName, String defaultValue) throws CoreException {
String res = tmpAttr.get(attributeName);
@@ -198,16 +203,13 @@
public class MockLaunchConfig extends LaunchConfiguration {
- protected final Map<String, String> tmpAttr = new HashMap<String, String>();
+ protected final Map<String, String> tmpAttr;
- public MockLaunchConfig(ILaunchConfiguration original) throws CoreException {
+ public MockLaunchConfig(ILaunchConfiguration original, Map<String, String> tmpAttr) throws CoreException {
super(original.getMemento());
+ this.tmpAttr = tmpAttr;
}
- public void setTmpAttribute(String attributeName, String value) {
- tmpAttr.put(attributeName, value);
- }
-
@Override
public String getAttribute(String attributeName, String defaultValue) throws CoreException {
String res = tmpAttr.get(attributeName);
@@ -230,7 +232,7 @@
* @throws CoreException
*/
public ILaunchConfiguration updateLaunchConfig(ILaunchConfiguration lc) throws CoreException {
- MockLaunchConfig mlc = new MockLaunchConfig(lc);
+ Map<String, String> tmpAttributes = new HashMap<String, String>();
String fileName = null;
try {
fileName = getPath2GenBuildXml().toString();
@@ -238,15 +240,19 @@
throw new CoreException(HibernateConsolePlugin.throwableToStatus(e, 666));
}
// setup location of Ant build.xml file
- mlc.setTmpAttribute(IExternalToolConstants.ATTR_LOCATION, fileName);
+ tmpAttributes.put(IExternalToolConstants.ATTR_LOCATION, fileName);
// setup Ant runner main type
- mlc.setTmpAttribute(IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME,
+ tmpAttributes.put(IJavaLaunchConfigurationConstants.ATTR_MAIN_TYPE_NAME,
IAntLaunchConstants.MAIN_TYPE_NAME);
// setup ant remote process factory
- mlc.setTmpAttribute(DebugPlugin.ATTR_PROCESS_FACTORY_ID, "org.eclipse.ant.ui.remoteAntProcessFactory"); //$NON-NLS-1$
+ tmpAttributes.put(DebugPlugin.ATTR_PROCESS_FACTORY_ID, "org.eclipse.ant.ui.remoteAntProcessFactory"); //$NON-NLS-1$
// refresh whole workspace
- //mlc.setTmpAttribute(RefreshUtil.ATTR_REFRESH_SCOPE, RefreshUtil.MEMENTO_WORKSPACE);
- return mlc;
+ //tmpAttributes.put(RefreshUtil.ATTR_REFRESH_SCOPE, RefreshUtil.MEMENTO_WORKSPACE);
+
+ ILaunchConfiguration mockedConfig = lc.isWorkingCopy()
+ ? new MockLaunchConfigWorkingCopy((LaunchConfigurationWorkingCopy)lc, tmpAttributes)
+ : new MockLaunchConfig(lc, tmpAttributes);
+ return mockedConfig;
}
public ILaunch getLaunch(ILaunchConfiguration configuration, String mode)
13 years, 8 months
JBoss Tools SVN: r30965 - trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2011-04-29 05:55:38 -0400 (Fri, 29 Apr 2011)
New Revision: 30965
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl/ExporterFactory.java
Log:
https://issues.jboss.org/browse/JBIDE-8823
Fix export property loss problem
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl/ExporterFactory.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl/ExporterFactory.java 2011-04-29 08:07:56 UTC (rev 30964)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/model/impl/ExporterFactory.java 2011-04-29 09:55:38 UTC (rev 30965)
@@ -288,7 +288,7 @@
if (getExporterDefinitionId().equals("org.hibernate.tools.hbm2ddl")) { //$NON-NLS-1$
Hbm2DDLExporter ddlExporter = (Hbm2DDLExporter) exporter;
//avoid users to delete their databases with a single click
- ddlExporter.setExport(Boolean.getBoolean(extract.getProperty(ExporterFactoryStrings.EXPORTTODATABASE)));
+ ddlExporter.setExport(Boolean.parseBoolean(extract.getProperty(ExporterFactoryStrings.EXPORTTODATABASE)));
}
// special handling for QueryExporter
if (getExporterDefinitionId().equals("org.hibernate.tools.query")) { //$NON-NLS-1$
13 years, 8 months
JBoss Tools SVN: r30964 - workspace/grid/bpel-examples.
by jbosstools-commits@lists.jboss.org
Author: Grid.Qian
Date: 2011-04-29 04:07:56 -0400 (Fri, 29 Apr 2011)
New Revision: 30964
Modified:
workspace/grid/bpel-examples/BluePrint1.zip
workspace/grid/bpel-examples/BluePrint2.zip
workspace/grid/bpel-examples/BluePrint3.zip
workspace/grid/bpel-examples/BluePrint4.zip
workspace/grid/bpel-examples/BluePrint5.zip
workspace/grid/bpel-examples/Fault_Compensation.zip
workspace/grid/bpel-examples/HelloWorld.zip
workspace/grid/bpel-examples/Hello_World_Header_Ode.zip
workspace/grid/bpel-examples/Hello_World_Header_WSDL.zip
workspace/grid/bpel-examples/Loan_Approval.zip
workspace/grid/bpel-examples/Loan_Approval_WS.zip
workspace/grid/bpel-examples/Math.zip
workspace/grid/bpel-examples/Salutations.zip
workspace/grid/bpel-examples/Say_Hello.zip
workspace/grid/bpel-examples/Service_Handler.zip
workspace/grid/bpel-examples/Simple_Correlation.zip
workspace/grid/bpel-examples/Simple_Invoke.zip
workspace/grid/bpel-examples/Simple_Invoke_WS.zip
workspace/grid/bpel-examples/Simple_Pick.zip
workspace/grid/bpel-examples/While_Wait.zip
workspace/grid/bpel-examples/While_Wait_WS.zip
Log:
JBIDE-JBIDE-8532: modify some examples
Modified: workspace/grid/bpel-examples/BluePrint1.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/BluePrint2.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/BluePrint3.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/BluePrint4.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/BluePrint5.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Fault_Compensation.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/HelloWorld.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Hello_World_Header_Ode.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Hello_World_Header_WSDL.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Loan_Approval.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Loan_Approval_WS.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Math.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Salutations.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Say_Hello.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Service_Handler.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Simple_Correlation.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Simple_Invoke.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Simple_Invoke_WS.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/Simple_Pick.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/While_Wait.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/bpel-examples/While_Wait_WS.zip
===================================================================
(Binary files differ)
13 years, 8 months
JBoss Tools SVN: r30963 - branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2011-04-29 02:34:23 -0400 (Fri, 29 Apr 2011)
New Revision: 30963
Modified:
branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template/RichFacesInplaceSelectTemplate.java
Log:
https://issues.jboss.org/browse/JBIDE-8467 , debug message was removed.
Modified: branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template/RichFacesInplaceSelectTemplate.java
===================================================================
--- branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template/RichFacesInplaceSelectTemplate.java 2011-04-29 04:46:21 UTC (rev 30962)
+++ branches/jbosstools-3.2.x/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/src/org/jboss/tools/jsf/vpe/richfaces/template/RichFacesInplaceSelectTemplate.java 2011-04-29 06:34:23 UTC (rev 30963)
@@ -174,9 +174,6 @@
+ Constants.WHITE_SPACE + HTML.ATTR_WIDTH + Constants.COLON
+this.sourceListWidth + Constants.SEMICOLON;
- System.out.println(" dropDownListSizesStyle = " //$NON-NLS-1$
- + dropDownListSizesStyle);
-
table.setAttribute(HTML.ATTR_STYLE, dropDownListSizesStyle);
listScrollDiv.setAttribute(HTML.ATTR_CLASS, "rich-inplace-select-list-scroll"); //$NON-NLS-1$
listScrollDiv.setAttribute(HTML.ATTR_STYLE, dropDownListSizesStyle);
13 years, 8 months
JBoss Tools SVN: r30962 - branches/jbosstools-3.2.x/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-04-29 00:46:21 -0400 (Fri, 29 Apr 2011)
New Revision: 30962
Modified:
branches/jbosstools-3.2.x/build/aggregate/site/build.xml
Log:
ensure that a <copy> works just as well as a <exec> when verifying if zip.list.txt exists (don't check wget.return if not doing wget)
Modified: branches/jbosstools-3.2.x/build/aggregate/site/build.xml
===================================================================
--- branches/jbosstools-3.2.x/build/aggregate/site/build.xml 2011-04-29 04:44:53 UTC (rev 30961)
+++ branches/jbosstools-3.2.x/build/aggregate/site/build.xml 2011-04-29 04:46:21 UTC (rev 30962)
@@ -60,7 +60,7 @@
<var unset="true" name="ALL_ZIPS" />
<var unset="true" name="wget.return" />
<if>
- <contains string="${location.cleaned}" substring="http" />
+ <contains string="${location.cleaned}" substring=":/" />
<then>
<exec executable="wget" dir="${aggregate.zips.dir}" failonerror="false" failifexecutionfails="false" resultproperty="wget.return" outputproperty="null">
@@ -77,7 +77,7 @@
<echo level="verbose">Fetch SVN_REVISION.txt if it exists (return 8 if not found)</echo>
<var name="svnRevTXT" value="${aggregate.zips.dir}/SVN_REVISION.txt" />
<if>
- <contains string="${location.cleaned}" substring="http" />
+ <contains string="${location.cleaned}" substring=":/" />
<then>
<exec executable="wget" dir="${aggregate.zips.dir}" failonerror="false" failifexecutionfails="false" resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/SVN_REVISION.txt -q --no-clobber --tries=3" />
@@ -93,7 +93,7 @@
<echo level="verbose">Fetch SVN_REVISION.xml if it exists (return 8 if not found)</echo>
<var name="svnRevXML" value="${aggregate.zips.dir}/SVN_REVISION.xml" />
<if>
- <contains string="${location.cleaned}" substring="http" />
+ <contains string="${location.cleaned}" substring=":/" />
<then>
<exec executable="wget" dir="${aggregate.zips.dir}" failonerror="false" failifexecutionfails="false" resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/SVN_REVISION.xml -q --no-clobber --tries=3" />
@@ -109,7 +109,7 @@
<echo level="verbose">Fetch build.properties if it exists (return 8 if not found)</echo>
<var name="buildProperties" value="${aggregate.zips.dir}/build.properties" />
<if>
- <contains string="${location.cleaned}" substring="http" />
+ <contains string="${location.cleaned}" substring=":/" />
<then>
<exec executable="wget" dir="${aggregate.zips.dir}" failonerror="false" failifexecutionfails="false" resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/build.properties -q --no-clobber --tries=3" />
@@ -123,10 +123,19 @@
</if>
<if>
- <and>
- <equals arg1="${wget.return}" arg2="0" />
- <available file="${aggregate.zips.dir}/zip.list.txt" type="file" />
- </and>
+ <or>
+ <and>
+ <contains string="${location.cleaned}" substring=":/" />
+ <equals arg1="${wget.return}" arg2="0" />
+ <available file="${aggregate.zips.dir}/zip.list.txt" type="file" />
+ </and>
+ <and>
+ <not>
+ <contains string="${location.cleaned}" substring=":/" />
+ </not>
+ <available file="${aggregate.zips.dir}/zip.list.txt" type="file" />
+ </and>
+ </or>
<then>
<!-- load zip.list.txt file, get ALL_ZIPS list -->
<var unset="true" name="ALL_ZIPS" />
13 years, 8 months
JBoss Tools SVN: r30961 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-04-29 00:44:53 -0400 (Fri, 29 Apr 2011)
New Revision: 30961
Modified:
trunk/build/aggregate/site/build.xml
Log:
ensure that a <copy> works just as well as a <exec> when verifying if zip.list.txt exists (don't check wget.return if not doing wget)
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2011-04-29 01:31:55 UTC (rev 30960)
+++ trunk/build/aggregate/site/build.xml 2011-04-29 04:44:53 UTC (rev 30961)
@@ -60,7 +60,7 @@
<var unset="true" name="ALL_ZIPS" />
<var unset="true" name="wget.return" />
<if>
- <contains string="${location.cleaned}" substring="http" />
+ <contains string="${location.cleaned}" substring=":/" />
<then>
<exec executable="wget" dir="${aggregate.zips.dir}" failonerror="false" failifexecutionfails="false" resultproperty="wget.return" outputproperty="null">
@@ -77,7 +77,7 @@
<echo level="verbose">Fetch SVN_REVISION.txt if it exists (return 8 if not found)</echo>
<var name="svnRevTXT" value="${aggregate.zips.dir}/SVN_REVISION.txt" />
<if>
- <contains string="${location.cleaned}" substring="http" />
+ <contains string="${location.cleaned}" substring=":/" />
<then>
<exec executable="wget" dir="${aggregate.zips.dir}" failonerror="false" failifexecutionfails="false" resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/SVN_REVISION.txt -q --no-clobber --tries=3" />
@@ -93,7 +93,7 @@
<echo level="verbose">Fetch SVN_REVISION.xml if it exists (return 8 if not found)</echo>
<var name="svnRevXML" value="${aggregate.zips.dir}/SVN_REVISION.xml" />
<if>
- <contains string="${location.cleaned}" substring="http" />
+ <contains string="${location.cleaned}" substring=":/" />
<then>
<exec executable="wget" dir="${aggregate.zips.dir}" failonerror="false" failifexecutionfails="false" resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/SVN_REVISION.xml -q --no-clobber --tries=3" />
@@ -109,7 +109,7 @@
<echo level="verbose">Fetch build.properties if it exists (return 8 if not found)</echo>
<var name="buildProperties" value="${aggregate.zips.dir}/build.properties" />
<if>
- <contains string="${location.cleaned}" substring="http" />
+ <contains string="${location.cleaned}" substring=":/" />
<then>
<exec executable="wget" dir="${aggregate.zips.dir}" failonerror="false" failifexecutionfails="false" resultproperty="wget.return" outputproperty="null">
<arg line="${location.cleaned}/logs/build.properties -q --no-clobber --tries=3" />
@@ -123,10 +123,19 @@
</if>
<if>
- <and>
- <equals arg1="${wget.return}" arg2="0" />
- <available file="${aggregate.zips.dir}/zip.list.txt" type="file" />
- </and>
+ <or>
+ <and>
+ <contains string="${location.cleaned}" substring=":/" />
+ <equals arg1="${wget.return}" arg2="0" />
+ <available file="${aggregate.zips.dir}/zip.list.txt" type="file" />
+ </and>
+ <and>
+ <not>
+ <contains string="${location.cleaned}" substring=":/" />
+ </not>
+ <available file="${aggregate.zips.dir}/zip.list.txt" type="file" />
+ </and>
+ </or>
<then>
<!-- load zip.list.txt file, get ALL_ZIPS list -->
<var unset="true" name="ALL_ZIPS" />
13 years, 8 months