Seam SVN: r8801 - tags.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-08-25 10:26:47 -0400 (Mon, 25 Aug 2008)
New Revision: 8801
Added:
tags/JBoss_Seam_2_1_0_BETA1/
Log:
Updated JBoss_Seam_2_1_0_BETA1 tag
Copied: tags/JBoss_Seam_2_1_0_BETA1 (from rev 8800, trunk)
16 years, 6 months
Seam SVN: r8800 - branches/Seam_2_0_FP/build.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-08-25 10:26:40 -0400 (Mon, 25 Aug 2008)
New Revision: 8800
Modified:
branches/Seam_2_0_FP/build/core.pom.xml
branches/Seam_2_0_FP/build/ui.pom.xml
Log:
JBPAPP-1102
Modified: branches/Seam_2_0_FP/build/core.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/core.pom.xml 2008-08-25 14:25:49 UTC (rev 8799)
+++ branches/Seam_2_0_FP/build/core.pom.xml 2008-08-25 14:26:40 UTC (rev 8800)
@@ -39,7 +…
[View More]39,13 @@
<optional>true</optional>
</dependency>
+ <!-- Maven's "nearest" dependency resolution doesn't take into account parent dependency management! -->
<dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ </dependency>
+
+ <dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<optional>true</optional>
Modified: branches/Seam_2_0_FP/build/ui.pom.xml
===================================================================
--- branches/Seam_2_0_FP/build/ui.pom.xml 2008-08-25 14:25:49 UTC (rev 8799)
+++ branches/Seam_2_0_FP/build/ui.pom.xml 2008-08-25 14:26:40 UTC (rev 8800)
@@ -158,6 +158,18 @@
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
+
+ <!-- Maven's "nearest" dependency resolution doesn't take into account parent dependency management! -->
+ <dependency>
+ <groupId>commons-collections</groupId>
+ <artifactId>commons-collections</artifactId>
+ </dependency>
+
+ <!-- Maven's "nearest" dependency resolution doesn't take into account parent dependency management! -->
+ <dependency>
+ <groupId>commons-digester</groupId>
+ <artifactId>commons-digester</artifactId>
+ </dependency>
<dependency>
<groupId>javax.persistence</groupId>
[View Less]
16 years, 6 months
Seam SVN: r8799 - tags.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-08-25 10:25:49 -0400 (Mon, 25 Aug 2008)
New Revision: 8799
Removed:
tags/JBoss_Seam_2_1_0_BETA1/
Log:
removing old tag prior to applying updated tag
16 years, 6 months
Seam SVN: r8798 - trunk.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-08-25 10:07:46 -0400 (Mon, 25 Aug 2008)
New Revision: 8798
Modified:
trunk/changelog.txt
Log:
prep for 2.1.0.BETA1 retag
Modified: trunk/changelog.txt
===================================================================
--- trunk/changelog.txt 2008-08-25 13:56:08 UTC (rev 8797)
+++ trunk/changelog.txt 2008-08-25 14:07:46 UTC (rev 8798)
@@ -153,7 +153,11 @@
* [JBSEAM-3283] - preserve transparency when transforming image
* [JBSEAM-3288] - …
[View More]Booking example - wrong message is displayed when canceling hotel booking
* [JBSEAM-3289] - 2 versions of ant used in the project distribution
+ * [JBSEAM-3291] - jboss-seam-ui.jar and jboss-seam-ui-sources.jar do not have manifest version information
* [JBSEAM-3295] - Major reentrancy problem with "Application Scope" components and injection/disinjection
+ * [JBSEAM-3303] - Unable to deploy war in JBoss AS due to jgroups dependency
+ * [JBSEAM-3306] - excel example csv download does not point to a csv file
+ * [JBSEAM-3307] - The excel example's "Export Table" files does not contain header rows
** Feature Request
* [JBSEAM-273] - Specify HTTP headers in pages.xml
[View Less]
16 years, 6 months
Seam SVN: r8797 - branches/Seam_2_0_FP/build.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-08-25 09:56:08 -0400 (Mon, 25 Aug 2008)
New Revision: 8797
Modified:
branches/Seam_2_0_FP/build/common.build.xml
Log:
Add gen to dependencyReport
Modified: branches/Seam_2_0_FP/build/common.build.xml
===================================================================
--- branches/Seam_2_0_FP/build/common.build.xml 2008-08-25 10:50:39 UTC (rev 8796)
+++ branches/Seam_2_0_FP/build/common.build.xml 2008-08-25 13:56:08 UTC (rev 8797)
@@ -325,6 +325,7 @@
…
[View More] <outputDependencyReport module="mail" />
<outputDependencyReport module="pdf" />
<outputDependencyReport module="ioc" />
+ <outputDependencyReport module="gen" />
<echo>Dependency Report written to ${seam.dir}/dependency-report.txt</echo>
</target>
[View Less]
16 years, 6 months
Seam SVN: r8796 - trunk/src/main/org/jboss/seam/init.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-08-25 06:50:39 -0400 (Mon, 25 Aug 2008)
New Revision: 8796
Modified:
trunk/src/main/org/jboss/seam/init/DependencyManager.java
Log:
should also catch NCDFE (an error, not an exception)
Modified: trunk/src/main/org/jboss/seam/init/DependencyManager.java
===================================================================
--- trunk/src/main/org/jboss/seam/init/DependencyManager.java 2008-08-25 10:30:32 UTC (rev 8795)
+++ trunk/src/main/org/jboss/seam/…
[View More]init/DependencyManager.java 2008-08-25 10:50:39 UTC (rev 8796)
@@ -136,7 +136,11 @@
try
{
descriptor.getComponentClass().getClassLoader().loadClass(className);
- }
+ }
+ catch (NoClassDefFoundError e)
+ {
+ return false;
+ }
catch (Exception e)
{
return false;
[View Less]
16 years, 6 months
Seam SVN: r8795 - trunk/examples/excel/view.
by seam-commits@lists.jboss.org
Author: nickarls
Date: 2008-08-25 06:30:32 -0400 (Mon, 25 Aug 2008)
New Revision: 8795
Modified:
trunk/examples/excel/view/csv.xhtml
trunk/examples/excel/view/home.xhtml
trunk/examples/excel/view/jxl.xhtml
Log:
Fixes to excel example as reported by JB in 3306 and 3307. Cleared with PM.
Modified: trunk/examples/excel/view/csv.xhtml
===================================================================
--- trunk/examples/excel/view/csv.xhtml 2008-08-24 10:56:24 UTC (rev 8794)
+++ trunk/…
[View More]examples/excel/view/csv.xhtml 2008-08-25 10:30:32 UTC (rev 8795)
@@ -3,7 +3,7 @@
<e:worksheet name="People" value="#{excelTest.people}" var="person">
<e:column>
<f:facet name="header">
- <e:cell value="Name" />
+ <e:cell value="First name" />
</f:facet>
<e:cell value="#{person.name}" forceType="text" />
</e:column>
Modified: trunk/examples/excel/view/home.xhtml
===================================================================
--- trunk/examples/excel/view/home.xhtml 2008-08-24 10:56:24 UTC (rev 8794)
+++ trunk/examples/excel/view/home.xhtml 2008-08-25 10:30:32 UTC (rev 8795)
@@ -25,7 +25,7 @@
</h:outputLink>
<br />
- <h:outputLink value="jxl.seam">
+ <h:outputLink value="csv.seam">
<h:outputText>Export as comma separated file</h:outputText>
</h:outputLink>
<br />
@@ -41,11 +41,21 @@
<rich:dataTable value="#{excelTest.result}" var="person"
id="excelTable" columnClasses="left, right">
<rich:column>
- <f:facet name="header">Name</f:facet>
- <h:outputText value="#{person.name} #{person.lastName}"/>
+ <f:facet name="header">
+ <h:outputText value="First name"/>
+ </f:facet>
+ <h:outputText value="#{person.name}"/>
</rich:column>
<rich:column>
- <f:facet name="header">Age</f:facet>
+ <f:facet name="header">
+ <h:outputText value="Last name"/>
+ </f:facet>
+ <h:outputText value="#{person.lastName}"/>
+ </rich:column>
+ <rich:column>
+ <f:facet name="header">
+ <h:outputText value="Age"/>
+ </f:facet>
<h:outputText value="#{person.age}"/>
</rich:column>
</rich:dataTable>
Modified: trunk/examples/excel/view/jxl.xhtml
===================================================================
--- trunk/examples/excel/view/jxl.xhtml 2008-08-24 10:56:24 UTC (rev 8794)
+++ trunk/examples/excel/view/jxl.xhtml 2008-08-25 10:30:32 UTC (rev 8795)
@@ -12,7 +12,7 @@
<e:worksheet name="People" value="#{excelTest.people}" var="person">
<e:column>
<f:facet name="header">
- <e:cell value="Name" />
+ <e:cell value="First name" />
</f:facet>
<e:cell value="#{person.name}" forceType="text" />
</e:column>
[View Less]
16 years, 6 months
Seam SVN: r8794 - trunk/src/main/org/jboss/seam/init.
by seam-commits@lists.jboss.org
Author: pete.muir(a)jboss.org
Date: 2008-08-24 06:56:24 -0400 (Sun, 24 Aug 2008)
New Revision: 8794
Modified:
trunk/src/main/org/jboss/seam/init/DependencyManager.java
Log:
Revert r8769
Modified: trunk/src/main/org/jboss/seam/init/DependencyManager.java
===================================================================
--- trunk/src/main/org/jboss/seam/init/DependencyManager.java 2008-08-23 00:54:56 UTC (rev 8793)
+++ trunk/src/main/org/jboss/seam/init/DependencyManager.java 2008-08-24 10:…
[View More]56:24 UTC (rev 8794)
@@ -7,9 +7,6 @@
import java.util.Set;
import java.util.TreeSet;
-import org.jboss.seam.log.LogProvider;
-import org.jboss.seam.log.Logging;
-
/**
* Evaluates component dependencies to determine which
* components are installed.
@@ -21,9 +18,7 @@
{
private Map<String, Set<ComponentDescriptor>> componentDescriptors;
private Set<ComponentDescriptor> currentTestSet;
- private Set<ComponentDescriptor> installedSet;
-
- private final LogProvider log = Logging.getLogProvider(DependencyManager.class);
+ private Set<ComponentDescriptor> installedSet;
public DependencyManager(Map<String, Set<ComponentDescriptor>> componentDescriptors)
{
@@ -146,12 +141,6 @@
{
return false;
}
- catch (NoClassDefFoundError e)
- {
- log.error("Error while checking dependencies for component class " +
- descriptor.getComponentClass().getName(), e);
- throw e;
- }
}
return true;
[View Less]
16 years, 6 months
Seam SVN: r8793 - tags.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-08-22 20:54:56 -0400 (Fri, 22 Aug 2008)
New Revision: 8793
Added:
tags/JBoss_Seam_2_1_0_BETA1/
Log:
create JBoss_Seam_2_1_0_BETA1 tag
Copied: tags/JBoss_Seam_2_1_0_BETA1 (from rev 8792, trunk)
16 years, 6 months
Seam SVN: r8792 - trunk/build.
by seam-commits@lists.jboss.org
Author: jbalunas(a)redhat.com
Date: 2008-08-22 20:16:38 -0400 (Fri, 22 Aug 2008)
New Revision: 8792
Modified:
trunk/build/root.pom.xml
Log:
prep for 2.1.0.BETA1 tag
Modified: trunk/build/root.pom.xml
===================================================================
--- trunk/build/root.pom.xml 2008-08-22 23:31:03 UTC (rev 8791)
+++ trunk/build/root.pom.xml 2008-08-23 00:16:38 UTC (rev 8792)
@@ -15,12 +15,14 @@
<name>JBoss Repository</name>
<url>http://…
[View More]repository.jboss.org/maven2</url>
</pluginRepository>
+ <!-- commented out for 2.1.BETA1 tag
<pluginRepository>
<snapshots />
<id>snapshots.jboss.org</id>
<name>JBoss Snapshot Repository</name>
<url>http://snapshots.jboss.org/maven2</url>
</pluginRepository>
+ -->
</pluginRepositories>
<repositories>
<repository>
@@ -28,12 +30,14 @@
<name>JBoss Repository</name>
<url>http://repository.jboss.org/maven2</url>
</repository>
+ <!-- commented out for 2.1.BETA1 tag
<repository>
<snapshots />
<id>snapshots.jboss.org</id>
<name>JBoss Snapshot Repository</name>
<url>http://snapshots.jboss.org/maven2</url>
</repository>
+ -->
</repositories>
<!-- Externalize some version numbers here -->
[View Less]
16 years, 6 months