Author: manaRH
Date: 2012-05-23 10:45:56 -0400 (Wed, 23 May 2012)
New Revision: 14732

Modified:
   
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/src/main/webapp/viewContact.xhtml
   
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/accept.xhtml
   
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/process.xhtml
   
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/ship.xhtml
   
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/showorders.xhtml
   
branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
   
branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/src/main/webapp/conversations.xhtml
   
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/src/main/webapp/conversations.xhtml
   
branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/src/main/webapp/conversations.xhtml
   
branches/community/Seam_2_3/examples-ee6/messages/messages-web/src/main/webapp/messages.jsp
   
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/src/main/webapp/conversations.xhtml
   
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
   
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/src/main/webapp/conversations.xhtml
   
branches/community/Seam_2_3/examples-ee6/openid/openid-web/src/main/webapp/main.xhtml
   
branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/src/main/webapp/search.xhtml
   
branches/community/Seam_2_3/examples-ee6/spring/spring-web/src/main/webapp/conversations.xhtml
   
branches/community/Seam_2_3/examples-ee6/todo/todo-web/src/main/webapp/todo.jsp
Log:
JBSEAM-4955 forgot to replace s:convertDateTime in rest of examples

Modified: 
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/src/main/webapp/viewContact.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/src/main/webapp/viewContact.xhtml
      2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/src/main/webapp/viewContact.xhtml
      2012-05-23 14:45:56 UTC (rev 14732)
@@ -86,7 +86,8 @@
         <h:column>
           <f:facet name="header">Posted</f:facet>
           <h:outputText value="#{c.created}">
-            <s:convertDateTime type="both"/>
+<!--            <s:convertDateTime type="both"/>-->
+            <f:convertDateTime type="both" />
           </h:outputText>
         </h:column>
         <h:column>


Property changes on: 
branches/community/Seam_2_3/examples-ee6/contactlist/contactlist-web/src/main/webapp/viewContact.xhtml
___________________________________________________________________
Added: svn:mergeinfo
   + 
/tags/JBoss_Seam_2_3_0_Beta2/examples-ee6/contactlist/contactlist-web/src/main/webapp/viewContact.xhtml:14726-14730

Modified: 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/accept.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/accept.xhtml
   2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/accept.xhtml
   2012-05-23 14:45:56 UTC (rev 14732)
@@ -29,7 +29,7 @@
                     
                     <h:outputText id="OrderDateText" value="Order date:" />
                     <h:outputText id="OrderDateValue" 
value="#{order.orderDate}">
-                        <s:convertDateTime type="both" dateStyle="full"/> 
+                        <f:convertDateTime type="both" dateStyle="full"/> 
                     </h:outputText>
                     
                     <h:outputText id="NetAmountText" value="Net Amount:" />

Modified: 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/process.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/process.xhtml
  2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/process.xhtml
  2012-05-23 14:45:56 UTC (rev 14732)
@@ -41,7 +41,7 @@
                 <h:column id="column2">
                     <f:facet id="ProcessStartFacet" name="header">Process 
Start</f:facet>
                     <h:outputText id="ProcessStartTime" 
value="#{process.start}">
-                        <s:convertDateTime type="both"/>
+                        <f:convertDateTime type="both"/>
                     </h:outputText>
                 </h:column>
                 <h:column id="column3">
@@ -51,7 +51,7 @@
                 <h:column id="column4">
                     <f:facet id="CurrentNodeEnterFacet" name="header">Current 
Node Enter</f:facet>
                     <h:outputText id="CurrentNodeEnterTime" 
value="#{process.rootToken.nodeEnter}">
-                        <s:convertDateTime type="both"/>
+                        <f:convertDateTime type="both"/>
                     </h:outputText>
                 </h:column>
             </h:dataTable>

Modified: 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/ship.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/ship.xhtml
     2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/admin/ship.xhtml
     2012-05-23 14:45:56 UTC (rev 14732)
@@ -30,7 +30,7 @@
                         
                         <h:outputText id="OrderDateText" value="Order date:" />
                         <h:outputText id="OrderDateValue" 
value="#{order.orderDate}">
-                            <s:convertDateTime type="both" dateStyle="full"/> 
+                            <f:convertDateTime type="both" dateStyle="full"/> 
                         </h:outputText>
                         
                         <h:outputText id="NetAmountText" value="Net Amount:" />

Modified: 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/showorders.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/showorders.xhtml
     2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/dvdstore/dvdstore-web/src/main/webapp/showorders.xhtml
     2012-05-23 14:45:56 UTC (rev 14732)
@@ -40,7 +40,7 @@
                 <h:column id="column2">
                     <f:facet id="OrderDateFacet" name="header">Date</f:facet>
                     <h:outputText id="OrderDateValue" 
value="#{item.orderDate}">
-                        <s:convertDateTime type="both" dateStyle="full"/> 
+                        <f:convertDateTime type="both" dateStyle="full"/> 
                     </h:outputText>
                 </h:column>                        
                 <h:column id="column3">
@@ -74,7 +74,7 @@
                         
                         <h:outputText id="OrderDateText" value="Order date:" />
                         <h:outputText id="OrderDateValue" 
value="#{myorder.orderDate}">
-                            <s:convertDateTime type="both" dateStyle="full"/> 
+                            <f:convertDateTime type="both" dateStyle="full"/> 
                         </h:outputText>
                         
                         <h:outputText id="NetAmountText" value="Net Amount:" />

Modified: 
branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
        2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
        2012-05-23 14:45:56 UTC (rev 14732)
@@ -20,15 +20,15 @@
             </h:column>
             <h:column id="column2">
                 <h:outputText id="EntryStartDateTime" 
value="#{entry.startDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
                 -
                 <h:outputText id="EntryLastDateTime" 
value="#{entry.lastDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
             </h:column>
         </h:dataTable>
     </h:form>
 </div>
 
-</div>
\ No newline at end of file
+</div>

Modified: 
branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/src/main/webapp/conversations.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/src/main/webapp/conversations.xhtml
        2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/hibernate/hibernate-web/src/main/webapp/conversations.xhtml
        2012-05-23 14:45:56 UTC (rev 14732)
@@ -20,11 +20,11 @@
             </h:column>
             <h:column id="column2">
                 <h:outputText id="EntryStartDateTime" 
value="#{entry.startDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
                 -
                 <h:outputText id="EntryLastDateTime" 
value="#{entry.lastDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
             </h:column>
         </h:dataTable>
@@ -32,4 +32,4 @@
 </div>
 
 </div>
-</ui:composition>
\ No newline at end of file
+</ui:composition>

Modified: 
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/src/main/webapp/conversations.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/src/main/webapp/conversations.xhtml
  2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/icefaces/icefaces-web/src/main/webapp/conversations.xhtml
  2012-05-23 14:45:56 UTC (rev 14732)
@@ -21,11 +21,11 @@
                    </h:column>
                    <h:column id="column2">
                        <h:outputText id="EntryStartDateTime" 
value="#{entry.startDatetime}">
-                           <s:convertDateTime type="time" pattern="hh:mm"/>
+                           <f:convertDateTime type="time" pattern="hh:mm"/>
                        </h:outputText>
                        -
                        <h:outputText id="EntryLastDateTime" 
value="#{entry.lastDatetime}">
-                           <s:convertDateTime type="time" pattern="hh:mm"/>
+                           <f:convertDateTime type="time" pattern="hh:mm"/>
                        </h:outputText>
                    </h:column>
                </h:dataTable>
@@ -33,4 +33,4 @@
        </div>
        
        </div>
-</ui:composition>
\ No newline at end of file
+</ui:composition>

Modified: 
branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/src/main/webapp/conversations.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/src/main/webapp/conversations.xhtml
    2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/jpa/jpa-web/src/main/webapp/conversations.xhtml
    2012-05-23 14:45:56 UTC (rev 14732)
@@ -21,11 +21,11 @@
             </h:column>
             <h:column id="column2">
                 <h:outputText id="EntryStartDateTime" 
value="#{entry.startDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
                 -
                 <h:outputText id="EntryLastDateTime" 
value="#{entry.lastDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
             </h:column>
         </h:dataTable>
@@ -33,4 +33,4 @@
 </div>
 
 </div>
-</ui:composition>
\ No newline at end of file
+</ui:composition>

Modified: 
branches/community/Seam_2_3/examples-ee6/messages/messages-web/src/main/webapp/messages.jsp
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/messages/messages-web/src/main/webapp/messages.jsp
 2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/messages/messages-web/src/main/webapp/messages.jsp
 2012-05-23 14:45:56 UTC (rev 14732)
@@ -27,7 +27,7 @@
               <h:outputText value="Date/Time"/>
            </f:facet>
            <h:outputText id="date" value="#{msg.datetime}">
-              <s:convertDateTime type="both" dateStyle="medium" 
timeStyle="short"/>
+              <f:convertDateTime type="both" dateStyle="medium" 
timeStyle="short"/>
            </h:outputText>
         </h:column>
         <h:column>
@@ -38,4 +38,4 @@
      <div><h:outputText id="text" value="#{message.text}"/></div>
   </f:view>
  </body>
-</html>
\ No newline at end of file
+</html>

Modified: 
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/src/main/webapp/conversations.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/src/main/webapp/conversations.xhtml
 2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/metawidget/booking/booking-web/src/main/webapp/conversations.xhtml
 2012-05-23 14:45:56 UTC (rev 14732)
@@ -21,11 +21,11 @@
                    </h:column>
                    <h:column id="column2">
                        <h:outputText id="EntryStartDateTime" 
value="#{entry.startDatetime}">
-                           <s:convertDateTime type="time" pattern="hh:mm"/>
+                           <f:convertDateTime type="time" pattern="hh:mm"/>
                        </h:outputText>
                        -
                        <h:outputText id="EntryLastDateTime" 
value="#{entry.lastDatetime}">
-                           <s:convertDateTime type="time" pattern="hh:mm"/>
+                           <f:convertDateTime type="time" pattern="hh:mm"/>
                        </h:outputText>
                    </h:column>
                </h:dataTable>
@@ -33,4 +33,4 @@
        </div>
        
        </div>
-</ui:composition>
\ No newline at end of file
+</ui:composition>

Modified: 
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
     2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/metawidget/groovybooking/groovybooking-web/src/main/webapp/conversations.xhtml
     2012-05-23 14:45:56 UTC (rev 14732)
@@ -20,15 +20,15 @@
             </h:column>
             <h:column id="column2">
                 <h:outputText id="EntryStartDateTime" 
value="#{entry.startDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
                 -
                 <h:outputText id="EntryLastDateTime" 
value="#{entry.lastDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
             </h:column>
         </h:dataTable>
     </h:form>
 </div>
 
-</div>
\ No newline at end of file
+</div>

Modified: 
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/src/main/webapp/conversations.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/src/main/webapp/conversations.xhtml
        2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/nestedbooking/nestedbooking-web/src/main/webapp/conversations.xhtml
        2012-05-23 14:45:56 UTC (rev 14732)
@@ -19,15 +19,15 @@
             </h:column>
             <h:column>
                 <h:outputText value="#{entry.startDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
                 -
                 <h:outputText value="#{entry.lastDatetime}">
-                    <s:convertDateTime type="time" pattern="hh:mm"/>
+                    <f:convertDateTime type="time" pattern="hh:mm"/>
                 </h:outputText>
             </h:column>
         </h:dataTable>
     </h:form>
 </div>
 
-</div>
\ No newline at end of file
+</div>

Modified: 
branches/community/Seam_2_3/examples-ee6/openid/openid-web/src/main/webapp/main.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/openid/openid-web/src/main/webapp/main.xhtml
       2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/openid/openid-web/src/main/webapp/main.xhtml
       2012-05-23 14:45:56 UTC (rev 14732)
@@ -81,7 +81,7 @@
                     <br />
                     <b>#{post.creator}</b> --&nbsp;
                     <h:outputText value="#{post.createDate}">
-                        <s:convertDateTime dateStyle="full" type="both" />
+                        <f:convertDateTime dateStyle="full" type="both" />
                     </h:outputText>
                 </rich:panel>
             </ui:repeat>

Modified: 
branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/src/main/webapp/search.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/src/main/webapp/search.xhtml
     2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/quartz/quartz-web/src/main/webapp/search.xhtml
     2012-05-23 14:45:56 UTC (rev 14732)
@@ -122,7 +122,7 @@
                         <tr>
                             <td>Start Date:</td>
                             <td><h:inputText id="paymentStartDate" 
value="#{newPayment.paymentDate}" required="true"> 
-                                    <s:convertDateTime pattern="MM/dd/yyyy 
HH:mm"/>
+                                    <f:convertDateTime pattern="MM/dd/yyyy 
HH:mm"/>
                                 
                                 </h:inputText>
 
@@ -132,7 +132,7 @@
                         <tr>
                             <td>End Date:</td>
                             <td><h:inputText id="paymentEndDate" 
value="#{newPayment.paymentEndDate}"> 
-                                    <s:convertDateTime pattern="MM/dd/yyyy 
HH:mm"/>
+                                    <f:convertDateTime pattern="MM/dd/yyyy 
HH:mm"/>
                                 
                                 </h:inputText>
 

Modified: 
branches/community/Seam_2_3/examples-ee6/spring/spring-web/src/main/webapp/conversations.xhtml
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/spring/spring-web/src/main/webapp/conversations.xhtml
      2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/spring/spring-web/src/main/webapp/conversations.xhtml
      2012-05-23 14:45:56 UTC (rev 14732)
@@ -21,11 +21,11 @@
                    </h:column>
                    <h:column id="column2">
                        <h:outputText id="EntryStartDateTime" 
value="#{entry.startDatetime}">
-                           <s:convertDateTime type="time" pattern="hh:mm"/>
+                           <f:convertDateTime type="time" pattern="hh:mm"/>
                        </h:outputText>
                        -
                        <h:outputText id="EntryLastDateTime" 
value="#{entry.lastDatetime}">
-                           <s:convertDateTime type="time" pattern="hh:mm"/>
+                           <f:convertDateTime type="time" pattern="hh:mm"/>
                        </h:outputText>
                    </h:column>
                </h:dataTable>
@@ -33,4 +33,4 @@
        </div>
        
        </div>
-</ui:composition>
\ No newline at end of file
+</ui:composition>

Modified: 
branches/community/Seam_2_3/examples-ee6/todo/todo-web/src/main/webapp/todo.jsp
===================================================================
--- 
branches/community/Seam_2_3/examples-ee6/todo/todo-web/src/main/webapp/todo.jsp 
    2012-05-23 14:24:24 UTC (rev 14731)
+++ 
branches/community/Seam_2_3/examples-ee6/todo/todo-web/src/main/webapp/todo.jsp 
    2012-05-23 14:45:56 UTC (rev 14732)
@@ -23,7 +23,7 @@
                     <h:outputText value="Created"/>
                 </f:facet>
                 <h:outputText 
value="#{task.taskMgmtInstance.processInstance.start}">
-                    <s:convertDateTime type="date"/>
+                    <f:convertDateTime type="date"/>
                 </h:outputText>
             </h:column>
             <h:column>
@@ -37,7 +37,7 @@
                     <h:outputText value="Due Date"/>
                 </f:facet>
                 <h:inputText id="dueDate" value="#{task.dueDate}" 
style="width: 100">
-                    <s:convertDateTime type="date" dateStyle="short"/>
+                    <f:convertDateTime type="date" dateStyle="short"/>
                 </h:inputText>
             </h:column>
             <h:column>

_______________________________________________
seam-commits mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/seam-commits

Reply via email to