[jbpm-commits] JBoss JBPM SVN: r1831 - jbpm3/trunk/modules/console/src/main/webapp/sa.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Aug 6 03:15:57 EDT 2008


Author: alex.guizar at jboss.com
Date: 2008-08-06 03:15:57 -0400 (Wed, 06 Aug 2008)
New Revision: 1831

Modified:
   jbpm3/trunk/modules/console/src/main/webapp/sa/procins.xhtml
Log:
display local time instead of GMT time in process instance page; still have to check whether client or server time is shown: JBPM-1446

Modified: jbpm3/trunk/modules/console/src/main/webapp/sa/procins.xhtml
===================================================================
--- jbpm3/trunk/modules/console/src/main/webapp/sa/procins.xhtml	2008-08-06 07:11:15 UTC (rev 1830)
+++ jbpm3/trunk/modules/console/src/main/webapp/sa/procins.xhtml	2008-08-06 07:15:57 UTC (rev 1831)
@@ -97,7 +97,7 @@
                 <th>Start Date</th>
                 <td>
                     <h:outputText value="#{pi.start}">
-                        <f:convertDateTime type="both"/>
+                        <f:convertDateTime type="both" timeZone="#{java.util.TimeZone.getDefault()}"/>
                     </h:outputText>
                 </td>
             </tr>
@@ -105,7 +105,7 @@
                 <th>End Date</th>
                 <td>
                     <h:outputText value="#{pi.end}">
-                        <f:convertDateTime type="both"/>
+                        <f:convertDateTime type="both" timeZone="#{java.util.TimeZone.getDefault()}"/>
                     </h:outputText>
                 </td>
             </tr>




More information about the jbpm-commits mailing list