[seam-commits] Seam SVN: r15311 - in branches/enterprise/WFK-2_1/examples: groovybooking/groovybooking-web/src/main/webapp and 6 other directories.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Oct 19 10:04:01 EDT 2012
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>
More information about the seam-commits
mailing list