Seam SVN: r15319 - branches/community/Seam_2_3/examples/ui/ui-web/src/main/webapp.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-30 07:53:30 -0400 (Tue, 30 Oct 2012)
New Revision: 15319
Modified:
branches/community/Seam_2_3/examples/ui/ui-web/src/main/webapp/selectItems.xhtml
Log:
back to s:convert* tags from f:converter
Modified: branches/community/Seam_2_3/examples/ui/ui-web/src/main/webapp/selectItems.xhtml
===================================================================
--- branches/community/Seam_2_3/examples/ui/ui-web/src/main/webapp/selectItems.xhtml 2012-10-30 11:45:09 UTC (rev 15318)
+++ branches/community/Seam_2_3/examples/ui/ui-web/src/main/webapp/selectItems.xhtml 2012-10-30 11:53:30 UTC (rev 15319)
@@ -27,8 +27,7 @@
<ui:define name="label">Title</ui:define>
<h:selectOneMenu value="#{person.honorific}">
<s:selectItems value="#{honorifics}" var="honorific" label="#{honorific.label}" noSelectionLabel="Please select" />
- <f:converter converterId="org.jboss.seam.ui.EnumConverter" />
-<!-- look above how JSF 2 changed, no need to create custom Tag <s:convertEnum /> -->
+ <s:convertEnum />
</h:selectOneMenu>
</s:decorate>
@@ -42,8 +41,7 @@
<ui:define name="label">Continent of Birth</ui:define>
<h:selectOneMenu value="#{personHome.instance.continent}" required="true" id="continent">
<s:selectItems value="#{continents.resultList}" var="continent" label="#{continent.name}" noSelectionLabel="Please Select..."/>
- <f:converter converterId="org.jboss.seam.ui.EntityConverter" />
-<!-- <s:convertEntity /> -->
+ <s:convertEntity />
</h:selectOneMenu>
</s:decorate>
@@ -51,8 +49,7 @@
<ui:define name="label">Country of Birth</ui:define>
<h:selectOneRadio value="#{personHome.instance.country}" required="true" disabled="#{empty person.continent}">
<s:selectItems value="#{personHome.instance.continent.countries}" var="country" label="#{country.name} (#{country.continent.name})" noSelectionLabel="Please Select..." hideNoSelectionLabel="true" converter="org.jboss.seam.ui.EntityConverter"/>
- <f:converter converterId="org.jboss.seam.ui.EntityConverter" />
-<!-- <s:convertEntity /> -->
+ <s:convertEntity />
</h:selectOneRadio>
</s:decorate>
@@ -60,8 +57,7 @@
<ui:define name="label">Roles</ui:define>
<h:selectManyCheckbox value="#{person.roles}" required="true" collectionType="java.util.ArrayList">
<s:selectItems value="#{roles}" var="role" label="#{role.name}"/>
- <f:converter converterId="org.jboss.seam.ui.EnumConverter" />
-<!-- <s:convertEnum /> -->
+ <s:convertEnum />
</h:selectManyCheckbox>
</s:decorate>
@@ -87,8 +83,7 @@
<ui:define name="description">A colour is an entity</ui:define>
<h:selectManyListbox value="#{personHome.instance.favouriteColours}" collectionType="java.util.ArrayList">
<s:selectItems value="#{colours.resultList}" var="colour" label="#{colour.name}"/>
- <f:converter converterId="org.jboss.seam.ui.EntityConverter" />
-<!-- <s:convertEntity /> -->
+- <s:convertEntity />
</h:selectManyListbox>
</s:decorate>
@@ -97,8 +92,7 @@
<ui:define name="description">A book has a composite key</ui:define>
<h:selectOneListbox value="#{person.favouriteBook}" >
<s:selectItems value="#{books.resultList}" var="book" label="#{book.name} by #{book.author} (#{book.nationality})"/>
- <f:converter converterId="org.jboss.seam.ui.EntityConverter" />
-<!-- <s:convertEntity /> -->
+ <s:convertEntity />
</h:selectOneListbox>
</s:decorate>
@@ -116,4 +110,4 @@
</h:form>
</ui:define>
-</ui:composition>
\ No newline at end of file
+</ui:composition>
12 years, 3 months
Seam SVN: r15318 - in branches/community/Seam_2_3/jboss-seam-ui/src/main: resources/META-INF/cdk/attributes and 1 other directory.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-30 07:45:09 -0400 (Tue, 30 Oct 2012)
New Revision: 15318
Modified:
branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UIDecorate.java
branches/community/Seam_2_3/jboss-seam-ui/src/main/resources/META-INF/cdk/attributes/decorate.xml
Log:
JBSEAM-5054 fixed wrong default value for Seam UI decorate tag's attribute enclose
Modified: branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UIDecorate.java
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UIDecorate.java 2012-10-30 11:43:00 UTC (rev 15317)
+++ branches/community/Seam_2_3/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UIDecorate.java 2012-10-30 11:45:09 UTC (rev 15318)
@@ -92,7 +92,7 @@
public abstract void setStyle(String style);
- @Attribute
+ @Attribute(defaultValue="true")
public abstract boolean isEnclose();
public abstract void setEnclose(boolean enclose);
Modified: branches/community/Seam_2_3/jboss-seam-ui/src/main/resources/META-INF/cdk/attributes/decorate.xml
===================================================================
--- branches/community/Seam_2_3/jboss-seam-ui/src/main/resources/META-INF/cdk/attributes/decorate.xml 2012-10-30 11:43:00 UTC (rev 15317)
+++ branches/community/Seam_2_3/jboss-seam-ui/src/main/resources/META-INF/cdk/attributes/decorate.xml 2012-10-30 11:45:09 UTC (rev 15318)
@@ -26,7 +26,6 @@
enclosed by the element specified with the "element"
attribute. By default this is a div element.
</description>
- <default-value>true</default-value>
</property>
<property>
@@ -36,4 +35,4 @@
By default, the template is enclosed with a div element.</description>
<default-value>"div"</default-value>
</property>
-</cdk:properties>
\ No newline at end of file
+</cdk:properties>
12 years, 3 months
Seam SVN: r15317 - in branches/enterprise/WFK-2_1/distribution: src/main/assembly and 1 other directory.
by seam-commits@lists.jboss.org
Author: vdedik
Date: 2012-10-30 07:43:00 -0400 (Tue, 30 Oct 2012)
New Revision: 15317
Modified:
branches/enterprise/WFK-2_1/distribution/get-arquillian-libs.xml
branches/enterprise/WFK-2_1/distribution/src/main/assembly/readme.txt
Log:
bugzilla 867390 - Seam Distribution has got get-arquillian-libs.xml wrongly placed
Modified: branches/enterprise/WFK-2_1/distribution/get-arquillian-libs.xml
===================================================================
--- branches/enterprise/WFK-2_1/distribution/get-arquillian-libs.xml 2012-10-30 11:35:09 UTC (rev 15316)
+++ branches/enterprise/WFK-2_1/distribution/get-arquillian-libs.xml 2012-10-30 11:43:00 UTC (rev 15317)
@@ -1,7 +1,8 @@
<project xmlns:aether="antlib:org.sonatype.aether.ant" default="copyarq">
<taskdef uri="antlib:org.sonatype.aether.ant" resource="org/sonatype/aether/ant/antlib.xml">
<classpath>
- <fileset dir="../build/lib" includes="aether-ant-tasks-*.jar" />
+ <fileset dir="../build/lib" includes="aether-ant-tasks-*.jar" erroronmissingdir="false"/>
+ <fileset dir="build/lib" includes="aether-ant-tasks-*.jar" erroronmissingdir="false"/>
</classpath>
</taskdef>
Modified: branches/enterprise/WFK-2_1/distribution/src/main/assembly/readme.txt
===================================================================
--- branches/enterprise/WFK-2_1/distribution/src/main/assembly/readme.txt 2012-10-30 11:35:09 UTC (rev 15316)
+++ branches/enterprise/WFK-2_1/distribution/src/main/assembly/readme.txt 2012-10-30 11:43:00 UTC (rev 15317)
@@ -26,6 +26,13 @@
6. Register an account, search for hotels, book a room...
+Before using seam-gen
+---------------------
+
+If you want to use seam-gen, you need to run this command in the root of the distribution first:
+
+ ant -f get-arquillian-libs.xml -Dtest.lib.dir=lib/test
+
Learn more
----------
12 years, 3 months
Seam SVN: r15316 - in branches/enterprise/WFK-2_1/jboss-seam-ui/src/main: resources/META-INF/cdk/attributes and 1 other directory.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-30 07:35:09 -0400 (Tue, 30 Oct 2012)
New Revision: 15316
Modified:
branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UIDecorate.java
branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/resources/META-INF/cdk/attributes/decorate.xml
Log:
bz 871382 Seam UI tag decorate has got wrong default value for enclose attribute
Modified: branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UIDecorate.java
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UIDecorate.java 2012-10-30 11:34:55 UTC (rev 15315)
+++ branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/java/org/jboss/seam/ui/component/UIDecorate.java 2012-10-30 11:35:09 UTC (rev 15316)
@@ -92,7 +92,7 @@
public abstract void setStyle(String style);
- @Attribute
+ @Attribute(defaultValue="true")
public abstract boolean isEnclose();
public abstract void setEnclose(boolean enclose);
Modified: branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/resources/META-INF/cdk/attributes/decorate.xml
===================================================================
--- branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/resources/META-INF/cdk/attributes/decorate.xml 2012-10-30 11:34:55 UTC (rev 15315)
+++ branches/enterprise/WFK-2_1/jboss-seam-ui/src/main/resources/META-INF/cdk/attributes/decorate.xml 2012-10-30 11:35:09 UTC (rev 15316)
@@ -20,13 +20,12 @@
</property>
<property>
- <property-name>enclose</property-name>
- <property-class>boolean</property-class>
<description>if true, the template used to decorate the input field is
enclosed by the element specified with the "element"
attribute. By default this is a div element.
</description>
- <default-value>true</default-value>
+ <property-name>enclose</property-name>
+ <property-class>boolean</property-class>
</property>
<property>
12 years, 3 months
Seam SVN: r15314 - in branches/enterprise/WFK-2_1: examples/blog/blog-tests and 22 other directories.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-24 08:17:52 -0400 (Wed, 24 Oct 2012)
New Revision: 15314
Modified:
branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml
branches/enterprise/WFK-2_1/examples/blog/blog-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/excel/excel-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/itext/itext-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/mail/mail-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/messages/messages-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/pom.xml
branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/registration/registration-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/src/test/resources-integration/arquillian.xml
branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml
branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources-jbossas-7/arquillian.xml
Log:
bz 867050 removed arquillian managed profile and local target for unpacked jbossAS
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-tests/pom.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -142,14 +142,6 @@
<value>jbossas-managed-7</value>
</property>
</activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
</profile>
<profile>
Modified: branches/enterprise/WFK-2_1/examples/blog/blog-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/blog/blog-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/blog/blog-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/contactlist/contactlist-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
</arquillian>
\ No newline at end of file
Modified: branches/enterprise/WFK-2_1/examples/excel/excel-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/excel/excel-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/excel/excel-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/hibernate/hibernate-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/itext/itext-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/itext/itext-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/itext/itext-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/jpa/jpa-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/mail/mail-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/mail/mail-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/mail/mail-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/messages/messages-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/messages/messages-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/messages/messages-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/nestedbooking/nestedbooking-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/pom.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/pom.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -403,40 +403,9 @@
<scope>test</scope>
</dependency>
</dependencies>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack-as7</id>
- <phase>process-test-classes</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.jboss.as</groupId>
- <artifactId>jboss-as-dist</artifactId>
- <version>${version.jbossas7}</version>
- <type>zip</type>
- <overWrite>false</overWrite>
- <outputDirectory>${project.build.directory}</outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
</profile>
- <profile>
+ <profile>
<id>arq-jbossas-7-remote</id>
<activation>
<property>
Modified: branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/registration/registration-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/registration/registration-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/registration/registration-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/restbay/restbay-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/pom.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -118,14 +118,6 @@
<value>jbossas-managed-7</value>
</property>
</activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
</profile>
<profile>
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/src/test/resources-integration/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/src/test/resources-integration/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/examples/tasks/tasks-tests/src/test/resources-integration/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
</configuration>
</container>
Modified: branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/seam-integration-tests/pom.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -278,37 +278,8 @@
<directory>src/test/resources-jbossas-7</directory>
</testResource>
</testResources>
-
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>unpack-as7</id>
- <phase>process-test-classes</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>org.jboss.as</groupId>
- <artifactId>jboss-as-dist</artifactId>
- <version>${version.jbossas7}</version>
- <type>zip</type>
- <overWrite>false</overWrite>
- <outputDirectory>${project.build.directory}</outputDirectory>
- </artifactItem>
- </artifactItems>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
</build>
</profile>
-
<profile>
<id>arq-jbossas-7-remote</id>
<activation>
Modified: branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources-jbossas-7/arquillian.xml
===================================================================
--- branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources-jbossas-7/arquillian.xml 2012-10-24 08:04:39 UTC (rev 15313)
+++ branches/enterprise/WFK-2_1/seam-integration-tests/src/test/resources-jbossas-7/arquillian.xml 2012-10-24 12:17:52 UTC (rev 15314)
@@ -10,7 +10,6 @@
<container qualifier="jboss" default="true">
<configuration>
<property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512m ${jacoco.agent}</property>
- <property name="jbossHome">target/jboss-as-${version.jbossas7}</property>
<property name="serverConfig">standalone-full.xml</property>
</configuration>
</container>
12 years, 3 months
Seam SVN: r15313 - tags.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-24 04:04:39 -0400 (Wed, 24 Oct 2012)
New Revision: 15313
Added:
tags/JBPAPP_5_2_0_ER3/
Log:
created EAP 5.2.0.ER3 aka ER4 tag for Seam
12 years, 3 months
Seam SVN: r15312 - branches/enterprise/WFK-2_1/examples.
by seam-commits@lists.jboss.org
Author: manaRH
Date: 2012-10-23 08:21:25 -0400 (Tue, 23 Oct 2012)
New Revision: 15312
Modified:
branches/enterprise/WFK-2_1/examples/readme.txt
Log:
bz 866924 customizing content of examples readme for WFK
Modified: branches/enterprise/WFK-2_1/examples/readme.txt
===================================================================
--- branches/enterprise/WFK-2_1/examples/readme.txt 2012-10-19 14:04:00 UTC (rev 15311)
+++ branches/enterprise/WFK-2_1/examples/readme.txt 2012-10-23 12:21:25 UTC (rev 15312)
@@ -1,48 +1,37 @@
Seam Example EE6 Applications
-=========================
+=============================
This directory contains the Seam example applications, which have all been
-tested on the latest release of JBoss AS 7.1.1. Consult the readme.txt file in each of
+tested on the latest release of JBoss EAP 6.0. Consult the readme.txt file in each of
the examples to see details.
-Below is a list of examples with a brief description. The name of the example,
-refered to later as ${example.name}, is equivalent to the name of the folder
-unless the folder name begins with seam, in which case the prefix "seam" is
-omitted (i.e. seamspace -> space).
-
-----------------------------------------------------------------------
-
-booking/ The Seam Booking demo application for EJB 3.
-
-
-
Deploying and Testing an Example Application
============================================
These are general instructions for deploying Seam examples. Take a look at the
readme.txt in the example to see if there are any specific instructions.
-How to Build and Deploy an Example on JBoss AS
-----------------------------------------------
+How to Build and Deploy an Example on JBoss EAP 6
+-------------------------------------------------
-1. Download and unzip JBoss AS 7.1.1 from:
+1. Download and unzip JBoss EAP 6
- http://jboss.org/jbossas/downloads
+ https://access.redhat.com/downloads
-2. Make sure you have an up to date version of Seam:
+2. Make sure you have set up WFK and EAP 6 Maven repositories.
+ More details how to do that, you can read in JBoss Web Framework Kit documentation book called Maven
+ Repository Guide.
- http://seamframework.org/Download
-
3. Build the example by running the following command from the Seam
"examples/${example.name}" directory:
- mvn clean install
+ mvn clean install
NOTE: Firstly, this command will also run unit tests on that example. To skip the tests add
-Dmaven.test.skip=true to the maven call. Secondly, there is an option to deploy an "exploded"
archive. For this purpose, use -Pexploded maven profile.
-4. Deploy the example by calling g JBOSS_HOME property and running the
- following command from the Seam "examples/${example.name}/{example.name}-ear" directory:
+4. Deploy the example by running the following command from "examples/${example.name}/{example.name}-ear" directory if
+that is EAR packaged type example or from "examples/${example.name}/{example.name}-war" if that is WAR packaged type example:
mvn jboss-as:deploy
@@ -66,25 +55,35 @@
The WAR examples are:
spring, jpa, hibernate, groovybooking
-NOTE: The examples use the H2 database embedded in JBoss AS
+NOTE: The examples use the H2 default database embedded in JBoss EAP 6
Running The Integration Tests
-------------------------
+-----------------------------
Integration tests are executed during building of the application using:
- mvn clean install -Darquillian=jbossas-{managed,remote}-7
+ mvn clean install -Darquillian=jbossas-remote-7
Running integration test(s) in Eclipse
-------------------------
+--------------------------------------
+Right click on the project and select Properties. Select the Maven property sheet and in the first form field,
+enter jbossas-remote-7 profile.
+Click OK and accept the project changes. Before we execute tests, make sure that Eclipse has properly processed all
+the resource files by running a full build on the project by selecting Clean from Project menu.
+Now you are ready to execute tests. Right click on a test class and select Run As... > JUnit Test
+
Detail guide is at http://docs.jboss.org/arquillian/reference/1.0.0.Alpha1/en-US/html_single...
Debugging of integration test(s) in Eclipse
------------------------
-http://docs.jboss.org/arquillian/reference/1.0.0.Alpha1/en-US/html_single/#d0e974
+-------------------------------------------
+If you set a break point and execute the test in debug mode using a remote container, your break point won't be hit.
+That's because when you debug an in-container test, you're actually debugging the container.
+The test runner and the test are executing in different JVMs. Therefore, to setup debugging,
+ you must first attach the IDE debugger to the container, then execute the test in debug mode (i.e., debug as test).
+That puts the debugger on both sides of the fence, so to speak, and allows the break point to be discovered.
Running functional tests on an example
@@ -93,7 +92,7 @@
The following steps describe executing of functional tests in general. If particular example
does not contain certain profile, it is simply ignored during the maven call.
-* Start JBoss AS 7
+* Start JBoss EAP 6 Server
* Set JBOSS_HOME environment property, respectively
To run functional tests:
12 years, 3 months
Seam SVN: r15311 - in branches/enterprise/WFK-2_1/examples: groovybooking/groovybooking-web/src/main/webapp and 6 other directories.
by seam-commits@lists.jboss.org
Author: maschmid
Date: 2012-10-19 10:04:00 -0400 (Fri, 19 Oct 2012)
New Revision: 15311
Modified:
branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/conversations.xhtml
branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/webapp/conversations.xhtml
branches/enterprise/WFK-2_1/examples/quartz/quartz-web/src/main/webapp/search.xhtml
branches/enterprise/WFK-2_1/examples/seambay/seambay-web/src/main/webapp/buy.xhtml
branches/enterprise/WFK-2_1/examples/seambay/seambay-web/src/main/webapp/search.xhtml
branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/src/main/webapp/disc.xhtml
branches/enterprise/WFK-2_1/examples/seampay/seampay-web/src/main/webapp/search.xhtml
branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/src/main/webapp/imagepermissiondetail.xhtml
Log:
examples, return s:converters
Modified: branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/conversations.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/conversations.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/booking/booking-web/src/main/webapp/conversations.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -21,13 +21,13 @@
</h:column>
<h:column id="column2">
<h:outputText id="EntryStartDateTime" value="#{entry.startDatetime}">
- <!--<s:convertDateTime type="time" pattern="kk:mm:ss"/>-->
- <f:convertDateTime type="time" pattern="kk:mm:ss"/>
+ <s:convertDateTime type="time" pattern="kk:mm:ss"/>
+ <!-- <f:convertDateTime type="time" pattern="kk:mm:ss"/> -->
</h:outputText>
-
<h:outputText id="EntryLastDateTime" value="#{entry.lastDatetime}">
- <!--<s:convertDateTime type="time" pattern="hh:mm"/>-->
- <f:convertDateTime type="time" pattern="kk:mm:ss"/>
+ <s:convertDateTime type="time" pattern="hh:mm"/>
+ <!-- <f:convertDateTime type="time" pattern="kk:mm:ss"/> -->
</h:outputText>
</h:column>
</h:dataTable>
Modified: branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -21,13 +21,13 @@
</h:column>
<h:column id="column2">
<h:outputText id="EntryStartDateTime" value="#{entry.startDatetime}">
- <!--<s:convertDateTime type="time" pattern="kk:mm:ss"/>-->
- <f:convertDateTime type="time" pattern="kk:mm:ss"/>
+ <s:convertDateTime type="time" pattern="kk:mm:ss"/>
+ <!-- <f:convertDateTime type="time" pattern="kk:mm:ss"/> -->
</h:outputText>
-
<h:outputText id="EntryLastDateTime" value="#{entry.lastDatetime}">
- <!--<s:convertDateTime type="time" pattern="hh:mm"/>-->
- <f:convertDateTime type="time" pattern="kk:mm:ss"/>
+ <s:convertDateTime type="time" pattern="hh:mm"/>
+ <!-- <f:convertDateTime type="time" pattern="kk:mm:ss"/> -->
</h:outputText>
</h:column>
</h:dataTable>
Modified: branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/webapp/conversations.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/webapp/conversations.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/jee6/jee6-web/src/main/webapp/conversations.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -21,12 +21,10 @@
</h:column>
<h:column id="column2">
<h:outputText id="EntryStartDateTime" value="#{entry.startDatetime}">
- <!--<s:convertDateTime type="time" pattern="kk:mm:ss"/>-->
<f:convertDateTime type="time" pattern="kk:mm:ss"/>
</h:outputText>
-
<h:outputText id="EntryLastDateTime" value="#{entry.lastDatetime}">
- <!--<s:convertDateTime type="time" pattern="hh:mm"/>-->
<f:convertDateTime type="time" pattern="kk:mm:ss"/>
</h:outputText>
</h:column>
Modified: branches/enterprise/WFK-2_1/examples/quartz/quartz-web/src/main/webapp/search.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/quartz/quartz-web/src/main/webapp/search.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/quartz/quartz-web/src/main/webapp/search.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -153,8 +153,8 @@
<h:selectOneRadio id="radioList"
layout="lineDirection"
value="#{newPayment.paymentFrequency}">
- <f:converter converterId="org.jboss.seam.ui.EnumConverter" />
- <!-- <s:convertEnum />-->
+<!-- <f:converter converterId="org.jboss.seam.ui.EnumConverter" />-->
+ <s:convertEnum />
<s:enumItem enumValue="ONCE" label="Only Once" />
<s:enumItem enumValue="EVERY_MINUTE" label="Every Minute (testing)" />
<s:enumItem enumValue="HOURLY" label="Every Hour (testing)" />
Modified: branches/enterprise/WFK-2_1/examples/seambay/seambay-web/src/main/webapp/buy.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/seambay-web/src/main/webapp/buy.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-web/src/main/webapp/buy.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -34,8 +34,7 @@
<h:inputText id="searchTerm" value="#{auctionSearch.searchTerm}" styleClass="searchTerm"/>
<h:selectOneMenu id="selectedCat" value="#{auctionSearch.searchCategory}">
<s:selectItems value="#{categories}" var="cat" label="#{cat.name}" noSelectionLabel="All Categories"/>
- <!--<s:convertEntity />-->
- <f:converter converterId="org.jboss.seam.ui.EntityConverter" />
+ <s:convertEntity />
</h:selectOneMenu>
<br/>
Modified: branches/enterprise/WFK-2_1/examples/seambay/seambay-web/src/main/webapp/search.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seambay/seambay-web/src/main/webapp/search.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/seambay/seambay-web/src/main/webapp/search.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -25,8 +25,7 @@
<h:inputText id="searchTerm" value="#{auctionSearch.searchTerm}" styleClass="searchTerm"/>
<h:selectOneMenu id="selectedCat" value="#{auctionSearch.searchCategory}">
<s:selectItems value="#{categories}" var="cat" label="#{cat.name}" noSelectionLabel="All Categories"/>
- <!--<s:convertEntity />-->
- <f:converter converterId="org.jboss.seam.ui.EntityConverter" />
+ <s:convertEntity />
</h:selectOneMenu>
<h:commandButton action="#{auctionSearch.queryAuctions}" value="Search"/>
Modified: branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/src/main/webapp/disc.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/src/main/webapp/disc.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/seamdiscs/seamdiscs-web/src/main/webapp/disc.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -18,8 +18,7 @@
<tr:inputNumberSpinbox label="Release Date" value="#{disc.release}" minimum="1900" maximum="2100" stepSize="1" readOnly="#{not identity.loggedIn}" columns="4"/>
<tr:selectOneChoice value="#{disc.artist}" label="Artist" required="true" readOnly="#{not identity.loggedIn}">
<s:selectItems value="#{allArtists.resultList}" var="artist" label="#{artist.name}" noSelectionLabel="Please Select..." hideNoSelectionLabel="true" />
- <!--<s:convertEntity />-->
- <f:converter converterId="org.jboss.seam.ui.EntityConverter" />
+ <s:convertEntity />
</tr:selectOneChoice>
<tr:panelLabelAndMessage label="Details">
<tr:inputText simple="true" value="#{disc.description}" rendered="#{identity.loggedIn}" rows="4" columns="60" id="description">
Modified: branches/enterprise/WFK-2_1/examples/seampay/seampay-web/src/main/webapp/search.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seampay/seampay-web/src/main/webapp/search.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/seampay/seampay-web/src/main/webapp/search.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -131,8 +131,7 @@
<h:selectOneRadio id="radioList"
layout="lineDirection"
value="#{newPayment.paymentFrequency}">
- <!--<s:convertEnum /> -->
- <f:converter converterId="org.jboss.seam.ui.EnumConverter" />
+ <s:convertEnum />
<s:enumItem id="once" enumValue="ONCE" label="Only Once" />
<s:enumItem id="everyMinute" enumValue="EVERY_MINUTE" label="Every Minute (testing)" />
<s:enumItem id="hourly" enumValue="HOURLY" label="Every Hour (testing)" />
Modified: branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/src/main/webapp/imagepermissiondetail.xhtml
===================================================================
--- branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/src/main/webapp/imagepermissiondetail.xhtml 2012-10-19 14:03:44 UTC (rev 15310)
+++ branches/enterprise/WFK-2_1/examples/seamspace/seamspace-web/src/main/webapp/imagepermissiondetail.xhtml 2012-10-19 14:04:00 UTC (rev 15311)
@@ -54,8 +54,7 @@
<div class="selectMany">
<h:selectManyListbox id="friends" value="#{imagePermission.selectedFriends}" styleClass="roles" size="6">
<s:selectItems value="#{imagePermission.availableFriends}" var="friend" label="#{friend.memberName}"/>
- <!--<s:convertEntity />-->
- <f:converter converterId="org.jboss.seam.ui.EntityConverter" />
+ <s:convertEntity />
</h:selectManyListbox>
</div>
<div class="validationError"><h:message for="friends"/></div>
12 years, 3 months