Seam SVN: r8088 - branches/Seam_2_0/build.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-04-30 15:51:32 -0400 (Wed, 30 Apr 2008)
New Revision: 8088
Modified:
branches/Seam_2_0/build/default.build.properties
Log:
Revert qualifier back to "-SNAPSHOT" for Seam_2_0 branch development.
Modified: branches/Seam_2_0/build/default.build.properties
===================================================================
--- branches/Seam_2_0/build/default.build.properties 2008-04-30 19:45:04 UTC (rev 8087)
+++ branches/Seam_2_0/build/default.build.properties 2008-04-30 19:51:32 UTC (rev 8088)
@@ -8,7 +8,7 @@
major.version 2
minor.version .0
patchlevel .2
-qualifier .CR2
+qualifier -SNAPSHOT
#
# Other program locations
# -----------------------
16 years, 6 months
Seam SVN: r8087 - tags.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-04-30 15:45:04 -0400 (Wed, 30 Apr 2008)
New Revision: 8087
Added:
tags/JBoss_Seam_2_0_2_CR2/
Log:
create JBoss_Seam_2_0_2_CR2 tag
Copied: tags/JBoss_Seam_2_0_2_CR2 (from rev 8086, branches/Seam_2_0)
16 years, 6 months
Seam SVN: r8086 - trunk/seam-gen/src.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2008-04-30 14:57:46 -0400 (Wed, 30 Apr 2008)
New Revision: 8086
Modified:
trunk/seam-gen/src/EntityHome.java.ftl
Log:
missing semicolon
Modified: trunk/seam-gen/src/EntityHome.java.ftl
===================================================================
--- trunk/seam-gen/src/EntityHome.java.ftl 2008-04-30 18:55:59 UTC (rev 8085)
+++ trunk/seam-gen/src/EntityHome.java.ftl 2008-04-30 18:57:46 UTC (rev 8086)
@@ -67,7 +67,7 @@
public void wire()
{
- getInstance()
+ getInstance();
<#foreach property in pojo.allPropertiesIterator>
<#if c2h.isManyToOne(property)>
<#assign parentPojo = c2j.getPOJOClass(cfg.getClassMapping(property.value.referencedEntityName))>
16 years, 6 months
Seam SVN: r8085 - branches/Seam_2_0/seam-gen/src.
by seam-commits@lists.jboss.org
Author: dan.j.allen
Date: 2008-04-30 14:55:59 -0400 (Wed, 30 Apr 2008)
New Revision: 8085
Modified:
branches/Seam_2_0/seam-gen/src/EntityHome.java.ftl
Log:
run getInstance() in wire() regardless of whether there are related entities for consistent behavior
Modified: branches/Seam_2_0/seam-gen/src/EntityHome.java.ftl
===================================================================
--- branches/Seam_2_0/seam-gen/src/EntityHome.java.ftl 2008-04-30 18:17:33 UTC (rev 8084)
+++ branches/Seam_2_0/seam-gen/src/EntityHome.java.ftl 2008-04-30 18:55:59 UTC (rev 8085)
@@ -68,6 +68,7 @@
public void wire()
{
+ getInstance();
<#foreach property in pojo.allPropertiesIterator>
<#if c2h.isManyToOne(property)>
<#assign parentPojo = c2j.getPOJOClass(cfg.getClassMapping(property.value.referencedEntityName))>
16 years, 6 months
Seam SVN: r8084 - branches/Seam_2_0.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-04-30 14:17:33 -0400 (Wed, 30 Apr 2008)
New Revision: 8084
Modified:
branches/Seam_2_0/release-process.txt
Log:
updated
Modified: branches/Seam_2_0/release-process.txt
===================================================================
--- branches/Seam_2_0/release-process.txt 2008-04-30 18:16:51 UTC (rev 8083)
+++ branches/Seam_2_0/release-process.txt 2008-04-30 18:17:33 UTC (rev 8084)
@@ -1,6 +1,13 @@
Seam Release Process
====================
+Notify branch is closed
+------------------------
+* Send an email to seam-dev(a)lists.jboss.org.
+ - State a version of the following :
+ - As all issues in JIRA for Seam <release> are now resolved, the release process for <release> is now underway.
+ - Please don't make any commits to the <branch or trunk> without checking with this mail list first.
+
Updating version numbers
------------------------
* Update the version information:
@@ -20,10 +27,12 @@
-------------------------
* A released version of seam should not reference any repositories other than
"repository.jboss.org". See "build/readme.txt" for details.
- - Search "$DIST/build" for "pluginRepository".
- - Should only find "root.pom.xml" and "docs.pom.xml"
- - Comment out any other "<pluginRepository>" entry
- - Comment out any "<repository>" that references a commented out entry.
+ - Search "$SEAM/build" for "repositories".
+ - Verify/Comment out any repository entry not "http://repository.jboss.org/maven2"
+ - Should only be entries in "root.pom.xml" and "docs.pom.xml"
+ - Search "$SEAM/build" for "artifact:remoteRepository"
+ - Note any that reference other repositories
+ - <TODO: determine acceptable list (ci, embedded, etc...)/>
- Verify prior to tagging
- run "ant cleanall testall testreport" with these changes
- This should build, and test without a problem.
16 years, 6 months
Seam SVN: r8083 - branches/Seam_2_0.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-04-30 14:16:51 -0400 (Wed, 30 Apr 2008)
New Revision: 8083
Modified:
branches/Seam_2_0/changelog.txt
branches/Seam_2_0/readme.txt
Log:
updated for 2.0.2.CR2
Modified: branches/Seam_2_0/changelog.txt
===================================================================
--- branches/Seam_2_0/changelog.txt 2008-04-30 18:14:50 UTC (rev 8082)
+++ branches/Seam_2_0/changelog.txt 2008-04-30 18:16:51 UTC (rev 8083)
@@ -1,6 +1,73 @@
JBoss Seam Changelog
====================
+Release Notes - JBoss Seam - Version 2.0.2.CR2
+
+** Feature Request
+ * [ JBSEAM-2813 ] Change port used by remoting-service.xml in Embedded JBoss to prevent interfering with running JBoss AS
+ * [ JBSEAM-2897 ] externalize list of deployable jars in seam-gen projects
+
+** Bug
+ * [ JBSEAM-2319 ] searchparents="true" required to properly detect Groovy in build
+ * [ JBSEAM-2810 ] Seam-gen generated project doesn't work with .groovy files
+ * [ JBSEAM-2812 ] GroovyHotDeploymentStrategy not reloading Java classes
+ * [ JBSEAM-2821 ] Page two of hotels list is empty when page size is 20 on all Booking examples
+ * [ JBSEAM-2823 ] Mail example links should be updated for seamframework.org
+ * [ JBSEAM-2824 ] Mail example - sending mail with attachment fails with domain error
+ * [ JBSEAM-2825 ] mail example - attachment email - inline image is broken
+ * [ JBSEAM-2826 ] Mail example test failure on "testAttachment"
+ * [ JBSEAM-2827 ] Tomcat DVD example fails deployment with NoClassDefFoundError: bsh/TargetError
+ * [ JBSEAM-2828 ] Tomcat JPA deployment fails with NoClassDefFoundError: javax/faces/component/UIComponent
+ * [ JBSEAM-2829 ] Tomcat hibernate example deployment fails with NoClassDefFoundError: javax/faces/component/UIComponent
+ * [ JBSEAM-2830 ] Tomcat hibernate example without JBoss embedded fails with NoClassDefFoundError: org/objectweb/asm/Type
+ * [ JBSEAM-2833 ] Glassfish Jee5 example deployment fails with NoClassDefFoundError: EDU/oswego/cs/dl/util/concurrent/ConcurrentReaderHashMap
+ * [ JBSEAM-2834 ] Glassfish JPA example deployment fails with NoClassDefFoundError: org/objectweb/asm/Type
+ * [ JBSEAM-2835 ] Glassfish Hibernate example deployment fails with NoClassDefFoundError: org/objectweb/asm/Type
+ * [ JBSEAM-2836 ] seam-gen WAR release test throws EntityNotFoundException when creating vehicle
+ * [ JBSEAM-2837 ] JBDS EAR project unit test failed because it was missing core.jar
+ * [ JBSEAM-2838 ] JBDS EAR project unit test fails with IllegalStateException: could not locate rule file: /security.drl
+ * [ JBSEAM-2840 ] Blog example - click on "all posts" then "seam roadmap" and get a XML parsing error
+ * [ JBSEAM-2842 ] "ant deploypresentation" attempt to deploy to jbossweb-tomcat55.sar
+ * [ JBSEAM-2844 ] Contact list example - create a user with no name and you can't remove them
+ * [ JBSEAM-2845 ] Contact list example - change table page and then search for less people - table appears blank
+ * [ JBSEAM-2846 ] Seamspace example - fileupload causes security exception
+ * [ JBSEAM-2847 ] Seamspace example - Empty fileupload causes hibernate errors
+ * [ JBSEAM-2850 ] DVDStore example - ViewExpiredException: viewId:/checkout.seam
+ * [ JBSEAM-2853 ] Ending nested navigation causes exception
+ * [ JBSEAM-2856 ] s:selectItems with itemValue not submitting itemValue's data
+ * [ JBSEAM-2858 ] NumberWrapper does not manage correctly Long or Short types
+ * [ JBSEAM-2862 ] Problem when using s:convertEntity
+ * [ JBSEAM-2863 ] EntityStore assumes entity manager is named "entityManager"
+ * [ JBSEAM-2870 ] remoting.xsd references non-existent component remoting-config
+ * [ JBSEAM-2875 ] ConverterException with no FacesMessage causes NPE
+ * [ JBSEAM-2880 ] GWT-RPC fails because of wrong content type check
+ * [ JBSEAM-2892 ] Bad usage of List.get() in EntityBeanList.class
+ * [ JBSEAM-2906 ] Configuring a drools:rule-agent with files property throws NullPointerException
+ * [ JBSEAM-2908 ] Component.callCreateMethod exception handling
+ * [ JBSEAM-2913 ] Better solution for JBSEAM-2780 (has bead side effects)
+ * [ JBSEAM-2924 ] session dropped by exception handler redirect if using url rewriting
+ * [ JBSEAM-2930 ] Exception handling in pages.xml ignores EL expressions
+
+** Task
+ * [ JBSEAM-2602 ] Document use of flat dataset file in the Seam reference
+ * [ JBSEAM-2691 ] Getting started with Seam using JBoss Tools
+ * [ JBSEAM-2806 ] Reference guide PDF left hand column overflow
+ * [ JBSEAM-2807 ] Add comment to jndiPattern in example's component.properties files
+ * [ JBSEAM-2816 ] Release new beta of documentation styles and upgrade branch to use them
+ * [ JBSEAM-2818 ] Strip identity management out of Seam 2.0 including xsd
+ * [ JBSEAM-2831 ] Fix Seam Maven dependencies to be in line with new release of Hibernate
+ * [ JBSEAM-2832 ] Spring example - readme says it only deploys to tomcat, but it only builds to JBoss
+ * [ JBSEAM-2839 ] Blog example does not document that the password is "tokyo".
+ * [ JBSEAM-2843 ] seam-examples.html and examples/readme.txt needs to updated/reviewed
+ * [ JBSEAM-2848 ] JPA example readme.txt for JBoss says that you need to deploy manually, but it is done.
+ * [ JBSEAM-2865 ] Duplicate component error on startup should print component class
+ * [ JBSEAM-2866 ] library commons-digester is in older version 1.5 instead of 1.8
+ * [ JBSEAM-2867 ] xml-apis.jar is in older version 1.3.02 instead of 2.7.1
+ * [ JBSEAM-2868 ] Project dependencies section in documentation states missing jars
+ * [ JBSEAM-2909 ] Move remaining jar's to be maven managed
+ * [ JBSEAM-2919 ] Remove central from repo list in POMs
+ * [ JBSEAM-2932 ] update build scripts for ICEfaces1.7.0 release for seam-gen and seam-icefaces example
+
Release Notes - JBoss Seam - Version 2.0.2.CR1
** Feature Request
Modified: branches/Seam_2_0/readme.txt
===================================================================
--- branches/Seam_2_0/readme.txt 2008-04-30 18:14:50 UTC (rev 8082)
+++ branches/Seam_2_0/readme.txt 2008-04-30 18:16:51 UTC (rev 8083)
@@ -1,6 +1,6 @@
JBoss Seam - Contextual Component framework for Java EE 5
=========================================================
-version 2.0.2.CR1, April 2008
+version 2.0.2.CR2, April 2008
This software is distributed under the terms of the FSF Lesser Gnu
Public License (see lgpl.txt).
16 years, 6 months
Seam SVN: r8082 - branches/Seam_2_0/build.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-04-30 14:14:50 -0400 (Wed, 30 Apr 2008)
New Revision: 8082
Modified:
branches/Seam_2_0/build/default.build.properties
Log:
updated for 2.0.2.CR2
Modified: branches/Seam_2_0/build/default.build.properties
===================================================================
--- branches/Seam_2_0/build/default.build.properties 2008-04-30 15:26:46 UTC (rev 8081)
+++ branches/Seam_2_0/build/default.build.properties 2008-04-30 18:14:50 UTC (rev 8082)
@@ -8,7 +8,7 @@
major.version 2
minor.version .0
patchlevel .2
-qualifier -SNAPSHOT
+qualifier .CR2
#
# Other program locations
# -----------------------
16 years, 6 months
Seam SVN: r8081 - trunk/src/main/org/jboss/seam/framework and 1 other directory.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-04-30 11:26:46 -0400 (Wed, 30 Apr 2008)
New Revision: 8081
Modified:
branches/Seam_2_0/src/main/org/jboss/seam/framework/Query.java
trunk/src/main/org/jboss/seam/framework/Query.java
Log:
JBSEAM-2931
Modified: branches/Seam_2_0/src/main/org/jboss/seam/framework/Query.java
===================================================================
--- branches/Seam_2_0/src/main/org/jboss/seam/framework/Query.java 2008-04-30 15:12:49 UTC (rev 8080)
+++ branches/Seam_2_0/src/main/org/jboss/seam/framework/Query.java 2008-04-30 15:26:46 UTC (rev 8081)
@@ -369,7 +369,7 @@
public void setOrder(String order)
{
if (order!= null && !ORDER_CLAUSE_PATTERN.matcher(order).find()) {
- throw new IllegalArgumentException("invalid order clause");
+ throw new IllegalArgumentException("invalid order column (\"" + order + "\" must match the regular expression \"" + ORDER_CLAUSE_PATTERN + "\")");
}
this.order = order;
refresh();
Modified: trunk/src/main/org/jboss/seam/framework/Query.java
===================================================================
--- trunk/src/main/org/jboss/seam/framework/Query.java 2008-04-30 15:12:49 UTC (rev 8080)
+++ trunk/src/main/org/jboss/seam/framework/Query.java 2008-04-30 15:26:46 UTC (rev 8081)
@@ -442,7 +442,7 @@
} else if (ORDER_COLUMN_PATTERN.matcher(columnName).find()) {
return columnName;
} else {
- throw new IllegalArgumentException("invalid order column");
+ throw new IllegalArgumentException("invalid order column (\"" + columnName + "\" must match the regular expression \"" + ORDER_COLUMN_PATTERN + "\")");
}
}
16 years, 6 months
Seam SVN: r8080 - trunk/seam-gen/src and 1 other directory.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-04-30 11:12:49 -0400 (Wed, 30 Apr 2008)
New Revision: 8080
Modified:
branches/Seam_2_0/seam-gen/src/EntityHome.java.ftl
trunk/seam-gen/src/EntityHome.java.ftl
Log:
JBSEAM-2836
Modified: branches/Seam_2_0/seam-gen/src/EntityHome.java.ftl
===================================================================
--- branches/Seam_2_0/seam-gen/src/EntityHome.java.ftl 2008-04-30 13:10:25 UTC (rev 8079)
+++ branches/Seam_2_0/seam-gen/src/EntityHome.java.ftl 2008-04-30 15:12:49 UTC (rev 8080)
@@ -43,7 +43,7 @@
{
<#foreach property in pojo.identifierProperty.value.propertyIterator>
<#assign getter = pojo.getGetterSignature(property)>
-<#if property.value.typeName == "string">
+<#if property.value.typeName == "string" || property.value.typeName == "java.lang.String" >
if ( get${idName}().${getter}()==null || "".equals( get${idName}().${getter}() ) ) return false;
<#elseif !c2j.isPrimitive( pojo.getJavaTypeName(property, true) )>
if ( get${idName}().${getter}()==null ) return false;
@@ -51,6 +51,7 @@
if ( get${idName}().${getter}()==0 ) return false;
</#if>
</#foreach>
+
return true;
}
@@ -67,7 +68,6 @@
public void wire()
{
- getInstance();
<#foreach property in pojo.allPropertiesIterator>
<#if c2h.isManyToOne(property)>
<#assign parentPojo = c2j.getPOJOClass(cfg.getClassMapping(property.value.referencedEntityName))>
Modified: trunk/seam-gen/src/EntityHome.java.ftl
===================================================================
--- trunk/seam-gen/src/EntityHome.java.ftl 2008-04-30 13:10:25 UTC (rev 8079)
+++ trunk/seam-gen/src/EntityHome.java.ftl 2008-04-30 15:12:49 UTC (rev 8080)
@@ -43,7 +43,7 @@
{
<#foreach property in pojo.identifierProperty.value.propertyIterator>
<#assign getter = pojo.getGetterSignature(property)>
-<#if property.value.typeName == "string">
+<#if property.value.typeName == "string" || property.value.typeName == "java.lang.String" >
if ( get${idName}().${getter}()==null || "".equals( get${idName}().${getter}() ) ) return false;
<#elseif !c2j.isPrimitive( pojo.getJavaTypeName(property, true) )>
if ( get${idName}().${getter}()==null ) return false;
16 years, 6 months
Seam SVN: r8079 - branches/Seam_2_0/seam-gen/build-scripts.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-04-30 09:10:25 -0400 (Wed, 30 Apr 2008)
New Revision: 8079
Modified:
branches/Seam_2_0/seam-gen/build-scripts/deployed-jars-ear.list
branches/Seam_2_0/seam-gen/build-scripts/deployed-jars-war.list
Log:
Fix seam-gen
Modified: branches/Seam_2_0/seam-gen/build-scripts/deployed-jars-ear.list
===================================================================
--- branches/Seam_2_0/seam-gen/build-scripts/deployed-jars-ear.list 2008-04-29 22:20:02 UTC (rev 8078)
+++ branches/Seam_2_0/seam-gen/build-scripts/deployed-jars-ear.list 2008-04-30 13:10:25 UTC (rev 8079)
@@ -5,5 +5,5 @@
janino.jar
jboss-el.jar
jbpm-jpdl.jar
-mvel.jar
+mvel14.jar
richfaces-api.jar
Modified: branches/Seam_2_0/seam-gen/build-scripts/deployed-jars-war.list
===================================================================
--- branches/Seam_2_0/seam-gen/build-scripts/deployed-jars-war.list 2008-04-29 22:20:02 UTC (rev 8078)
+++ branches/Seam_2_0/seam-gen/build-scripts/deployed-jars-war.list 2008-04-30 13:10:25 UTC (rev 8079)
@@ -10,7 +10,7 @@
jboss-seam-*.jar
jbpm-jpdl.jar
jsf-facelets.jar
-mvel.jar
+mvel14.jar
richfaces-api.jar
richfaces-impl.jar
richfaces-ui.jar
16 years, 6 months