[jboss-cvs] jboss-seam/examples/wiki/view ...

Christian Bauer christian at hibernate.org
Thu Apr 26 11:11:51 EDT 2007


  User: cbauer  
  Date: 07/04/26 11:11:51

  Modified:    examples/wiki/view       fileEdit.xhtml dirDisplay.xhtml
                        userList.xhtml dirEdit.xhtml docEdit.xhtml
                        docHistory.xhtml
  Log:
  New blog features: recent entries, index of all entries
  
  Revision  Changes    Path
  1.14      +1 -1      jboss-seam/examples/wiki/view/fileEdit.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: fileEdit.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/fileEdit.xhtml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- fileEdit.xhtml	26 Apr 2007 05:29:16 -0000	1.13
  +++ fileEdit.xhtml	26 Apr 2007 15:11:50 -0000	1.14
  @@ -61,7 +61,7 @@
                       <div class="label">Created On:</div>
                       <div class="output">
                           <h:outputText value="#{fileHome.instance.createdOn}">
  -                            <f:convertDateTime type="both"/>
  +                            <f:convertDateTime type="both" timeZone="#{wikiPreferences.timeZone}"/>
                           </h:outputText>
                           (#{fileHome.instance.createdBy.username})
                           <h:outputLink id="selectCreator" rendered="#{s:hasPermission('User', 'isAdmin', currentUser)}"
  
  
  
  1.17      +1 -1      jboss-seam/examples/wiki/view/dirDisplay.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: dirDisplay.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/dirDisplay.xhtml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -b -r1.16 -r1.17
  --- dirDisplay.xhtml	26 Apr 2007 05:29:16 -0000	1.16
  +++ dirDisplay.xhtml	26 Apr 2007 15:11:51 -0000	1.17
  @@ -174,7 +174,7 @@
                   Last Modified On
               </f:facet>
               <h:outputText value="#{node.lastModifiedOn}">
  -                <f:convertDateTime type="both"/>
  +                <f:convertDateTime type="both" timeZone="#{wikiPreferences.timeZone}"/>
               </h:outputText>
               (#{node.lastModifiedBy.username})
           </h:column>
  
  
  
  1.15      +1 -1      jboss-seam/examples/wiki/view/userList.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: userList.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/userList.xhtml,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -b -r1.14 -r1.15
  --- userList.xhtml	22 Apr 2007 19:19:29 -0000	1.14
  +++ userList.xhtml	26 Apr 2007 15:11:51 -0000	1.15
  @@ -204,7 +204,7 @@
                       </h:commandLink>
                   </f:facet>
                   <h:outputText value="#{u.createdOn}">
  -                    <f:convertDateTime type="both"/>
  +                    <f:convertDateTime type="both" timeZone="#{wikiPreferences.timeZone}"/>
                   </h:outputText>
               </h:column>
   
  
  
  
  1.20      +1 -1      jboss-seam/examples/wiki/view/dirEdit.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: dirEdit.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/dirEdit.xhtml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -b -r1.19 -r1.20
  --- dirEdit.xhtml	22 Apr 2007 10:15:32 -0000	1.19
  +++ dirEdit.xhtml	26 Apr 2007 15:11:51 -0000	1.20
  @@ -64,7 +64,7 @@
               <div class="label">Created On:</div>
               <div class="output">
                   <h:outputText value="#{directoryHome.instance.createdOn}">
  -                    <f:convertDateTime type="both"/>
  +                    <f:convertDateTime type="both" timeZone="#{wikiPreferences.timeZone}"/>
                   </h:outputText>
                   (#{directoryHome.instance.createdBy.username})
                   <h:outputLink id="selectCreator" rendered="#{s:hasPermission('User', 'isAdmin', currentUser)}"
  
  
  
  1.27      +1 -1      jboss-seam/examples/wiki/view/docEdit.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: docEdit.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/docEdit.xhtml,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -b -r1.26 -r1.27
  --- docEdit.xhtml	21 Apr 2007 19:58:01 -0000	1.26
  +++ docEdit.xhtml	26 Apr 2007 15:11:51 -0000	1.27
  @@ -72,7 +72,7 @@
                       <div class="label">Created On:</div>
                       <div class="output">
                           <h:outputText value="#{documentHome.instance.createdOn}">
  -                            <f:convertDateTime type="both"/>
  +                            <f:convertDateTime type="both" timeZone="#{wikiPreferences.timeZone}"/>
                           </h:outputText>
                           (#{documentHome.instance.createdBy.username})
                           <h:outputLink id="selectCreator" rendered="#{s:hasPermission('User', 'isAdmin', currentUser)}"
  
  
  
  1.7       +3 -3      jboss-seam/examples/wiki/view/docHistory.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: docHistory.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/view/docHistory.xhtml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- docHistory.xhtml	20 Apr 2007 09:10:12 -0000	1.6
  +++ docHistory.xhtml	26 Apr 2007 15:11:51 -0000	1.7
  @@ -59,7 +59,7 @@
               <div class="label">Created On:</div>
               <div class="output">
                   <h:outputText value="#{currentNode.createdOn}">
  -                    <f:convertDateTime type="both"/>
  +                    <f:convertDateTime type="both" timeZone="#{wikiPreferences.timeZone}"/>
                   </h:outputText>
                   (#{currentNode.createdBy.username})
               </div>
  @@ -69,7 +69,7 @@
               <div class="label">Last Modified On:</div>
               <div class="output">
                   <h:outputText value="#{currentNode.lastModifiedOn}">
  -                    <f:convertDateTime type="both"/>
  +                    <f:convertDateTime type="both" timeZone="#{wikiPreferences.timeZone}"/>
                   </h:outputText>
                   (#{currentNode.lastModifiedBy.username})
               </div>
  @@ -97,7 +97,7 @@
                       <h:column>
                           <f:facet name="header">Last Modified</f:facet>
                           <h:outputText value="#{hnode.lastModifiedOn}">
  -                            <f:convertDateTime type="both"/>
  +                            <f:convertDateTime type="both" timeZone="#{wikiPreferences.timeZone}"/>
                           </h:outputText>
                           (#{hnode.lastModifiedByUsername})
                       </h:column>
  
  
  



More information about the jboss-cvs-commits mailing list