JBoss Tools SVN: r4007 - trunk/hibernatetools/plugins/org.hibernate.eclipse/lib/tools.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2007-10-04 10:50:59 -0400 (Thu, 04 Oct 2007)
New Revision: 4007
Added:
trunk/hibernatetools/plugins/org.hibernate.eclipse/lib/tools/hibernate-tools.jar
Log:
updated jar
Added: trunk/hibernatetools/plugins/org.hibernate.eclipse/lib/tools/hibernate-tools.jar
===================================================================
(Binary files differ)
Property changes on: trunk/hibernatetools/plugins/org.hibernate.eclipse/lib/tools/hibernate-tools.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 3 months
JBoss Tools SVN: r4006 - trunk/hibernatetools/plugins/org.hibernate.eclipse/lib/tools.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2007-10-04 10:50:44 -0400 (Thu, 04 Oct 2007)
New Revision: 4006
Removed:
trunk/hibernatetools/plugins/org.hibernate.eclipse/lib/tools/hibernate-tools.jar
Log:
updated jar
Deleted: trunk/hibernatetools/plugins/org.hibernate.eclipse/lib/tools/hibernate-tools.jar
===================================================================
(Binary files differ)
17 years, 3 months
JBoss Tools SVN: r4005 - tags/seam-2.0.0.beta4.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2007-10-04 10:35:18 -0400 (Thu, 04 Oct 2007)
New Revision: 4005
Added:
tags/seam-2.0.0.beta4/seam/
Log:
retagging seam
Copied: tags/seam-2.0.0.beta4/seam (from rev 4004, trunk/seam)
17 years, 3 months
JBoss Tools SVN: r4004 - tags/richfaces-2.0.0.beta4.
by jbosstools-commits@lists.jboss.org
Author: mculpepper(a)jboss.com
Date: 2007-10-04 10:34:56 -0400 (Thu, 04 Oct 2007)
New Revision: 4004
Added:
tags/richfaces-2.0.0.beta4/common/
Log:
retagging common
Copied: tags/richfaces-2.0.0.beta4/common (from rev 4003, trunk/common)
17 years, 3 months
JBoss Tools SVN: r4001 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2007-10-04 09:35:41 -0400 (Thu, 04 Oct 2007)
New Revision: 4001
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamEntityWizard.java
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamEntityWizardPage1.java
Log:
JBIDE-1024 New Entity wizard had swapped the meaning of pages
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamEntityWizard.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamEntityWizard.java 2007-10-04 13:33:35 UTC (rev 4000)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamEntityWizard.java 2007-10-04 13:35:41 UTC (rev 4001)
@@ -89,10 +89,10 @@
ACTION_WAR_MAPPING.add(new String[]{
"${" + ISeamFacetDataModelProperties.JBOSS_SEAM_HOME + "}/seam-gen/view/edit.xhtml",
- "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/${" + IParameter.SEAM_MASTER_PAGE_NAME +"}.xhtml"});
+ "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/${" + IParameter.SEAM_PAGE_NAME +"}.xhtml"});
ACTION_WAR_MAPPING.add(new String[]{
"${" + ISeamFacetDataModelProperties.JBOSS_SEAM_HOME + "}/seam-gen/view/list.xhtml",
- "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/${" + IParameter.SEAM_PAGE_NAME +"}.xhtml"});
+ "${" + IParameter.SEAM_PROJECT_WEBCONTENT_PATH + "}/${" + IParameter.SEAM_MASTER_PAGE_NAME +"}.xhtml"});
ACTION_EAR_MAPPING.add(new String[]{
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamEntityWizardPage1.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamEntityWizardPage1.java 2007-10-04 13:33:35 UTC (rev 4000)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamEntityWizardPage1.java 2007-10-04 13:35:41 UTC (rev 4001)
@@ -67,8 +67,8 @@
String value = event.getNewValue().toString();
String valueU = value.substring(0,1).toUpperCase() + value.substring(1);
String valueL = value.substring(0,1).toLowerCase() + value.substring(1);
- setDefaultValue(IParameter.SEAM_MASTER_PAGE_NAME, valueL);
- setDefaultValue(IParameter.SEAM_PAGE_NAME, valueL+"List");
+ setDefaultValue(IParameter.SEAM_MASTER_PAGE_NAME, valueL+"List");
+ setDefaultValue(IParameter.SEAM_PAGE_NAME, valueL);
}
}
}
17 years, 3 months
JBoss Tools SVN: r4000 - trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2007-10-04 09:33:35 -0400 (Thu, 04 Oct 2007)
New Revision: 4000
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/AntCopyUtils.java
Log:
JBIDE-969 informative exception instead of NPE
Modified: trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/AntCopyUtils.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/AntCopyUtils.java 2007-10-04 13:31:59 UTC (rev 3999)
+++ trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/internal/core/project/facet/AntCopyUtils.java 2007-10-04 13:33:35 UTC (rev 4000)
@@ -11,6 +11,7 @@
package org.jboss.tools.seam.internal.core.project.facet;
import java.io.File;
import java.io.FileFilter;
+import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
@@ -128,6 +129,11 @@
public boolean accept(File pathname){
return set.isIncluded(pathname.getAbsolutePath());
}
+
+ @Override
+ public String toString() {
+ return "included: " + set.getIncluded() + " excluded: " + set.getExcluded();
+ }
}
public static void copyFilesAndFolders(File sourceFolder, File destinationFolder, FilterSetCollection set, boolean override) {
@@ -137,7 +143,18 @@
public static void copyFilesAndFolders(File sourceFolder, File destinationFolder,
AntCopyUtils.FileSetFileFilter fileSetFilter,
FilterSetCollection filterSetCollection, boolean override) {
+ if(!sourceFolder.exists()) {
+ throw new IllegalArgumentException("Copy failed - " + sourceFolder + " does not exist");
+ }
File[] files = fileSetFilter==null?sourceFolder.listFiles():sourceFolder.listFiles(fileSetFilter);
+
+ if(files==null) {
+ if(fileSetFilter==null) {
+ throw new IllegalArgumentException("Could not find " + sourceFolder);
+ } else {
+ throw new IllegalArgumentException("Could not find " + fileSetFilter + " in "+ sourceFolder);
+ }
+ }
for (File file : files) {
if(file.isDirectory()) {
copyFilesAndFolders(file,new File(destinationFolder,file.getName()),fileSetFilter,filterSetCollection,override);
@@ -177,8 +194,22 @@
}
public static void copyFiles(File source, File dest, FileFilter filter) {
+
dest.mkdir();
- for (File file:source.listFiles(filter)) {
+
+ if(!source.exists()) {
+ throw new IllegalArgumentException("Copy failed - " + source + " does not exist");
+ }
+
+ File[] listFiles = source.listFiles(filter);
+ if(listFiles==null) {
+ if(filter==null) {
+ throw new IllegalArgumentException("Could not find " + source);
+ } else {
+ throw new IllegalArgumentException("Could not find " + filter + " in "+ source);
+ }
+ }
+ for (File file:listFiles) {
if(file.isDirectory())continue;
try {
FileUtils.getFileUtils().copyFile(file, new File(dest,file.getName()),new FilterSetCollection(),true);
17 years, 3 months
JBoss Tools SVN: r3999 - trunk/documentation/whatsnew/rhds.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2007-10-04 09:31:59 -0400 (Thu, 04 Oct 2007)
New Revision: 3999
Added:
trunk/documentation/whatsnew/rhds/rhds-eap-seamgen.png
trunk/documentation/whatsnew/rhds/rhds-eap.png
trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta1.html
trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta2.html
trunk/documentation/whatsnew/rhds/rhds-welcomescreen.png
Log:
rhds news
Added: trunk/documentation/whatsnew/rhds/rhds-eap-seamgen.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/rhds/rhds-eap-seamgen.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/rhds/rhds-eap.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/rhds/rhds-eap.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta1.html
===================================================================
--- trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta1.html (rev 0)
+++ trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta1.html 2007-10-04 13:31:59 UTC (rev 3999)
@@ -0,0 +1,88 @@
+<html>
+
+<head>
+<link rel="stylesheet" href="../whatsnew.css">
+<title>Red Hat Developer Studio 1.0.beta1 News</title>
+</head>
+
+<body>
+
+<h1>Red Hat Developer Studio 1.0.beta1 - New and Noteworthy</h1>
+
+<html>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+ <tr>
+ <td colspan="2">
+ <hr>
+ <h3>Eclipse</h3>
+ <hr>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>Eclipse 3.3 (Europa)</b></td>
+ <td valign="top">
+ <p>Red Hat Developer Studio
+ includes <a href="http://www.eclipse.org/europa/">Eclipse 3.3</a></p>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>WTP 2.0</b></td>
+ <td valign="top">
+ <p>Red Hat Developer Studio includes
+ the <a href="http://www.eclipse.org/webtools/releases/2.0/newandnoteworthy/main.php">Web
+ Tools Platform 2.0</a> that is part of the Eclipse Europa
+ release.</p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>JBoss Enterprise Application Platform</h3>
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>JBoss Enterprise Application Platform 4.2</b></td>
+ <td valign="top">
+ <p>
+ Red Hat Developer Studio includes and integrates
+ the <a href="http://www.redhat.com/jboss/platforms/application/">JBoss
+ Enterprise Application Platform 4.2</a>. During the install
+ process, Red Hat Developer Studio can install the JBoss Enterprise
+ Application Platform right into your development environment.
+ </p>
+
+ <p><img src="rhds-eap.png"/></p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>Seam-Gen</b></td>
+ <td valign="top">
+
+ <p>
+ Red Hat Developer Studio includes a matching Seam-Gen for the
+ JBoss Enterprise Application Platform and exposes Seam-Gen
+ functionality with visual tools.
+ </p>
+
+ <p><img src="rhds-eap-seamgen.png"/></p>
+ </td>
+ </tr>
+
+</table>
+
+</body>
+
+</html>
+
+
Added: trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta2.html
===================================================================
--- trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta2.html (rev 0)
+++ trunk/documentation/whatsnew/rhds/rhds-news-1.0.0.beta2.html 2007-10-04 13:31:59 UTC (rev 3999)
@@ -0,0 +1,99 @@
+<html>
+
+<head>
+<link rel="stylesheet" href="../whatsnew.css">
+<title>Red Hat Developer Studio 1.0.beta2 News</title>
+</head>
+
+<body>
+
+<h1>Red Hat Developer Studio 1.0.beta2 - New and Noteworthy</h1>
+
+<html>
+
+<table border="0" cellpadding="10" cellspacing="0" width="80%">
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>Installer</h3>
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>GIJ/GCJ check</b></td>
+ <td valign="top">
+ <p>
+ GIJ/GCJ does not work well with Eclipse Europa and Mozilla
+ integration hence the installer now checks if the Java VM is
+ GCJ/GIJ or not to avoid startup issues.
+ </p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr>
+ <h3>Plugins</h3>
+ <hr>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>TestNG plugin</b></td>
+ <td valign="top">
+ <p>The <a href="http://testng.org/doc/eclipse.html">TestNG plugin</a> is now included.</p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>JBoss Enterprise Application Platform</h3>
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>Seam 1.2.1</b></td>
+ <td valign="top">
+ <p>
+ This beta release bundles a release candiate of JBoss EAP 4.2
+ which includes Seam 1.2.1 which allows hotdeploy of Seam
+ components to work out-of-the-box.
+ </p>
+ <p>The bundled runtime is automatically setup in Eclipse as a Seam 1.2 runtime</p>
+ </td>
+ </tr>
+ <tr>
+ <td colspan="2">
+ <hr/>
+ <h3>Startup</h3>
+ <hr/>
+ </td>
+ </tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>HSQLDB automatically setup</b></td>
+ <td valign="top">
+ <p>
+ The HSQLDB included in JBoss EAP 4.2 is now pre-configured in DTP and thus available as a connection in database explorer.
+ </p>
+ </td>
+ </tr>
+ <tr>
+ <tr>
+ <td valign="top" align="left">
+ <p align="right"><b>Welcome screen</b></td>
+ <td valign="top">
+ <p>
+ A welcome screen were added with quick links to the main features and information.
+ </p>
+<p><img src="rhds-welcomescreen.png"/>
+ </td>
+ </tr>
+</table>
+
+</body>
+
+</html>
+
+
Added: trunk/documentation/whatsnew/rhds/rhds-welcomescreen.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/rhds/rhds-welcomescreen.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
17 years, 3 months
JBoss Tools SVN: r3998 - trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/util.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2007-10-04 08:49:10 -0400 (Thu, 04 Oct 2007)
New Revision: 3998
Modified:
trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/util/XModelObjectLoaderUtil.java
Log:
JBIDE-668
Modified: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/util/XModelObjectLoaderUtil.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/util/XModelObjectLoaderUtil.java 2007-10-04 11:46:18 UTC (rev 3997)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/util/XModelObjectLoaderUtil.java 2007-10-04 12:49:10 UTC (rev 3998)
@@ -113,9 +113,19 @@
for (int i = 0; i < as.length; i++) {
String xml = as[i].getXMLName();
if(xml == null) continue;
- int k = xml.indexOf('.');
- if(k < 0) continue;
- children.add(xml.substring(0, k));
+ int s = xml.indexOf('|');
+ if(s > 0) {
+ StringTokenizer st = new StringTokenizer(xml, "|");
+ while(st.hasMoreTokens()) {
+ String dxml = st.nextToken();
+ int k = dxml.indexOf('.');
+ if(k >= 0) children.add(dxml.substring(0, k));
+ }
+ } else {
+ int k = xml.indexOf('.');
+ if(k < 0) continue;
+ children.add(xml.substring(0, k));
+ }
}
XChild[] cs = entity.getChildren();
for (int i = 0; i < cs.length; i++) {
@@ -145,9 +155,19 @@
for (int i = 0; i < as.length; i++) {
String xml = as[i].getXMLName();
if(xml == null) continue;
- int k = xml.indexOf('.');
- if(k >= 0) continue;
- attributes.add(xml);
+ int s = xml.indexOf('|');
+ if(s > 0) {
+ StringTokenizer st = new StringTokenizer(xml, "|");
+ while(st.hasMoreTokens()) {
+ String dxml = st.nextToken();
+ int k = dxml.indexOf('.');
+ if(k < 0) attributes.add(dxml);
+ }
+ } else {
+ int k = xml.indexOf('.');
+ if(k >= 0) continue;
+ attributes.add(xml);
+ }
}
return attributes;
}
17 years, 3 months